This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
# NOTE, you must change the string below for data you want. | |
# This script does not take arguments in its current form. Sorry! | |
""" | |
from pwn import * | |
string = b"foobar" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
# NOTE, you must change the filename below for the rp++ output you want to process. | |
# This script does not take arguments in its current form. Sorry! | |
""" | |
import re | |
from pwn import p32, u32 |