Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib64 /
python2.7 /
Demo /
rpc /
Delete
Unzip
Name
Size
Permission
Date
Action
MANIFEST
361
B
-rw-r--r--
2013-05-12 08:02
README
1.23
KB
-rw-r--r--
2013-05-12 08:02
T.py
575
B
-rw-r--r--
2013-05-12 08:02
T.pyc
952
B
-rw-r--r--
2025-11-12 17:55
T.pyo
952
B
-rw-r--r--
2025-11-12 17:55
mountclient.py
6.48
KB
-rw-r--r--
2013-05-12 08:02
mountclient.pyc
5.58
KB
-rw-r--r--
2025-11-12 17:55
mountclient.pyo
5.58
KB
-rw-r--r--
2025-11-12 17:55
nfsclient.py
5.2
KB
-rw-r--r--
2013-05-12 08:02
nfsclient.pyc
6.74
KB
-rw-r--r--
2025-11-12 17:55
nfsclient.pyo
6.74
KB
-rw-r--r--
2025-11-12 17:55
rnusersclient.py
2.57
KB
-rw-r--r--
2013-05-12 08:02
rnusersclient.pyc
5.01
KB
-rw-r--r--
2025-11-12 17:55
rnusersclient.pyo
5.01
KB
-rw-r--r--
2025-11-12 17:55
rpc.py
26.98
KB
-rw-r--r--
2013-05-12 08:02
rpc.pyc
29.72
KB
-rw-r--r--
2025-11-12 17:55
rpc.pyo
29.72
KB
-rw-r--r--
2025-11-12 17:55
test
697
B
-rwxr-xr-x
2013-05-12 08:02
xdr.py
4.93
KB
-rw-r--r--
2013-05-12 08:02
xdr.pyc
7.71
KB
-rw-r--r--
2025-11-12 17:55
xdr.pyo
7.71
KB
-rw-r--r--
2025-11-12 17:55
Save
Rename
# 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)