Last active
February 20, 2025 07:55
-
-
Save cgoldberg/5e312975cba4df98378a4f1547fd2726 to your computer and use it in GitHub Desktop.
Python Socket Client/Server - client sends a shell command, server runs received shell commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
HOST = '127.0.0.1' | |
PORT = 65432 | |
COMMAND = 'whoami' | |
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: | |
print('connecting to: {HOST}:{PORT}') | |
s.connect((HOST, PORT)) | |
print(f'sending command: {command}') | |
s.sendall(command.encode()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
import subprocess | |
HOST = '127.0.0.1' | |
PORT = 65432 | |
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: | |
s.bind((HOST, PORT)) | |
s.listen() | |
conn, addr = s.accept() | |
print(f'connection from: {addr}') | |
with conn: | |
while True: | |
data = conn.recv(1024) | |
if not data: | |
break | |
command = data.decode().strip() | |
print(f'received command: {command}') | |
try: | |
print(f'running command: {command}') | |
result = subprocess.run(command, capture_output=True, check=True, shell=True, text=True) | |
print(f'comnand output: {result.stdout}') | |
except subprocess.CalledProcessError as e: | |
print(f'error: {e}\n\t{result.stderr}') | |
except FileNotFoundError: | |
print('error: command not found') | |
except Exception as e: | |
print(f'unexpected error: {e}') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment