How to start gdb debugging exception program
gdb debugging mechanism
In the process of debugging, you can clearly understand the context in order to analyze the program principle and the causes of errors.
code
Stack information
Process and thread status
debug information
When using gcc or makefile, adding the - g option during compilation means that the debugging symbol information is ...
Posted by masteroleary on Mon, 17 Jan 2022 09:56:33 +0100
TryHackMe learning notes - The Cod Caper
summary
Continue the learning record of TryHackMe. This time, the target is The Cod Caper, and the content is from Web vulnerability exploitation to buffer overflow.
After starting the target, the IP address of the target is 10.10 one hundred and sixty-two point one seven seven
Port scan
nmap port scan found 2 ports open
nmap -Pn --o ...
Posted by Daisy Cutter on Sat, 18 Dec 2021 20:12:04 +0100
View Stack Information for gdb Debugging
outline
backtrace (abbreviated as bt)
Prints all information about the current function call stack.
backtrace
n is a positive integer that only prints stack information at the top of the stack.
backtrace <-n>
The -n table is a negative integer indicating that only the stack information at the bottom of the stack is printed.
frame ...
Posted by BIOSTALL on Tue, 30 Nov 2021 19:27:03 +0100