Skip to content

Instantly share code, notes, and snippets.

@ScullWM
Created November 30, 2012 15:18
Show Gist options
  • Save ScullWM/4176355 to your computer and use it in GitHub Desktop.
Save ScullWM/4176355 to your computer and use it in GitHub Desktop.
Just found this function... outch!
$Login='';
$Password='';
$Tab[100];
$j=0;
for ($i=48;$i<59;$i++){
$Tab[$j]=$i;
$j++;
}
for ($i=65;$i<91;$i++){
$Tab[$j]=$i;
$j++;
}
for ($i=97;$i<123;$i++){
$Tab[$j]=$i;
$j++;
}
for ($j=0;$j<7;$j++){
$i=rand(0,count($Tab)-1);
$Login.=chr($Tab[$i]);
$i=rand(0,count($Tab)-1);
$Password.=chr($Tab[$i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment