Assignment-5 #2

Merged
saschato merged 18 commits from Assignment-5 into master 2024-06-10 14:32:32 +02:00
Showing only changes of commit 1f18ccb927 - Show all commits

View file

@ -122,10 +122,14 @@ user@intro:~$ objdump -d intro | awk -v RS= '/^[[:xdigit:]]+ <secret>/'
# Do not remove this intial line; it will disable pagination # Do not remove this intial line; it will disable pagination
set pagination off set pagination off
file intro
break secret
# TODO: your commands go here # TODO: your commands go here
# read in the intro binary
file intro
# breakpoint at secret
break secret
# run program with paramter value 5
r 5 r 5
# read eax register
i r eax i r eax
stepi 6 stepi 6
# after 5. instruction # after 5. instruction