(fix): close the comment

This commit is contained in:
bfu4 2022-03-29 13:32:52 +00:00
parent 1d926ac1de
commit 6d478f94cd

2
bof.s

@ -54,7 +54,7 @@
# since the binary is little endian (LSB), when we want to overwrite the memory, our input will have to #
# follow that format. Instead of writing {0x40, 0x10, 0x47} to stdin, we will write {0x47, 0x10, 0x40} to #
# be able to write 0x401047 (the address we want to jump to). #
#
# #
# This allows us to craft the final payload: "aaaaaaaaaaaaaaaa\x47\x10\x40". #
#---------------------------------------------------------------------------------------------------------------#
# Execution: bash -c 'printf "aaaaaaaaaaaaaaaa\x47\x10\x40" | ./bof.elf' #