Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
python3 /
dist-packages /
debian /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
_deb822_repro
[ DIR ]
drwxr-xr-x
__init__.py
1012
B
-rw-r--r--
_util.py
13.16
KB
-rw-r--r--
_version.py
62
B
-rw-r--r--
arfile.py
13.42
KB
-rw-r--r--
changelog.py
37.95
KB
-rw-r--r--
copyright.py
24.2
KB
-rw-r--r--
deb822.py
99.45
KB
-rw-r--r--
debfile.py
15.58
KB
-rw-r--r--
debian_support.py
26.76
KB
-rw-r--r--
debtags.py
18.58
KB
-rw-r--r--
deprecation.py
1.7
KB
-rw-r--r--
py.typed
0
B
-rw-r--r--
watch.py
9.27
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.py
""" Tools for working with Debian-related file formats """ __version__ = "" try: # pylint: disable=no-member import debian._version __version__ = debian._version.__version__ except ImportError: try: # Try to extract the version from the package changelog and # determine whether it is a post-release or pre-release version. import os.path import debian.changelog changelog_filename = os.path.join( os.path.dirname(__file__), '..', '..', 'debian', 'changelog') with open(changelog_filename, 'rb') as fh: c = debian.changelog.Changelog(fh) version = str(c.version) mark = "~" if c.distributions == 'UNRELEASED' else "+" except: # pylint: disable=bare-except # Fake a version string in desperation version = '0.0.0' mark = '-' import datetime timestamp = datetime.datetime.utcnow().strftime("%Y%m%d") __version__ = "%s%sgit%s" % (version, mark, timestamp)
Close