Skip to content

Instantly share code, notes, and snippets.

@frankli0324
frankli0324 / pwnsocket.py
Last active May 29, 2022 04:10
websocket for pwntools
# pip3 install pwntools-tube-websocket
from pwn import *
from wstube import websocket
a = websocket('wss://echo.websocket.events')
print(a.recv())
for i in range(3):
a.send(b'test')
print(a.recv(2))
print(a.recv(2))