Password Generator
- Submitted 02/03/2010
Generate a random password with the ability to include special characters and password restrictions.
Cryptic Scroller
- Submitted 01/06/2010
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. Sweet!
IP Address Filter
- Submitted 12/16/2009
JavaScript can prevent visitors with certain IP addresses from visiting your site. Simply enter part of their IP address (the more you enter the greater the chance only the intended person will not be able to enter your site) and they will not be able to enter the site.
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.