Skip to content

Instantly share code, notes, and snippets.

View shuban-789's full-sized avatar

Shuban Pal shuban-789

View GitHub Profile
@sampritipanda
sampritipanda / pppvm.py
Created April 14, 2024 21:25
Plaid Parallel Processing VM
from pwn import *
CODE_SIZE = 0x4000
OP_NOP = 0x00
OP_PUSH = 0x01
OP_POP = 0x02
OP_DUP = 0x03
OP_SWAP = 0x04