generate random characters/numbers??

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • xxweekxx
    Confirmed User
    • Oct 2002
    • 6780

    #1

    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.
    _________________
    I am the best
  • klik
    Confirmed User
    • Nov 2001
    • 5092

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

    http://www.google.com

    Comment

    • klik
      Confirmed User
      • Nov 2001
      • 5092

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

      Comment

      • xxweekxx
        Confirmed User
        • Oct 2002
        • 6780

        #4
        any other ones?
        _________________
        I am the best

        Comment

        • FuqALot
          Confirmed User
          • Dec 2001
          • 3817

          #5
          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

          Working...