数字安全 findme

利用二分法,暴力破解

#-*- coding=utf-8 -*-
from pwn import *

p=remote("127.0.0.1",9999)

def i2h(num):
	return hex(num)[2:].rstrip('L')

def result(g,s,g1,g2):
	#g

你可能感兴趣的:(ctf,pwn)