Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
keyring /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-10 17:07
backends
[ DIR ]
drwxr-xr-x
2025-04-10 17:07
tests
[ DIR ]
drwxr-xr-x
2025-04-10 17:07
util
[ DIR ]
drwxr-xr-x
2025-04-10 17:07
__init__.py
398
B
-rw-r--r--
2016-12-04 19:41
__main__.py
70
B
-rw-r--r--
2016-12-04 19:41
backend.py
5.25
KB
-rw-r--r--
2016-12-04 19:41
cli.py
3.29
KB
-rw-r--r--
2016-12-04 19:41
core.py
3.89
KB
-rw-r--r--
2016-12-04 19:41
credentials.py
1.32
KB
-rw-r--r--
2016-12-04 19:41
errors.py
1.15
KB
-rw-r--r--
2016-12-04 19:41
getpassbackend.py
312
B
-rw-r--r--
2016-12-04 19:41
http.py
1.23
KB
-rw-r--r--
2016-12-04 19:41
py27compat.py
1008
B
-rw-r--r--
2016-12-04 19:41
py33compat.py
660
B
-rw-r--r--
2016-12-04 19:41
Save
Rename
import sys class PasswordSetError(Exception): """Raised when the password can't be set. """ class PasswordDeleteError(Exception): """Raised when the password can't be deleted. """ class InitError(Exception): """Raised when the keyring could not be initialised """ class ExceptionRaisedContext(object): """ An exception-trapping context that indicates whether an exception was raised. """ def __init__(self, ExpectedException=Exception): self.ExpectedException = ExpectedException self.exc_info = None def __enter__(self): self.exc_info = object.__new__(ExceptionInfo) return self.exc_info def __exit__(self, *exc_info): self.exc_info.__init__(*exc_info) return self.exc_info.type and issubclass( self.exc_info.type, self.ExpectedException) class ExceptionInfo(object): def __init__(self, *info): if not info: info = sys.exc_info() self.type, self.value, self.traceback = info def __bool__(self): """ Return True if an exception occurred """ return bool(self.type) __nonzero__ = __bool__