OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
twisted
/
cred
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
189 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📁
__pycache__
-
03/31/2022 06:22:39 AM
rwxr-xr-x
📄
_digest.py
4.02 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
checkers.py
9 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
credentials.py
15.84 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
error.py
1.01 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
portal.py
5.28 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
strcred.py
8.19 KB
09/08/2017 10:38:36 AM
rw-r--r--
📁
test
-
03/31/2022 06:22:38 AM
rwxr-xr-x
Editing: error.py
Close
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Cred errors. """ from __future__ import division, absolute_import class Unauthorized(Exception): """Standard unauthorized error.""" class LoginFailed(Exception): """ The user's request to log in failed for some reason. """ class UnauthorizedLogin(LoginFailed, Unauthorized): """The user was not authorized to log in. """ class UnhandledCredentials(LoginFailed): """A type of credentials were passed in with no knowledge of how to check them. This is a server configuration error - it means that a protocol was connected to a Portal without a CredentialChecker that can check all of its potential authentication strategies. """ class LoginDenied(LoginFailed): """ The realm rejected this login for some reason. Examples of reasons this might be raised include an avatar logging in too frequently, a quota having been fully used, or the overall server load being too high. """