Password Generator
Platform: mIRC
Published Sep 11, 2009
Updated Sep 12, 2009
Just a pretty cool password generator I made to generate passwords for my site after it got bruteforced.
It generates 9 character, alpha-numerical, upper and lower case passwords.
Just something I thought others would appreciate.
Here is a list of passwords generated with it.
93q996U45
K64j14sek
3G2QX15Q7
9194221S4
TYM8lfA67
j13c4l4MB
y22iMg7t7
I23EeaS33
577729391
Rh42LomYr
467359628
f4MLZJ858
8291Gr6RP
42S6H44r7
966i49T4y
42hZ4lR81
2ij633W39
561hpSJ14
Much better than my first one which used about 50 if statements and was all lower case. Or my second one which only allowed for a set amount of characters.
Enjoy.
Redid it so you can /passgen [x] where x = the amount of characters you want in the password. If x is not supplied, the default of 9 is used.
alias passgen {
var %chars 1
if (!$1) {
var %amount = 9
}
if ($1) {
var %amount = $1
}
while (%chars <= %amount) {
var %watsit = $rand(1,2)
if (%watsit == 1) {
var %pass %pass $rand(1,9)
}
if (%watsit == 2) {
var %upordown = $rand(1,2)
if (%upordown == 1) {
var %pass %pass $rand(a,z)
}
if (%upordown == 2) {
var %pass %pass $upper($rand(a,z))
}
}
inc %chars
}
echo -a 14[ $+ $asctime(HH:nn) $+ ]7 $remove(%pass,$chr(32))
}