One Hat Cyber Team
Your IP :
172.16.0.254
Server IP :
58.26.163.33
Server :
Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Server Software :
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
PHP Version :
7.3.25
Buat File
|
Buat Folder
Eksekusi
Dir :
C:
/
laragon
/
bin
/
python
/
python-3.10
/
Tools
/
demo
/
View File Name :
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()