Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python-paramiko-doc | Distribution: Fedora Project |
Version: 2.12.0 | Vendor: Fedora Project |
Release: 3.el9 | Build date: Tue Oct 1 16:56:39 2024 |
Group: Unspecified | Build host: buildvm-ppc64le-30.iad2.fedoraproject.org |
Size: 816574 | Source RPM: python-paramiko-2.12.0-3.el9.src.rpm |
Packager: Fedora Project | |
Url: https://github.com/paramiko/paramiko | |
Summary: Docs and demo for SSH2 protocol library for python |
Paramiko (a combination of the Esperanto words for "paranoid" and "friend") is a module for python 2.3 or greater that implements the SSH2 protocol for secure (encrypted and authenticated) connections to remote machines. Unlike SSL (aka TLS), the SSH2 protocol does not require hierarchical certificates signed by a powerful central authority. You may know SSH2 as the protocol that replaced telnet and rsh for secure access to remote shells, but the protocol also includes the ability to open arbitrary channels to remote services across an encrypted tunnel (this is how sftp works, for example). This is the documentation and demos.
LGPL-2.1-or-later
* Thu Sep 19 2024 Paul Howarth <paul@city-fan.org> - 2.12.0-3 - Add support for AES-GCM ciphers (rhbz#2311864) - Remove cache Sphinx build folder ".doctrees" * Fri Dec 29 2023 Paul Howarth <paul@city-fan.org> - 2.12.0-2 - Address CVE 2023-48795 (a.k.a. the "Terrapin Attack", a vulnerability found in the SSH protocol re: treatment of packet sequence numbers) as follows: - The vulnerability only impacts encrypt-then-MAC digest algorithms in tandem with CBC ciphers, and ChaCha20-poly1305; of these, Paramiko currently only implements ``hmac-sha2-(256|512)-etm`` in tandem with 'AES-CBC' - As the fix for the vulnerability requires both ends of the connection to cooperate, the below changes will only take effect when the remote end is OpenSSH ≥ 9.6 (or equivalent, such as Paramiko in server mode, as of this patch version) and configured to use the new "strict kex" mode - Paramiko will always attempt to use "strict kex" mode if offered by the server, unless you override this by specifying 'strict_kex=False' in 'Transport.__init__' - Paramiko will now raise an 'SSHException' subclass ('MessageOrderError') when protocol messages are received in unexpected order; this includes situations like receiving 'MSG_DEBUG' or 'MSG_IGNORE' during initial key exchange, which are no longer allowed during strict mode - Key (re)negotiation, i.e. 'MSG_NEWKEYS', whenever it is encountered, now resets packet sequence numbers (this should be invisible to users during normal operation, only causing exceptions if the exploit is encountered, which will usually result in, again, 'MessageOrderError') - Sequence number rollover will now raise 'SSHException' if it occurs during initial key exchange (regardless of strict mode status) - Tweak 'ext-info-(c|s)' detection during KEXINIT protocol phase; the original implementation made assumptions based on an OpenSSH implementation detail - 'Transport' grew a new 'packetizer_class' kwarg for overriding the packet-handler class used internally; this is mostly for testing, but advanced users may find this useful when doing deep hacks - A handful of lower-level classes (notably 'paramiko.message.Message' and 'paramiko.pkey.PKey') previously returned 'bytes' objects from their implementation of '__str__', even under Python 3, and there was never any '__bytes__' method; these issues have been fixed by renaming '__str__' to '__bytes__' and relying on Python's default "stringification returns the output of '__repr__'" behavior re: any real attempts to 'str()' such objects * Sun Nov 06 2022 Paul Howarth <paul@city-fan.org> - 2.12.0-1 - Update to 2.12.0 (rhbz#2140281) - Add a 'transport_factory' kwarg to 'SSHClient.connect' for advanced users to gain more control over early Transport setup and manipulation (GH#2054, GH#2125) - Update '~paramiko.client.SSHClient' so it explicitly closes its wrapped socket object upon encountering socket errors at connection time; this should help somewhat with certain classes of memory leaks, resource warnings, and/or errors (though we hasten to remind everyone that Client and Transport have their own '.close()' methods for use in non-error situations!) (GH#1822) - Raise '~paramiko.ssh_exception.SSHException' explicitly when blank private key data is loaded, instead of the natural result of 'IndexError'; this should help more bits of Paramiko or Paramiko-adjacent codebases to correctly handle this class of error (GH#1599, GH#1637) - Use SPDX-format license tag
/usr/share/doc/python-paramiko-doc /usr/share/doc/python-paramiko-doc/demos /usr/share/doc/python-paramiko-doc/demos/demo.py /usr/share/doc/python-paramiko-doc/demos/demo_keygen.py /usr/share/doc/python-paramiko-doc/demos/demo_server.py /usr/share/doc/python-paramiko-doc/demos/demo_sftp.py /usr/share/doc/python-paramiko-doc/demos/demo_simple.py /usr/share/doc/python-paramiko-doc/demos/forward.py /usr/share/doc/python-paramiko-doc/demos/interactive.py /usr/share/doc/python-paramiko-doc/demos/rforward.py /usr/share/doc/python-paramiko-doc/demos/test_rsa.key /usr/share/doc/python-paramiko-doc/demos/user_rsa_key /usr/share/doc/python-paramiko-doc/demos/user_rsa_key.pub /usr/share/doc/python-paramiko-doc/html /usr/share/doc/python-paramiko-doc/html/_sources /usr/share/doc/python-paramiko-doc/html/_sources/api /usr/share/doc/python-paramiko-doc/html/_sources/api/agent.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/buffered_pipe.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/channel.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/client.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/config.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/file.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/hostkeys.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/kex_gss.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/keys.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/message.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/packet.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/pipe.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/proxy.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/server.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/sftp.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/ssh_exception.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/ssh_gss.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/api/transport.rst.txt /usr/share/doc/python-paramiko-doc/html/_sources/index.rst.txt /usr/share/doc/python-paramiko-doc/html/_static /usr/share/doc/python-paramiko-doc/html/_static/alabaster.css /usr/share/doc/python-paramiko-doc/html/_static/basic.css /usr/share/doc/python-paramiko-doc/html/_static/custom.css /usr/share/doc/python-paramiko-doc/html/_static/doctools.js /usr/share/doc/python-paramiko-doc/html/_static/documentation_options.js /usr/share/doc/python-paramiko-doc/html/_static/file.png /usr/share/doc/python-paramiko-doc/html/_static/jquery-3.5.1.js /usr/share/doc/python-paramiko-doc/html/_static/jquery.js /usr/share/doc/python-paramiko-doc/html/_static/language_data.js /usr/share/doc/python-paramiko-doc/html/_static/minus.png /usr/share/doc/python-paramiko-doc/html/_static/plus.png /usr/share/doc/python-paramiko-doc/html/_static/pygments.css /usr/share/doc/python-paramiko-doc/html/_static/searchtools.js /usr/share/doc/python-paramiko-doc/html/_static/underscore-1.3.1.js /usr/share/doc/python-paramiko-doc/html/_static/underscore.js /usr/share/doc/python-paramiko-doc/html/api /usr/share/doc/python-paramiko-doc/html/api/agent.html /usr/share/doc/python-paramiko-doc/html/api/buffered_pipe.html /usr/share/doc/python-paramiko-doc/html/api/channel.html /usr/share/doc/python-paramiko-doc/html/api/client.html /usr/share/doc/python-paramiko-doc/html/api/config.html /usr/share/doc/python-paramiko-doc/html/api/file.html /usr/share/doc/python-paramiko-doc/html/api/hostkeys.html /usr/share/doc/python-paramiko-doc/html/api/kex_gss.html /usr/share/doc/python-paramiko-doc/html/api/keys.html /usr/share/doc/python-paramiko-doc/html/api/message.html /usr/share/doc/python-paramiko-doc/html/api/packet.html /usr/share/doc/python-paramiko-doc/html/api/pipe.html /usr/share/doc/python-paramiko-doc/html/api/proxy.html /usr/share/doc/python-paramiko-doc/html/api/server.html /usr/share/doc/python-paramiko-doc/html/api/sftp.html /usr/share/doc/python-paramiko-doc/html/api/ssh_exception.html /usr/share/doc/python-paramiko-doc/html/api/ssh_gss.html /usr/share/doc/python-paramiko-doc/html/api/transport.html /usr/share/doc/python-paramiko-doc/html/genindex.html /usr/share/doc/python-paramiko-doc/html/index.html /usr/share/doc/python-paramiko-doc/html/objects.inv /usr/share/doc/python-paramiko-doc/html/py-modindex.html /usr/share/doc/python-paramiko-doc/html/search.html /usr/share/doc/python-paramiko-doc/html/searchindex.js
Generated by rpm2html 1.8.1
Fabrice Bellet, Fri Nov 15 07:51:05 2024