Questions tagged [telnetlib]

The telnetlib module provides a Telnet class that implements the Telnet protocol under Python programming language.

The telnetlib module provides a Telnet class that implements the Telnet protocol under Python programming language.

See RFC 854 for details about the Telnet protocol.

In addition, telnetlib provides symbolic constants for the protocol characters (see below), and for the telnet options. The symbolic names of the telnet options follow the definitions in arpa/telnet.h, with the leading TELOPT_ removed. For symbolic names of options which are traditionally not included in arpa/telnet.h, see the module source itself.

Read more about telnetlib at python docs..

318 questions
-2
votes
1 answer

My telnet program in python is too slow connecting with ip/port

this is a security test in Python. Using telnet to connect to a public IP/Port but my program runs so slow it won't complete. I even set timeout to 1 second. How can I speed it up? This is my code: import telnetlib # long list of IPs ips =…
user1047260
  • 91
  • 1
  • 11
-2
votes
1 answer

Telnet library in C/ C++ Linux that can login telnet server

Any one aware of a telnet library written in c or c++ (Linux) that I can use to login with password to telnet server? I got this one, but this is using boost, i I don't want to use…
iDebD_gh
  • 364
  • 5
  • 18
1 2 3
21
22