Open GoogleCodeExporter opened 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
@miked63
How exactly would you do that? what's the command?
Original comment by dun...@gmail.com
on 27 Sep 2014 at 10:02
[deleted comment]
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
[deleted comment]
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
Original issue reported on code.google.com by
seb.lel...@gmail.com
on 28 Jun 2014 at 11:35