Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
supervisor /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
loop_eventgen.py
776
B
-rwxr-xr-x
2020-09-11 19:59
loop_listener.py
713
B
-rwxr-xr-x
2020-09-11 19:59
sample.conf
10.36
KB
-rw-r--r--
2019-12-10 02:49
sample_commevent.py
559
B
-rwxr-xr-x
2020-09-11 19:59
sample_eventlistener.py
1.27
KB
-rwxr-xr-x
2020-09-11 19:59
sample_exiting_eventlistener.py
1.42
KB
-rwxr-xr-x
2020-09-11 19:59
Save
Rename
#!/usr/bin/python3 # A process which emits a process communications event on its stdout, # and subsequently waits for a line to be sent back to its stdin by # loop_listener.py. import sys import time from supervisor import childutils def main(max): start = time.time() report = open('/tmp/report', 'w') i = 0 while 1: childutils.pcomm.stdout('the_data') sys.stdin.readline() report.write(str(i) + ' @ %s\n' % childutils.get_asctime()) report.flush() i+=1 if max and i >= max: end = time.time() report.write('%s per second\n' % (i / (end - start))) sys.exit(0) if __name__ == '__main__': max = 0 if len(sys.argv) > 1: max = int(sys.argv[1]) main(max)