Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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
/
usr /
libexec /
perf-core /
scripts /
python /
[ HOME SHELL ]
Name
Size
Permission
Action
Perf-Trace-Util
[ DIR ]
drwxr-xr-x
bin
[ DIR ]
drwxr-xr-x
check-perf-trace.py
2.48
KB
-rw-r--r--
check-perf-trace.pyc
2.96
KB
-rw-r--r--
check-perf-trace.pyo
2.96
KB
-rw-r--r--
event_analyzing_sample.py
7.22
KB
-rw-r--r--
event_analyzing_sample.pyc
5.93
KB
-rw-r--r--
event_analyzing_sample.pyo
5.93
KB
-rw-r--r--
export-to-postgresql.py
15.75
KB
-rw-r--r--
export-to-postgresql.pyc
16.95
KB
-rw-r--r--
export-to-postgresql.pyo
16.95
KB
-rw-r--r--
failed-syscalls-by-pid.py
2.18
KB
-rw-r--r--
failed-syscalls-by-pid.pyc
2.97
KB
-rw-r--r--
failed-syscalls-by-pid.pyo
2.97
KB
-rw-r--r--
futex-contention.py
1.47
KB
-rw-r--r--
futex-contention.pyc
1.8
KB
-rw-r--r--
futex-contention.pyo
1.8
KB
-rw-r--r--
net_dropmonitor.py
1.71
KB
-rw-r--r--
net_dropmonitor.pyc
2.43
KB
-rw-r--r--
net_dropmonitor.pyo
2.43
KB
-rw-r--r--
netdev-times.py
14.83
KB
-rw-r--r--
netdev-times.pyc
15.46
KB
-rw-r--r--
netdev-times.pyo
15.46
KB
-rw-r--r--
sched-migration.py
11.68
KB
-rw-r--r--
sched-migration.pyc
19.45
KB
-rw-r--r--
sched-migration.pyo
19.45
KB
-rw-r--r--
sctop.py
2.05
KB
-rw-r--r--
sctop.pyc
2.62
KB
-rw-r--r--
sctop.pyo
2.62
KB
-rw-r--r--
syscall-counts-by-pid.py
2.05
KB
-rw-r--r--
syscall-counts-by-pid.pyc
2.88
KB
-rw-r--r--
syscall-counts-by-pid.pyo
2.88
KB
-rw-r--r--
syscall-counts.py
1.66
KB
-rw-r--r--
syscall-counts.pyc
2.49
KB
-rw-r--r--
syscall-counts.pyo
2.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : net_dropmonitor.py
# Monitor the system for dropped packets and proudce a report of drop locations and counts import os import sys sys.path.append(os.environ['PERF_EXEC_PATH'] + \ '/scripts/python/Perf-Trace-Util/lib/Perf/Trace') from perf_trace_context import * from Core import * from Util import * drop_log = {} kallsyms = [] def get_kallsyms_table(): global kallsyms try: f = open("/proc/kallsyms", "r") except: return for line in f: loc = int(line.split()[0], 16) name = line.split()[2] kallsyms.append((loc, name)) kallsyms.sort() def get_sym(sloc): loc = int(sloc) # Invariant: kallsyms[i][0] <= loc for all 0 <= i <= start # kallsyms[i][0] > loc for all end <= i < len(kallsyms) start, end = -1, len(kallsyms) while end != start + 1: pivot = (start + end) // 2 if loc < kallsyms[pivot][0]: end = pivot else: start = pivot # Now (start == -1 or kallsyms[start][0] <= loc) # and (start == len(kallsyms) - 1 or loc < kallsyms[start + 1][0]) if start >= 0: symloc, name = kallsyms[start] return (name, loc - symloc) else: return (None, 0) def print_drop_table(): print "%25s %25s %25s" % ("LOCATION", "OFFSET", "COUNT") for i in drop_log.keys(): (sym, off) = get_sym(i) if sym == None: sym = i print "%25s %25s %25s" % (sym, off, drop_log[i]) def trace_begin(): print "Starting trace (Ctrl-C to dump results)" def trace_end(): print "Gathering kallsyms data" get_kallsyms_table() print_drop_table() # called from perf, when it finds a correspoinding event def skb__kfree_skb(name, context, cpu, sec, nsec, pid, comm, callchain, skbaddr, location, protocol): slocation = str(location) try: drop_log[slocation] = drop_log[slocation] + 1 except: drop_log[slocation] = 1
Close