Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.147.67.34
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
python-libs-2.7.5 /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
13.92
KB
-rw-r--r--
2013-05-12 03:32
README
52.49
KB
-rw-r--r--
2013-05-12 03:32
pyfuntop.stp
537
B
-rw-rw-r--
2020-11-16 14:40
systemtap-example.stp
613
B
-rw-rw-r--
2020-11-16 14:40
Save
Rename
/* Example usage of the Python systemtap tapset to show a nested view of all Python function calls (and returns) across the whole system. Run this using stap systemtap-example.stp to instrument all Python processes on the system, or (for example) using stap systemtap-example.stp -c COMMAND to instrument a specific program (implemented in Python) */ probe python.function.entry { printf("%s => %s in %s:%d\n", thread_indent(1), funcname, filename, lineno); } probe python.function.return { printf("%s <= %s in %s:%d\n", thread_indent(-1), funcname, filename, lineno); }