Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
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 /
jwt /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-04-01 06:16
__init__.py
1.57
KB
-rw-r--r--
2026-03-26 13:14
algorithms.py
29.1
KB
-rw-r--r--
2026-03-26 13:14
api_jwk.py
4.1
KB
-rw-r--r--
2026-03-26 13:14
api_jws.py
11.79
KB
-rw-r--r--
2026-03-26 13:14
api_jwt.py
11.55
KB
-rw-r--r--
2026-03-26 13:14
exceptions.py
1.02
KB
-rw-r--r--
2026-03-26 13:14
help.py
1.71
KB
-rw-r--r--
2026-03-26 13:14
jwk_set_cache.py
959
B
-rw-r--r--
2026-03-26 13:14
jwks_client.py
3.96
KB
-rw-r--r--
2026-03-26 13:14
py.typed
0
B
-rw-r--r--
2026-03-26 13:14
types.py
99
B
-rw-r--r--
2026-03-26 13:14
utils.py
3.81
KB
-rw-r--r--
2026-03-26 13:14
warnings.py
59
B
-rw-r--r--
2026-03-26 13:14
Save
Rename
import json import platform import sys from typing import Dict from . import __version__ as pyjwt_version try: import cryptography cryptography_version = cryptography.__version__ except ModuleNotFoundError: cryptography_version = "" def info() -> Dict[str, Dict[str, str]]: """ Generate information for a bug report. Based on the requests package help utility module. """ try: platform_info = { "system": platform.system(), "release": platform.release(), } except OSError: platform_info = {"system": "Unknown", "release": "Unknown"} implementation = platform.python_implementation() if implementation == "CPython": implementation_version = platform.python_version() elif implementation == "PyPy": pypy_version_info = sys.pypy_version_info # type: ignore[attr-defined] implementation_version = ( f"{pypy_version_info.major}." f"{pypy_version_info.minor}." f"{pypy_version_info.micro}" ) if pypy_version_info.releaselevel != "final": implementation_version = "".join( [implementation_version, pypy_version_info.releaselevel] ) else: implementation_version = "Unknown" return { "platform": platform_info, "implementation": { "name": implementation, "version": implementation_version, }, "cryptography": {"version": cryptography_version}, "pyjwt": {"version": pyjwt_version}, } def main() -> None: """Pretty-print the bug information as JSON.""" print(json.dumps(info(), sort_keys=True, indent=2)) if __name__ == "__main__": main()