OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
twisted
/
conch
/
ssh
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/31/2022 06:22:38 AM
rwxr-xr-x
📄
__init__.py
183 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📁
__pycache__
-
03/31/2022 06:22:39 AM
rwxr-xr-x
📄
_kex.py
7.49 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
address.py
1.13 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
agent.py
9.46 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
channel.py
9.62 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
common.py
2.12 KB
09/08/2017 10:38:35 AM
rw-r--r--
📄
connection.py
25.12 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
factory.py
3.73 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
filetransfer.py
33.53 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
forwarding.py
7.98 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
keys.py
52.35 KB
09/08/2017 10:38:35 AM
rw-r--r--
📄
service.py
1.42 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
session.py
10.95 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
sexpy.py
1.03 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
transport.py
70.94 KB
03/22/2022 11:03:56 AM
rw-r--r--
📄
userauth.py
26.7 KB
09/08/2017 10:38:36 AM
rw-r--r--
Editing: address.py
Close
# -*- test-case-name: twisted.conch.test.test_address -*- # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Address object for SSH network connections. Maintainer: Paul Swartz @since: 12.1 """ from __future__ import division, absolute_import from zope.interface import implementer from twisted.internet.interfaces import IAddress from twisted.python import util @implementer(IAddress) class SSHTransportAddress(util.FancyEqMixin, object): """ Object representing an SSH Transport endpoint. This is used to ensure that any code inspecting this address and attempting to construct a similar connection based upon it is not mislead into creating a transport which is not similar to the one it is indicating. @ivar address: An instance of an object which implements I{IAddress} to which this transport address is connected. """ compareAttributes = ('address',) def __init__(self, address): self.address = address def __repr__(self): return 'SSHTransportAddress(%r)' % (self.address,) def __hash__(self): return hash(('SSH', self.address))