Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
supervisor /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
loop_eventgen.py
758
B
-rwxr-xr-x
2020-03-10 20:45
loop_eventgen.pyc
1
KB
-rw-r--r--
2020-03-10 20:45
loop_eventgen.pyo
1
KB
-rw-r--r--
2020-03-10 20:45
loop_listener.py
692
B
-rwxr-xr-x
2020-03-10 20:45
loop_listener.pyc
903
B
-rw-r--r--
2020-03-10 20:45
loop_listener.pyo
903
B
-rw-r--r--
2020-03-10 20:45
sample_commevent.py
541
B
-rwxr-xr-x
2020-03-10 20:45
sample_commevent.pyc
904
B
-rw-r--r--
2020-03-10 20:45
sample_commevent.pyo
904
B
-rw-r--r--
2020-03-10 20:45
sample_eventlistener.py
1.25
KB
-rwxr-xr-x
2020-03-10 20:45
sample_eventlistener.pyc
1.17
KB
-rw-r--r--
2020-03-10 20:45
sample_eventlistener.pyo
1.17
KB
-rw-r--r--
2020-03-10 20:45
sample_exiting_eventlistener.py
1.4
KB
-rwxr-xr-x
2020-03-10 20:45
sample_exiting_eventlistener.pyc
1.19
KB
-rw-r--r--
2020-03-10 20:45
sample_exiting_eventlistener.pyo
1.19
KB
-rw-r--r--
2020-03-10 20:45
Save
Rename
# 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)