Skip to content
Advertisement

Tag: gdb

Kernel debugging – gdb step jumps out of function

I’m trying to do understand the kernel network stack for a security research for my university. That’s why I try to debug the linux kernel. So far I’m doing quite well but I ran in a problem when trying to use qemu and gdb for debugging. The problem is as follows: I boot my linux system: make boot And connect

Buffer Overflow: NOP sled not working [closed]

Closed. This question needs debugging details. It is not currently accepting answers. Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question. Closed 5 years ago. Improve this question Hey I’m trying to do a buffer overflow on a basic C program,

how to save “set solib-search-path”

I wonder linux gdb debugging. I have 1 execute file, 1 core dump file. so, I opened it in linux like this, but, I only show error message. so, I input command, and symbol read succeed. and, I input command and, I reopen dump file. like this, but still show same error message. I don’t want to show this error

GDB doesn’t recognize some C functions

So I’m new to Linux and just got Ubuntu 16.04.2 running on a VM. I’ve installed gcc/g++ on here in the terminal, but when I run my program in GDB, as soon as I get to a strcmp function, this pops up for many lines. And when I go further down: So I’m guessing it just doesn’t recognize my C

(GDB) Breakpoints and Disassemble

I’ve been recently interested in reading books and articles about hacking and I found out that Hacking:The art of exploitation is just a must read title. I am following the basic tutorials on how to work with standard Linux tools and analyze your code (Programming chapter). I am not a beginner in programming but working with Linux terminal is quite

debug wget command with gdb

I want to debug wget with a special url. So how to pass the url to gdb? I already tried with –args <the url>, but it dosen’t work. Please help me. ps: I used gdb in the wrong way gdb wget –args http://www.google.com/, it should be gdb –args wget http://www.google.com/ Answer This should work:

Advertisement