Re: [VB6] Monsta. ~ Password Generator
Quote:
Originally Posted by
Moogly
I'm sures theres even password generators made outa html lol
I'm sure there's not ^^, HTML is mark-up, not coding ;)
Re: [VB6] Monsta. ~ Password Generator
That was gay.
PHP Code:
<?php
/**
* The letter l (lowercase L) and the number 1
* have been removed, as they can be mistaken
* for each other.
*/
function createRandomPassword() {
$chars = "abcdefghijkmnopqrstuvwxyz023456789";
srand((double)microtime()*1000000);
$i = 0;
$pass = '' ;
while ($i <= 7) {
$num = rand() % 33;
$tmp = substr($chars, $num, 1);
$pass = $pass . $tmp;
$i++;
}
return $pass;
}
// Usage
$password = createRandomPassword();
echo "Your random password is: $password";
?>
0.0 i found a random char creator in 5 sec on google
and its online :P
NERD
Re: [VB6] Monsta. ~ Password Generator
lol but he wana help people that ar people who cant make that whit a code
Re: [VB6] Monsta. ~ Password Generator
Quote:
Originally Posted by
Daevius
Not many people, but if you want to be safe...
Personally I use this:
http://www.pctools.com/guides/password/
To generate MySQL and cPanel password...always 16 or more characters with all characters enabled. Lets say there are 100 characters and I use length 16...that is 100^16 possibilities, which is 10 ^ 32. What if a PC can bruteforce 10 ^ 10 (10 billion) possibilities per second. That would take 'm 10 ^ 22 second...that is 3.25 ^ 14 years.
That's a good one, but I'm crap at HTML/PJP or whatever it is :P