Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.198
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python33 /
lib64 /
python3.3 /
Tools /
demo /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-05-01 04:20
README
1014
B
-rw-r--r--
2017-09-19 12:02
beer.py
578
B
-rwxr-xr-x
2024-04-17 20:28
eiffel.py
3.83
KB
-rwxr-xr-x
2024-04-17 20:28
hanoi.py
4.5
KB
-rwxr-xr-x
2024-04-17 20:28
life.py
8.79
KB
-rwxr-xr-x
2024-04-17 20:28
markov.py
3.61
KB
-rwxr-xr-x
2024-04-17 20:28
mcast.py
2.18
KB
-rwxr-xr-x
2024-04-17 20:28
queens.py
2.23
KB
-rwxr-xr-x
2024-04-17 20:28
redemo.py
5.67
KB
-rwxr-xr-x
2024-04-17 20:28
rpython.py
790
B
-rwxr-xr-x
2024-04-17 20:28
rpythond.py
1.27
KB
-rwxr-xr-x
2024-04-17 20:28
sortvisu.py
19.52
KB
-rwxr-xr-x
2024-04-17 20:28
ss1.py
24.94
KB
-rwxr-xr-x
2024-04-17 20:28
vector.py
1.43
KB
-rwxr-xr-x
2024-04-17 20:28
Save
Rename
#! /opt/alt/python33/bin/python3.3 """ Remote python server. Execute Python commands remotely and send output back. WARNING: This version has a gaping security hole -- it accepts requests from any host on the Internet! """ import sys from socket import socket, AF_INET, SOCK_STREAM import io import traceback PORT = 4127 BUFSIZE = 1024 def main(): if len(sys.argv) > 1: port = int(sys.argv[1]) else: port = PORT s = socket(AF_INET, SOCK_STREAM) s.bind(('', port)) s.listen(1) while True: conn, (remotehost, remoteport) = s.accept() print('connection from', remotehost, remoteport) request = b'' while 1: data = conn.recv(BUFSIZE) if not data: break request += data reply = execute(request.decode()) conn.send(reply.encode()) conn.close() def execute(request): stdout = sys.stdout stderr = sys.stderr sys.stdout = sys.stderr = fakefile = io.StringIO() try: try: exec(request, {}, {}) except: print() traceback.print_exc(100) finally: sys.stderr = stderr sys.stdout = stdout return fakefile.getvalue() try: main() except KeyboardInterrupt: pass