Its plain html form and submit button.
I have php code thats generate all possible passwords
- Code: Select all
<?php
$symbs = "qwertyuiopasdfghjklzxcvbnm";
for($i1=0;$i1<strlen($symbs);$i1++){
$char1 = $symbs[$i1];
for($i2=0;$i2<strlen($symbs);$i2++){
$char2 = $symbs[$i2];
for($i3=0;$i3<strlen($symbs);$i3++){
$char3 = $symbs[$i3];
echo $char1.$char2.$char3." ";
}
}
}
How to make a script that will try each result automaticalli, no brute force, just php or javascript.
Thanks!






