Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
site-packages /
gssapi /
Delete
Unzip
Name
Size
Permission
Date
Action
raw
[ DIR ]
drwxr-xr-x
2022-07-26 09:09
tests
[ DIR ]
drwxr-xr-x
2022-07-26 09:09
__init__.py
1.02
KB
-rw-r--r--
2016-03-01 15:08
__init__.pyc
1.3
KB
-rw-r--r--
2017-08-03 14:54
__init__.pyo
1.3
KB
-rw-r--r--
2017-08-03 14:54
_utils.py
5.32
KB
-rw-r--r--
2016-03-01 15:08
_utils.pyc
6.45
KB
-rw-r--r--
2017-08-03 14:54
_utils.pyo
6.45
KB
-rw-r--r--
2017-08-03 14:54
creds.py
16.18
KB
-rw-r--r--
2016-03-01 15:08
creds.pyc
14.91
KB
-rw-r--r--
2017-08-03 14:54
creds.pyo
14.91
KB
-rw-r--r--
2017-08-03 14:54
exceptions.py
1.13
KB
-rw-r--r--
2016-03-01 15:08
exceptions.pyc
1.79
KB
-rw-r--r--
2017-08-03 14:54
exceptions.pyo
1.79
KB
-rw-r--r--
2017-08-03 14:54
names.py
12.72
KB
-rw-r--r--
2016-03-01 15:08
names.pyc
13.14
KB
-rw-r--r--
2017-08-03 14:54
names.pyo
13.14
KB
-rw-r--r--
2017-08-03 14:54
sec_contexts.py
18.65
KB
-rw-r--r--
2016-03-01 15:08
sec_contexts.pyc
17.46
KB
-rw-r--r--
2017-08-03 14:54
sec_contexts.pyo
17.46
KB
-rw-r--r--
2017-08-03 14:54
Save
Rename
from gssapi.raw.exceptions import * # noqa from gssapi.raw.misc import GSSError # noqa """High-Level API Errors This module includes several high-level exceptions, in addition to GSSError and exceptions from :mod:`gssapi.raw.exceptions`. """ # non-GSS exceptions class GeneralError(Exception): """A General High-Level API Error""" MAJOR_MESSAGE = "General error" FMT_STR = "{maj}: {min}." def __init__(self, minor_message, **kwargs): maj_str = self.MAJOR_MESSAGE.format(**kwargs) err_str = self.FMT_STR.format(maj=maj_str, min=minor_message) super(GeneralError, self).__init__(err_str) class UnknownUsageError(GeneralError): """An Error indicating an unknown usage type""" MAJOR_MESSAGE = "Unable to determine {obj} usage" class EncryptionNotUsed(GeneralError): """An Error indicating that encryption was requested, but not used""" MAJOR_MESSAGE = "Confidentiality was requested, but not used" def __init__(self, minor_message, unwrapped_message=None, **kwargs): super(EncryptionNotUsed, self).__init__(minor_message, **kwargs) self.unwrapped_message = unwrapped_message