https://github.com/revarbat/ssltelnet
An SSL/TLS aware wrapper for the standard python telnetlib library.
https://github.com/revarbat/ssltelnet
python python-library ssl-support tls-support
Last synced: 2 months ago
JSON representation
An SSL/TLS aware wrapper for the standard python telnetlib library.
- Host: GitHub
- URL: https://github.com/revarbat/ssltelnet
- Owner: revarbat
- License: mit
- Created: 2016-08-11T03:38:17.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-29T02:17:00.000Z (over 9 years ago)
- Last Synced: 2026-01-02T21:18:29.727Z (5 months ago)
- Topics: python, python-library, ssl-support, tls-support
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
SslTelnet
=========
A wrapper for telnetlib.Telnet() that handles SSL/TLS, with optional
TELNET negotiated TLS. This can be used to connect to TELNETS and
SSLTELNET servers, as well as various MUD/MUCK/MUSH chat servers.
API
---
The API for SslTelnet is just like that for the standard python library
telnetlib, with the addition of a few arguments to the Telnet() initializer.
ssltelnet.SslTelnet()
Called just like telnetlib.Telnet(), with these extra optional arguments:
force_ssl
If True, force SSL negotiation as soon as connected. Defaults to True.
telnet_tls
If true, allow TELNET TLS negotiation after non-ssl connection. Defaults to True.
You can also pass args that ssl.wrap_socket() would expect.
If force_ssl is True, plaintext connections aren't allowed.
If force_ssl is False, and telnet_tls is True, the connection
will be plaintext until the server negotiates TLS, at which
time the connection will be secured.
If both are False, the connection will be plaintext.
Example
-------
::
import ssltelnet
s = ssltelnet.SslTelnet(force_ssl=False, host='foobar.com', port=23)
print(s.read_until(b'\n', 10))
s.close()