|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
Confirmed User
Join Date: Oct 2002
Posts: 6,780
|
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. |
|
|
|
|
|
#2 |
|
Confirmed User
Industry Role:
Join Date: Nov 2001
Location: san diego
Posts: 5,092
|
|
|
|
|
|
|
#3 |
|
Confirmed User
Industry Role:
Join Date: Nov 2001
Location: san diego
Posts: 5,092
|
google found this one that might work out for you..
http://www.winguides.com/security/password.php |
|
|
|
|
|
#4 |
|
Confirmed User
Join Date: Oct 2002
Posts: 6,780
|
any other ones?
|
|
|
|
|
|
#5 |
|
Confirmed User
Join Date: Dec 2001
Location: Malibu
Posts: 3,817
|
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. |
|
|
|