This commit is contained in:
firmianay
2018-05-29 21:51:00 +08:00
parent f34cb95061
commit 070603e235
20 changed files with 302 additions and 228 deletions

Binary file not shown.

View File

@ -1,10 +0,0 @@
import angr
project = angr.Project("entry_language", auto_load_libs=False)
@project.hook(0x400844)
def print_flag(state):
print "FLAG SHOULD BE:", state.posix.dump_fd(0)
project.terminate_execution()
project.execute()

View File

@ -1,5 +0,0 @@
str_list = ["Dufhbmf", "pG`imos", "ewUglpt"]
passwd = []
for i in range(12):
passwd.append(chr(ord(str_list[i % 3][2 * (i / 3)]) - 1))
print ''.join(passwd)