Character Encoder
- Submitted 09/30/2009
Encrypts a string by converting each character to it's ASCII key code. Supports two-way encryption - from a string to the numeric code, or from the numeric code back to the string. You can, for example, send the encrypted code to a friend and have them decode it with this script. Lots more uses, use your imagination!
ASCII Encryption
- Submitted 09/23/2009
A very simple encryption method that uses random values for each character. Interestingly, you can encrypt the same string as many times as you want and the result will always be different. Best used with short strings.
Three Tries
- Submitted 09/16/2009
If you want to 'protect' a site and don't have CGI access, you can try this JavaScript. Visitors get three tries to enter the correct password then they are refused entry. Note: The password is: password
Lots Of Info
- Submitted 09/16/2009
This script displays loads of information varying from your PC/Mac to the date.
XOR Encryption4
- Submitted 09/09/2009
This encryption method performs a bitwise XOR on each character of the data you wish to encrypt with a series of mathematically generated keys. This key is generated using a pseudo-random number generator using a hash of the password as the seed. The security of the encrypted data is dependent on the length and randomness of the key. Don't make this script the only form of security on your site as XOR encryption has its weaknesses.
Cryptic Scroller
- Submitted 09/02/2009
Most of us never fulfilled our dream of working for the FBI or the CIA. But, that doesn't mean we can't play like we did! This script displays a cryptic series of numbers in the status bar at the bottom of the browser and decrypts it one letter a time.
Text Encryption
- Submitted 08/27/2009
This JavaScript library provides encryption using simple, text-oriented method called column transposition. The idea is to write the plain text in block on the row-first bases. The text is then read column-first. The trick is in that the columns are not read from left to right, but in the order specified by the encryption key. Transliteration is also used.
IP Grabber
- Submitted 08/27/2009
Whether it's ethical or not, getting information on your site's visitors is just plain neat. As one of the most requested scripts, this little gem will allow you to get the user's IP address
! Neat!
Password Generator
- Submitted 08/19/2009
Generate a random password with the ability to include special characters and password restrictions.
Keycode Checker Tool Disable
- Submitted 07/25/2008
Use this function to disable certain keys. This essentially tells the page to cancel the last event, e.g. the pressing of that certain key.