forked from insanid/NetgearTelnetEnable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
50 lines (36 loc) · 1.69 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
NetgearTelnetEnable
Modified to work with newer Netgear routers R7000 R7500 by insanid
Windows telnetenable-win.c and binary by LuKePicci
==================================================================
Based on https://github.com/davejagoda/NetgearTelnetEnable
For more information: http://wiki.openwrt.org/toh/netgear/telnet.console
Enables telnet access with newer Netgear routers R7000 and R7500
Should enable telnet on other Netgear routers that accept payload over UDP
Binaries:
Binaries are available for Linux x86-64 and Windows. They are located in the binaries section of this github repository:
https://github.com/insanid/NetgearTelnetEnable/tree/master/binaries/
Linux Users:
Download binary
chmod a+x telnetenable
Refer to usage instructions below.
Windows Users:
Download telnetenable.exe
Refer to usage instructions below.
Linux Usage:
./telnetenable <IP> <MAC> <Username> <Password>
Windows Usage:
telnetenable.exe <IP> <MAC> <Username> <Password>
IP - The IP of your Netgear device, usually 192.168.1.1
MAC - The mac address should be the MAC address of the LAN port on your Netgear device, WITHOUT the ":". e.g. "00:40:5E:21:14:4E" would be written as "00405E21144E".
For newer Netgear routers:
Username - 'admin'
Password = Use password you set in web interface
Linux Build Instructions:
git clone https://github.com/insanid/NetgearTelnetEnable.git
gcc -o telnetenable md5.c blowfish.c telnetenable.c
Windows Build Instructions:
Coming soon!
Comments from original README.md:
This code did not quite work for me on OS X, but it was OK on Debian:
http://www.seattlewireless.net/telnetenable.c
I've made changes so it works on OS X 10.7.4. I've also added some comments to clarify what was wrong.