| Author |
Router hacking |
silvercats
Member

Posts: 73
Location: Sri Lanka
Joined: 18.04.10 Rank: Active User Warn Level: 30
|
|
there is a wireless USR9110 router i want to hack.i have tried the default passwords on it but no use.it prompts only for the password,does anyone know to how to brute force it or crack it anyway?
NOTHING IS IMPOSSIBLE TO A WILLING HEART
MEEOW... |
|
| Author |
RE: Router hacking |
techb
Member

Posts: 384
Location:
Joined: 15.02.09 Rank: Hacker Level 2 |
|
|
#Python 2.6.x
#Also router passwords are a numbers 0-9, and have no repeats.
import itertools
from SendKeys import SendKeys
entrys = raw_input("Characters to try: ")
poss = []
perm = itertools.permutations(entrys)
for a in perm:
s = ""
for t in a:
s += t
poss.append(s)
for a in poss:
SendKeys(a)
I've brute forced routers in my head before. Really I started at 1 and counted three numbers ahead, then down one; the the same thing, but with a different start number each time. When I got to 4 I got it right.
This is a true story.
I've done this twice with Verison routers.
|
|
| Author |
RE: Router hacking |
silvercats
Member

Posts: 73
Location: Sri Lanka
Joined: 18.04.10 Rank: Active User Warn Level: 30
|
|
i ran the scblockedript and got this error
http://i751.photobucket.com/albums/xx152/harithacats/2010-04-24095319.jpg
sorry i'm new to python too
EDIT: Changed the img tags to url tags. Was stretching the layout and it was annoying me. -ynori
NOTHING IS IMPOSSIBLE TO A WILLING HEART
MEEOW...
Edited by ynori7 on 24-04-10 06:08 |
|
| Author |
RE: Router hacking |
ynori7
Future Emperor of Earth

Posts: 1481
Location: #valhalla
Joined: 08.10.07 Rank: Diabolical |
|
Looks like it needs to be downloaded and installed, I don't have SendKeys either. Info about it can be found here: http://www.rutherfurd.net/python/sendkeys/. It looks like it can be downloaded from the links at the bottom of that page.
|
|
| Author |
RE: Router hacking |
silvercats
Member

Posts: 73
Location: Sri Lanka
Joined: 18.04.10 Rank: Active User Warn Level: 30
|
|
ynori,thanks that solved the problem
and "techB" ,the scblockedript is cool.but it just keeping typing characters,it don't enter them.i think the scblockedript has to be changed ,so it will not just keep printing,so it will enter each of them too 
(sorry for my English)
NOTHING IS IMPOSSIBLE TO A WILLING HEART
MEEOW... |
|
| Author |
RE: Router hacking |
ynori7
Future Emperor of Earth

Posts: 1481
Location: #valhalla
Joined: 08.10.07 Rank: Diabolical |
|
I think you need to make the password entry screen your active window once you start running the program. Read the info on that link I sent; it explains how SendKeys works.
|
|
| Author |
RE: Router hacking |
techb
Member

Posts: 384
Location:
Joined: 15.02.09 Rank: Hacker Level 2 |
|
You do need to download sendkeys.
That was also a starter scblockedript. You will need to tailor it to your needs.
|
|
| Author |
RE: Router hacking |
silvercats
Member

Posts: 73
Location: Sri Lanka
Joined: 18.04.10 Rank: Active User Warn Level: 30
|
|
i ran it on the active window.it only prints all the charters to that window.
Ex:-input keys for brute force are "abc". it prints "abcacbbacbcacabcba.
but it is supposed to do abc[enter]cab[enter]etc.... like that.i don't know how to edit the code to do so,i'm a noob.so techb ,can you do that please?
NOTHING IS IMPOSSIBLE TO A WILLING HEART
MEEOW...
Edited by silvercats on 24-04-10 06:28 |
|
| Author |
RE: Router hacking |
techb
Member

Posts: 384
Location:
Joined: 15.02.09 Rank: Hacker Level 2 |
|
Sorry, but i got the ball rolling, its up to you to figure out the rest.
hint: time module, read sendkeys docs found on there page.
|
|
| Author |
RE: Router hacking |
silvercats
Member

Posts: 73
Location: Sri Lanka
Joined: 18.04.10 Rank: Active User Warn Level: 30
|
|
ok ,i found out how to do it. thank you ynori7 for the Link and techb for the scblockedript
NOTHING IS IMPOSSIBLE TO A WILLING HEART
MEEOW... |
|