Project

General

Profile

Security #7280 » pocs.py

Philippe Antoine, 09/26/2024 09:39 AM

 
import socket

HOST = "127.0.0.1" # Standard loopback interface address (localhost)
PORT = 1053 # Port to listen on (non-privileged ports are > 1023)

with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.bind((HOST, PORT))
s.listen()
conn, addr = s.accept()
with conn:
print(f"Connected by {addr}")
while True:
data = conn.recv(1024)
if not data:
break
(2-2/4)