/usr/lib/python3/dist-packages/twisted/conch
NameSizeModeActions
client/-0755rm
insults/-0755rm
openssh_compat/-0755rm
scripts/-0755rm
ssh/-0755rm
test/-0755rm
ui/-0755rm
__pycache__/-0755rm
avatar.py16410644editdlrm
checkers.py194220644editdlrm
endpoints.py299610644editdlrm
error.py26590644editdlrm
interfaces.py149180644editdlrm
ls.py26930644editdlrm
manhole.py118440644editdlrm
manhole_ssh.py44270644editdlrm
manhole_tap.py54840644editdlrm
mixin.py13730644editdlrm
recvline.py191630644editdlrm
stdio.py27730644editdlrm
tap.py31900644editdlrm
telnet.py380540644editdlrm
ttymodes.py21950644editdlrm
unix.py165500644editdlrm
__init__.py1980644editdlrm
Edit: /usr/lib/python3/dist-packages/twisted/conch/error.py (2659B)
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ An error to represent bad things happening in Conch. Maintainer: Paul Swartz """ from twisted.cred.error import UnauthorizedLogin class ConchError(Exception): def __init__(self, value, data=None): Exception.__init__(self, value, data) self.value = value self.data = data class NotEnoughAuthentication(Exception): """ This is thrown if the authentication is valid, but is not enough to successfully verify the user. i.e. don't retry this type of authentication, try another one. """ class ValidPublicKey(UnauthorizedLogin): """ Raised by public key checkers when they receive public key credentials that don't contain a signature at all, but are valid in every other way. (e.g. the public key matches one in the user's authorized_keys file). Protocol code (eg L{SSHUserAuthServer}) which attempts to log in using L{ISSHPrivateKey} credentials should be prepared to handle a failure of this type by telling the user to re-authenticate using the same key and to include a signature with the new attempt. See U{http://www.ietf.org/rfc/rfc4252.txt} section 7 for more details. """ class IgnoreAuthentication(Exception): """ This is thrown to let the UserAuthServer know it doesn't need to handle the authentication anymore. """ class MissingKeyStoreError(Exception): """ Raised if an SSHAgentServer starts receiving data without its factory providing a keys dict on which to read/write key data. """ class UserRejectedKey(Exception): """ The user interactively rejected a key. """ class InvalidEntry(Exception): """ An entry in a known_hosts file could not be interpreted as a valid entry. """ class HostKeyChanged(Exception): """ The host key of a remote host has changed. @ivar offendingEntry: The entry which contains the persistent host key that disagrees with the given host key. @type offendingEntry: L{twisted.conch.interfaces.IKnownHostEntry} @ivar path: a reference to the known_hosts file that the offending entry was loaded from @type path: L{twisted.python.filepath.FilePath} @ivar lineno: The line number of the offending entry in the given path. @type lineno: L{int} """ def __init__(self, offendingEntry, path, lineno): Exception.__init__(self) self.offendingEntry = offendingEntry self.path = path self.lineno = lineno