Tagged Questions
0
votes
0answers
36 views
Troubles overriding BP and return adress while exploiting program through buffer overflow
I'm following this exploit tutorial http://www.youtube.com/playlist?list=PL96AB65DFCE02EE3E, which teaches you to exploit applications by injecting assembly code in user input and overriding return ...
0
votes
1answer
86 views
Buffer Overflow esp offset
I'm a computer engineering student who is studying how stack buffer overflows work. The book I'm reading is The Art of Exploitation (1st edition) by Jon Erickson.
In order to practice what I'm ...
2
votes
1answer
93 views
Creating a basic stack overflow using IDA
This program is running with root privileges on my machine and I need to perform a Stack overflow attack on the following code and get root privileges:
#include <stdio.h>
#include ...
11
votes
2answers
120 views
Buffer overflow appeared before it is expected
I am trying to take a control over a stack overflow. First here is an example of C code I compile on an x32 VM Linux (gcc -fno-stack-protector -ggdb -o first first.c)
#include "stdio.h"
int ...
0
votes
1answer
127 views
How to identify gnome-terminal profile?
I posted a question on askubuntu a while back. As there is no action, and I have also dug some more, I'll try here. Possibly a more correct place, (and I don't know if it is possible to move questions ...
-4
votes
3answers
115 views
explaining the behavior of this “static variable” in C [closed]
I'm reading "hacking, The Art of Exploitation" book, and this code sample really confuses me.
It's within the context of Global Variable Scope:
#include <stdio.h>
void function() { // An ...
0
votes
1answer
157 views
How would I go about learning OS-based hacking? [closed]
Firstly I would like to say I apologize if this is something stupid to ask.
I would rather have an opinion from someone with experience rather than go out and attempt to learn myself.
I'm quite ...
3
votes
1answer
456 views
Curious thing when finding environment variable address in gdb
Recently I'm doing some Return-to-libc attack experiment base on the paper Bypassing non-executable-stack during exploitation using return-to-libc with my Ubuntu11.10.
Before my experiment I closed ...
-4
votes
1answer
150 views
What am I doing in this terminal?: C Programming [closed]
here is the source code of the program.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int check_authentication(char *password)
{
if(strcmp(password, "brillig") == 0)
...
3
votes
1answer
296 views
How can I perform a “printf string attack” using a buffer overflow?
The code:
void doit()
{
system("/bin/sh");
exit(0);
}
int main(int argc, char **argv)
{
static int the_var;
char buf[512];
the_var = 20;
strncpy ...
3
votes
1answer
293 views
Smashing the stack: overflow [closed]
I've just read Smashing the Stack for Fun and Profit (http://insecure.org/stf/smashstack.html) and want to explore more. Then I found this code here: https://github.com/yangsu/Stack-Smashing
I ...
1
vote
3answers
131 views
Code to print the stack in C not working (security stuff, messing with stack)
I'm learning about security. Here is some sample code I've been given:
#include <stdio.h>
#include <string.h>
char *j; /* use to dump the stack in function cat */
/* Strings to be ...
-3
votes
1answer
1k views
How does hacking work?
I am specifically talking about web servers, running in Unix. I have always been curious of how hackers get the entry point. I mean I don't see how a hacker can hack into the webpage when the only ...
-6
votes
3answers
322 views
Can anyone explain this C program ? [closed]
Can anyone explain how this C program works especially the pointer variables? Explanation for C code is enough not necessary for SHELLCODE
NOTE: Guys I am new to C programming or pointers.I just dont ...
-1
votes
2answers
201 views
Why is the location of the format string on stack so different on different linux systems?
When you call a function like printf, the formatstring and the arguments are pushed onto the stack. If you ommit the parameters but specify them in the format string with "%x" or "%s" or "%n" you cann ...
3
votes
2answers
2k views
C Hack tutorial [closed]
Hi im currenlty fighting my way throug some exercizes about security in C. Can someone help how to find the secret. which shout be the password prog5_secret. Of course we have a precompiled executable ...
0
votes
1answer
336 views
linux OS programming; question on counting system calls
I have this .c file that counts the system calls that linux calls. These are just the main functions. There were a couple of other things that I had to do, like create an array
unsigned long ...
0
votes
1answer
188 views
Best method to check a file hasnt been modified or altered
I'm working on a solution and one of the features is to check that some files have not been tampered in other words hacked. I was planning on using the MD5 sum with a mixture of created and modified ...
13
votes
2answers
402 views
Unable to understand a format string exploitation code
I came across this code showing format string exploitation while reading this article.
#include <stdio.h>
int main(void)
{
char secret[]="hack.se is lame";
char buffer[512];
char target[512];
...
2
votes
1answer
646 views
Abort trap instead of buffer overflow
I've been reading an excellent book Hacking by Jon Erickson. I wanted to compile an buffer overflow example and debug it, but instead of writing outside allocated space, the application just responds ...
0
votes
2answers
734 views
Buffer Overflow ( Question about Return address…) Please Guide! [duplicate]
Possible Duplicate:
how to skip a line doing a buffer overflow in c
I disassembled the main() function using gdb on RHEL5. Basically I want to change return address to some other ...
18
votes
10answers
2k views
Can gdb make a function pointer point to another location?
I'll explain:
Let's say I'm interested in replacing the rand() function used by a certain application.
So I attach gdb to this process and make it load my custom shared library (which has a ...
1
vote
2answers
244 views
Programming puzzle at CMU: how to find the location of process control block wrt base of the stack
I read a programming puzzle at CMU from the book Expert C programming: deep C secrets By Peter Van der Linden.
The puzzle stated to code a program to read a file of numbers and print the average. The ...
1
vote
2answers
157 views
malloc and obtaining recently freed memory
I am allocating the array and freeing it every callback of an audio thread. The main user thread (a web browser) is constantly allocating and deallocating memory based on user input. I am sending the ...
4
votes
2answers
2k views
testing a shellcode
I have this piece of code to test a shellcode but I don't understand it so can anyone explain it to me???
forget about the assembly shellcode, what i want to understand is the C code
char ...
1
vote
5answers
2k views
I have this code … Ethical Hacking
I am following this EBook about Ethical Hacking, and I reached the Linux Exploit Chapter, this is the code with Aleph's 1 code.
//shellcode.c
char shellcode[] = //setuid(0) & Aleph1's famous ...
3
votes
1answer
651 views
how to exploit vulnerability of php?
i have never seen a buffer overflow exploit in live action. supporse I have found a server that seems to have vulnerabilities. Where can i get proof of the concept code preferably in c/c++ to exploit ...
14
votes
6answers
18k views
How can I hook Windows functions in C/C++?
If I have a function foo() that windows has implemented in kernel32.dll and it always returns true, can I have my program: "bar.exe" hook/detour that Windows function and make it return false for all ...

