GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   generate random characters/numbers?? (https://gfy.com/showthread.php?t=167912)

xxweekxx 08-25-2003 12:57 PM

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.

klik 08-25-2003 01:01 PM

new shit.. maybe you hadn't heard of it...

http://www.google.com

klik 08-25-2003 01:02 PM

google found this one that might work out for you..
http://www.winguides.com/security/password.php

xxweekxx 08-25-2003 01:05 PM

any other ones?

FuqALot 08-25-2003 01:07 PM

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