Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
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-02 06:36
__init__.py
1.52
KB
-rw-r--r--
2021-10-17 00:53
algorithms.py
21.53
KB
-rw-r--r--
2026-03-27 02:28
api_jwk.py
2.87
KB
-rw-r--r--
2021-04-28 20:23
api_jws.py
8.78
KB
-rw-r--r--
2026-03-27 02:28
api_jwt.py
7.15
KB
-rw-r--r--
2021-10-16 21:23
exceptions.py
965
B
-rw-r--r--
2020-08-25 01:22
help.py
1.57
KB
-rw-r--r--
2020-12-22 01:55
jwks_client.py
1.87
KB
-rw-r--r--
2021-10-06 19:37
py.typed
0
B
-rw-r--r--
2020-12-20 09:01
utils.py
3.9
KB
-rw-r--r--
2026-03-27 02:28
Save
Rename
import json import platform import sys from . import __version__ as pyjwt_version try: import cryptography except ModuleNotFoundError: cryptography = None # type: ignore 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 OSError: platform_info = {"system": "Unknown", "release": "Unknown"} implementation = platform.python_implementation() if implementation == "CPython": implementation_version = platform.python_version() elif implementation == "PyPy": implementation_version = "{}.{}.{}".format( 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()