Router hacking
#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.
i ran the script 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
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.
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?