Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.191.150.27
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 /
backends /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2024-02-16 18:48
macOS
[ DIR ]
drwxr-xr-x
2024-02-16 18:53
OS_X.py
222
B
-rw-r--r--
2022-01-02 00:29
SecretService.py
4.63
KB
-rw-r--r--
2022-01-02 00:29
Windows.py
5.68
KB
-rw-r--r--
2022-01-02 00:29
__init__.py
0
B
-rw-r--r--
2022-01-02 00:29
chainer.py
2.15
KB
-rw-r--r--
2022-01-02 00:29
fail.py
836
B
-rw-r--r--
2022-01-02 00:29
kwallet.py
5.71
KB
-rw-r--r--
2022-01-02 00:29
libsecret.py
5.8
KB
-rw-r--r--
2022-01-02 00:29
null.py
360
B
-rw-r--r--
2022-01-02 00:29
Save
Rename
from ..backend import KeyringBackend from ..errors import NoKeyringError class Keyring(KeyringBackend): """ Keyring that raises error on every operation. >>> kr = Keyring() >>> kr.get_password('svc', 'user') Traceback (most recent call last): ... keyring.errors.NoKeyringError: ...No recommended backend... """ priority = 0 def get_password(self, service, username, password=None): msg = ( "No recommended backend was available. Install a recommended 3rd " "party backend package; or, install the keyrings.alt package if " "you want to use the non-recommended backends. See " "https://pypi.org/project/keyring for details." ) raise NoKeyringError(msg) set_password = delete_password = get_password # type: ignore