An wrapper to add SSL/TLS support to telnetlib.
Project description
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()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ssltelnet-0.9.2.tar.gz
.
File metadata
- Download URL: ssltelnet-0.9.2.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b31d817d723d62c5d967008b72facfdc8e257dbd8f678f2e847eab94f02fc07 |
|
MD5 | 617bab122d4bfaf42b3407bcc52b5974 |
|
BLAKE2b-256 | a3adfab060c32ec8c3fac405331b72132b8c112e024e3700d6299a88e3046426 |
File details
Details for the file ssltelnet-0.9.2-py2.py3-none-any.whl
.
File metadata
- Download URL: ssltelnet-0.9.2-py2.py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 827567f22373033f91f7ed9d823cb878ffd5e56564fa874f4f03cbe843504593 |
|
MD5 | e8feb485f82b333654ee329e83c2ba36 |
|
BLAKE2b-256 | c38f1e7249e726affc1bf4bc098ab42f2b6131931f53b5e81e0af2dbdbc92fca |