9-27-16
Jim: compiled maximum on csmarlboro.org (like in notes.txt for exit program)
$ gdb maximum
(gdb) info file
Local exec file:
`/home/dylanm/site/malware/maximum/maximum', file type elf32-i386.
Entry point: 0x8048074
0x08048074 - 0x0804809e is .text
0x0804909e - 0x080490d6 is .data
(gdb) x/14dw 0x0804909e ; 14 decimal word(4bytes)
0x804909e: 3 67 34 222
0x80490ae: 45 75 54 34
0x80490be: 44 33 22 11
0x80490ce: 66 0
(gdb) disass _start,+40 ; look at the code
(gdb) break _start ; and breaks at other named locations
(gdb) run
(gdb) si ; step instruction
(gdb) i r ; inspect registers