Last active
October 1, 2018 08:15
-
-
Save yarjor/3dd6a65f4d404d1512c102831c0c66c8 to your computer and use it in GitHub Desktop.
[Format String Exploit helpers] #dtors #got #plt #fmt #binary #exploit #objdump
This file contains hidden or 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
objdump -h <binary> |
This file contains hidden or 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
objdump -h -j .fini_array <binary> | |
# overwriting .dtors is only relevant with no relro |
This file contains hidden or 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
objdump -R <binary> | |
# overwriting GOT is only relevant with partial relro (or no relro) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment