Skip to content

Instantly share code, notes, and snippets.

View Vishvesh-rao's full-sized avatar
😬
When in doubt, use brute force.

Vishvesh a.k.a Str1d3r Vishvesh-rao

😬
When in doubt, use brute force.
View GitHub Profile
@Vishvesh-rao
Vishvesh-rao / exploit.py
Last active September 4, 2021 22:34
inctfi 21
from Crypto.Util.number import GCD
from pwn import *
context.log_level = "Debug"
remote_ip,port = 'crypto.challenge.bi0s.in','1221'
io = remote(remote_ip,port)
re = lambda : io.recv()
ru = lambda a: io.recvuntil(a)