|
StanleyHero YN-Captor is a website security PHP script designed to successfully authenticate a users presence when they access sensitive data. To submit Forms, or to enter private areas or to gain access to a websites controlled environment visitors will confirm their presence by typing a matching set of randomly selected LETTERS and NUMBERS. In order to submit a Form or to access certain areas a website visitor will be asked to authenticate a set of letters/numbers that will be randomly displayed within the requested Form. The YN-Captor script is presently configured with the following information: * The script will show a random set of 8 letters/numbers * ** The script will not repeat any of the 8 chosen letters/numbers ** *** The script will show a random background image behind the letters/numbers *** **** The script will show the letters/numbers box side-by-side with the Answer-box **** These 4 components may all be adapted and changed easily by the user of the YN-Captor script. NOTE: This script must be added to one of your pre-existing Forms using a single line of code. The script also includes a Tester.php page to verify your work; its source code can prove very useful. You may test the authenticity of this script by typing your guess above to validate the Form on this page. The above Form has only one purpose, to validate your Guess, there is no need to type any name, address, or phone. The randomly displayed letters/numbers will be reset with a fresh set upon every page request and/or upon every page reload. PURPOSE: to prevent automated registrations and unauthorized access by spambots, etc. The best advantage for using such a script on Forms which require people to input data so as to send information is to prevent the submission of Forms by programmers who send out all types of snooping scripts throughout the web to various multiple domains and websites which are automatically programmed to react to Forms by filling them in, even though there is nobody within eye-contact reading and filling the Forms out in person at the site. It will lessen the amount of junk submissions filled in by those annoying scripts. Form submissions and access control will require human authentication - the unwanted roaming scripts will be denied approval. |
|
********** OPTIONS FOR THE SCRIPT ********** OPTIONS FOR THE SCRIPT ********** OPTIONS FOR THE SCRIPT **********
QUANTITY OF LETTERS AND NUMBERS* The YN-Captor script is automatically set to show a random set of 8 letters/numbers, from a choice of 60 +. The quantity of letters/numbers to be shown to the visitor, from only 1 upto 25, may be chosen by the webmaster. Note: the higher the quantity the more typing the visitor will need to type inside your Form. See the top section within the YN-Captor_stanleyhero.php script to increase or decrease the quantity. REPETITION OF LETTERS AND NUMBERS ** The YN-Captor script is automatically set so the random choices of letters/numbers will NOT be repeated. Choice N will NOT allow letters/numbers to be repeated - Choice Y will ALLOW letters/numbers to be repeated within each set. See the top section within the YN-Captor_stanleyhero.php script to switch from CHOICE N to CHOICE Y for repetition. BACKGROUND STYLE - IMAGE OR COLOR *** The YN-Captor script is automatically set to show a random background image from a choice of 28. The script can use a random background image or a simple color for every set of letters/numbers displayed. See the top section within the YN-Captor_stanleyhero.php script to switch to a background image or a background color. DISPLAYING STYLE - CHOICE OF 3 METHODS **** The YN-Captor script is automatically set to show the Answer-box alongside the Display-box. The script can use 3 methods. 1) - Side-by-side. 2) - Answer-box on top. 3) - Answer-box below the Display-box. ********** OPTIONS FOR THE SCRIPT ********** OPTIONS FOR THE SCRIPT ********** OPTIONS FOR THE SCRIPT ********** |
| StanleyHero YN-Captor Script - Options Testing Section. |
|
***** HOW TO PERSONALIZE THE SCRIPT ***** HOW TO PERSONALIZE THE SCRIPT ***** There are only 3 steps needed to make this script function properly: Step #1: Configure the YN-Captor_stanleyhero.php script with 2 or more required items. Step #2: Add one single line of code within any desired webpage that contains your FORM. Step #3: Place some essential code into the webpage that receives all your Form information. Open the YN-Captor_stanleyhero.php script with a plain text editor. Fill in the required items at the top of the script, domain etc. YOURDOMAIN - FOLDER NAME Change appearance of Display-Box and Answer-Box, color, border, and the default settings for Quantity etc. Use either code #1 or #2 below to call the script within any webpage that contains your FORM. IMPORTANT: place the chosen line of code just before the final closing </FORM> tag at the bottom of your Form. If the </FORM> tag on your Form is not placed after the last needed </TABLE> tag you may need to move it. #1 CODE - Use the below line of code if the chosen place to put this code is NOT inside any <?php ?> tags on your Form page. <?php include("http://www.YOURDOMAIN.com/AAA20x24/YN-Captor_stanleyhero.php?captor=BIS") ?> #2 CODE - Use the below line of code if the chosen place to put this code is inside <?php ?> tags on your Form page. include('http://www.YOURDOMAIN.com/AAA20x24/YN-Captor_stanleyhero.php?captor=BIS'); |
|
***** BEGIN EXAMPLES ***** EXAMPLES ***** EXAMPLES ***** EXAMPLES ***** EXAMPLES BEGIN ***** You will end up with having either one of these examples on your webpage Form. Notice your pre-existing final closing </FORM> tag sits after the newly inserted YN-Captor script code: EXAMPLE #1 <?php include("http://www.YOURDOMAIN.com/AAA20x24/YN-Captor_stanleyhero.php?captor=BIS") ?> </form> EXAMPLE #2 include('http://www.YOURDOMAIN.com/AAA20x24/YN-Captor_stanleyhero.php?captor=BIS'); </form> NOTE - Display Style: The above 2 lines of code use the following ending at the end of the code --> captor=BIS the BI tells the script to use a background image, and the S tells the script to display both boxes side-by-side. To use a BACKGROUND IMAGE BEHIND the letters/numbers you can use 1 of 3 methods at the end of the code line: captor=BIS or captor=BIT or captor=BIB To use a BACKGROUND COLOR BEHIND the letters/numbers you can use 1 of 3 methods at the end of the code line: captor=CIS or captor=CIT or captor=CIB *boxes Side by Side* *Answer-Box on Top* *Answer-Box on Bottom* ***** END EXAMPLES ***** EXAMPLES ***** EXAMPLES ***** EXAMPLES ***** EXAMPLES END ***** |
|
FINALLY PLACE SOME CODE INTO THE WEBPAGE THAT RECEIVES ALL YOUR FORM INFORMATION THAT WAS FILLED IN. Find out where the visitors information is going to be sent by looking inside the called Form webpage, look for something that begins with <form action='http://www.YOURDOMAIN.com/PAGE.php' method='POST'> That is the RECEIVING-PAGE which now needs to be opened to insert our final bit of code. You may choose to use or not some of this next code, but some of it is ESSENTIAL. IMPORTANT: make sure any code you use next is placed between both of these tags, Example: <?php CODE CODE CODE CODE ?> // <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> \\ When done you may test the functionality of the script. Open the Tester.php page with a plain text editor. Fill in the required items at the top of the Tester.php page: YOURDOMAIN -- FOLDER NAME -- SCRIPT NAME -- TEST PAGE. Now upload the entire AAA20x24 folder to your root directory on your website. Open the Tester.php page with your favorite web browser, you should see right away the script in action. By changing the default configuration at the top of the YN-Captor_stanleyhero.php script the results should appear on the Tester.php page. Play with the configuration items to obtain what you want. Test the other pages where you inserted that one line of code within your own FORM pages also. When testing is complete you may delete the readme file and Tester.php from that uploaded folder. |
| Two versions of this script are available - both are very easily configurable. One is specifically written for users with very limited programming skills, only 2 items to set. The second is built with greater security, more coding, is much more flexible, with additional settings. It was our intention to give it freely, but security is a serious issue - the token price proves our sincerity and yours. |
|
StanleyHero YN-Captor Script - Default version of the script - only 2.00 The Default version of the script is perfect for everyone who has very limited programming knowledge. There are just two main items to set at the top of the script: YOURDOMAIN and FOLDERNAME. The default settings may also be easily changed, appearance of Display-Box and the Answer-Box, Quantity etc. This default version of the script will prove difficult to decipher, the output source code is random but modest. |
| This Default version of the StanleyHero YN-Captor Script may be obtained for only $ 2.00 |
|
StanleyHero YN-Captor Script - Robust version, more thoroughly secure - only 8.00 This more secure version of the script uses additional coding and also requires a bit more configuration. There are 4 main items to set at the top of the script: YOURDOMAIN, FOLDERNAME, ABSOLUTE-SERVER-PATH, NEWFOLDERNAME. The default settings may also be easily changed, appearance of Display-Box and the Answer-Box, Quantity etc. The output displayed to visitors is moderately based on random string prefixs' and suffixs'. It should be simple enough for anyone with PHP knowledge to personalize the code within the script. Yet even novice users can make use of this stronger version if they understand the term - ABSOLUTE-SERVER-PATH. This Robust version is extremely reliable and secure since the output source code will always be different. |
| This more thoroughly secure version of the StanleyHero YN-Captor Script may be obtained for only $ 8.00 |
|
|||
|
|
|||
![]() The award-winning Mozilla Firefox Web browser is enjoyed by tens of millions of people worldwide. Tell a Friend Advertising - Support Copyright © 2002-2008 Stanleyhero Supporting member of the Association of Shareware Professionals This site is powered by FASTwebserver.COM the lowest price for the level of service and the quality features that you will receive. Tell them StanleyHero sent you and they will waive the setup fee for your new account. (no setup fee) |