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 # An example process which emits a stdout process communication event every # second (or every number of seconds specified as a single argument). import sys import time def write_stdout(s): sys.stdout.write(s) sys.stdout.flush() def main(sleep): while 1: write_stdout('<!--XSUPERVISOR:BEGIN-->') write_stdout('the data') write_stdout('<!--XSUPERVISOR:END-->') time.sleep(sleep) if __name__ == '__main__': if len(sys.argv) > 1: main(float(sys.argv[1])) else: main(1)