![]() |
generate random characters/numbers??
Who knows a software that can generate random characters/numbers?
Like i specify the length and it will generate them line by line. |
|
google found this one that might work out for you..
http://www.winguides.com/security/password.php |
any other ones?
|
Sure, if ya need help email me [email protected].
#!/usr/bin/perl @chars = ("a","b","c","d","e","0","1"); $count = 100; $length = 10; for ($z=0;$z<$count;$z++) { $x = ""; for ($i=0;$i<$length;$i++) { $x .= $chars[int(rand(@chars))]; } open(x,">>x.txt"); print x $x."\n"; close(x); } just upload to your server and run. $count is number of strings $length is string length. will be saved to a file named x.txt. |
| All times are GMT -7. The time now is 01:06 AM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123