__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# -*- 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 zope.interface import implementer
from twisted.internet.interfaces import IAddress
from twisted.python import util
@implementer(IAddress)
class SSHTransportAddress(util.FancyEqMixin):
"""
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) -> str:
return f"SSHTransportAddress({self.address!r})"
def __hash__(self):
return hash(("SSH", self.address))
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| __init__.py | File | 182 B | 0644 |
|
| _kex.py | File | 8.37 KB | 0644 |
|
| address.py | File | 1.08 KB | 0644 |
|
| agent.py | File | 9.29 KB | 0644 |
|
| channel.py | File | 9.73 KB | 0644 |
|
| common.py | File | 1.91 KB | 0644 |
|
| connection.py | File | 24.96 KB | 0644 |
|
| factory.py | File | 4.13 KB | 0644 |
|
| filetransfer.py | File | 37.19 KB | 0644 |
|
| forwarding.py | File | 8.03 KB | 0644 |
|
| keys.py | File | 62.38 KB | 0644 |
|
| service.py | File | 1.52 KB | 0644 |
|
| session.py | File | 13.33 KB | 0644 |
|
| sexpy.py | File | 944 B | 0644 |
|
| transport.py | File | 80.03 KB | 0644 |
|
| userauth.py | File | 27.06 KB | 0644 |
|