Login or Sign Up
Logging in...
Remember me
Log in
Or
Sign Up
Forgot password or user name?
Log in with
Forums
Blogs
Articles
Groups
Galleries
Member List
Calendar
Home
Forum
Simply Business
Fucking Around & Business Discussion
generate random characters/numbers??
generate random characters/numbers??
Collapse
X
Collapse
Posts
Latest Activity
Photos
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
xxweekxx
Confirmed User
Join Date:
Oct 2002
Posts:
6780
Share
Post
#1
generate random characters/numbers??
08-25-2003, 11:57 AM
Who knows a software that can generate random characters/numbers?
Like i specify the length and it will generate them line by line.
_________________
I am the best
klik
Confirmed User
Join Date:
Nov 2001
Posts:
5092
Share
Post
#2
08-25-2003, 12:01 PM
new shit.. maybe you hadn't heard of it...
http://www.google.com
Comment
Post
Cancel
klik
Confirmed User
Join Date:
Nov 2001
Posts:
5092
Share
Post
#3
08-25-2003, 12:02 PM
google found this one that might work out for you..
http://www.winguides.com/security/password.php
Comment
Post
Cancel
xxweekxx
Confirmed User
Join Date:
Oct 2002
Posts:
6780
Share
Post
#4
08-25-2003, 12:05 PM
any other ones?
_________________
I am the best
Comment
Post
Cancel
FuqALot
Confirmed User
Join Date:
Dec 2001
Posts:
3817
Share
Post
#5
08-25-2003, 12: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.
Comment
Post
Cancel
Previous
template
Next
Working...
OK
OK
Cancel
😀
😂
🥰
😘
🤢
😎
😞
😡
👍
👎
☕
Comment