fiddlerwoaroof / netgear-telnetenable

Automatically exported from code.google.com/p/netgear-telnetenable
0 stars 0 forks source link

R7000 is now incompatible with telnetenable #2

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Latest R7000 firmware has changed something in Telnetenabled deamon making 
"telnetenable" incompatible with it.

Original issue reported on code.google.com by seb.lel...@gmail.com on 28 Jun 2014 at 11:35

GoogleCodeExporter commented 9 years ago
Use UDP in telnetenable, and the user and password you setup, instead of TCP 
and Gearguy Geardog

Original comment by miked63...@gmail.com on 24 Aug 2014 at 8:34

GoogleCodeExporter commented 9 years ago
@miked63

How exactly would you do that? what's the command?

Original comment by dun...@gmail.com on 27 Sep 2014 at 10:02

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Hello, 
It is easy as mike explained :

Rewrite SendPayload as this :
def SendPayload(ip, payload):
  for res in socket.getaddrinfo(ip, TELNET_PORT, socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_IP):
    af, socktype, proto, canonname, sa = res
    try:
      s = socket.socket(af, socktype, proto)
    except socket.error, msg:
      s = None
      continue

Original comment by seb.lel...@gmail.com on 28 Sep 2014 at 7:41

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Thanks, worked great!

notes here:
http://www.dd-wrt.com/phpBB2/viewtopic.php?p=920052

Original comment by dun...@gmail.com on 30 Sep 2014 at 11:02