Usually occurs when you attempt to copy data into a buffer without checking for sufficient space, causing data to be overwritten in neighboring cells.

learn more… | top users | synonyms

0
votes
0answers
26 views

buffer overflow when using peg/leg

I'm using Ian Piumarta's peg/leg software to parse a toy language that I'm working on. Unfortunately some inputs to the parser are causing a crash that Clang's address sanitizer says is caused by a ...
0
votes
0answers
10 views

WinDbg range error while searching jump

I am trying to search jump in a programs' dll but when I do that I am taking range error. What's the problem with that? My WinDbg output is below: 0:000> g ModLoad: 76390000 763ad000 ...
1
vote
2answers
43 views

Buffer Overflow Should Work, But Gives SIGSEGV Error

I was watching a tutorial on how to do a buffer overflow on linux. Everything was working great until I tried running the final thing. I searched and search on google but found nothing that worked. ...
0
votes
1answer
18 views

Buffer Overflow due to Query string length

I am having a url like this, http://domain.com?a=1&b=something&c=something I am accessing all these query strings on the server side to do some process. Now if someone sends in a large text ...
1
vote
1answer
20 views

sscanf function changes the content of another string

I am having problems reading strings with sscanf. I have dumbed down the code to focus on the problem. Below is a function in the whole code that is supposed to open a file and read something. But ...
0
votes
1answer
42 views

hex code implementation for spawning a shell

I am trying to implement the codes given in smashing the stack for fun and profit by Aleph to learn the basics of buffer overflow attacks. Machine architecture: Ubuntu 12.10 64 bit programs compiled ...
1
vote
3answers
218 views

Using buffer overflow to execute shell code

I've been learning computer security lately and come across a couple problems, and i'm having some trouble with this one in particular. I'm given a function with a fixed buffer I need to overflow in ...
2
votes
1answer
75 views

Is the sscanf function in the Linux kernel susceptible to buffer overflow attacks?

From what I understand, a typical buffer overflow attack occurs when an attack overflows a buffer of memory on the stack, thus allowing the attacker to inject malicious code and rewrite the return ...
0
votes
2answers
62 views

Why is the fgets function deprecated?

From The GNU C Programming Tutorial: The fgets ("file get string") function is similar to the gets function. This function is deprecated -- that means it is obsolete and it is strongly ...
0
votes
1answer
81 views

overflowing the stack into a variable confusion(computer security)

I'm learning computer security through a book i've found online(pretty new to this stuff, go easy!), and one chapter teaches you about overflowing the stack. The function used in the program is: void ...
-1
votes
0answers
103 views

How many variable/buffer overflows are there in this C programming code?

#include <stdio.h> #include <string.h> #include <limits.h> int main(int argc, char *argv[]) { FILE *fp; char filename[128]; char strings[USHRT_MAX][50]; unsigned short cnt = 0; ...
-1
votes
2answers
52 views

what could go wrong in the following code? [closed]

char* function (char* s) { char buffer[1024]; strcpy(buffer,s); buffer[strlen(s)-1]='\n'; return buffer; } for this function i think there are three things that may fail this code: ...
0
votes
1answer
76 views

Buffer overflow exploit : segfault on function ret to stack code

I'm trying to exploit a buffer overflow in a test program to execute arbitrary code. I'm on NetBSD 6 i386. Here is the C code: int checkPassword(char *password) { char ...
1
vote
1answer
74 views

ASLR brute force

I just read about Address Space Layout Randomization and I tried a very simple script to try to brute force it. Here is the program I used to test a few things. #include <stdio.h> #include ...
0
votes
1answer
86 views

Exploiting Buffer Overflow

I have come across a C program which has a buffer overflow flaw. We need to make the program work in our way. As per my understanding overflowing the buffer would overwrite the next memory location. ...
0
votes
1answer
88 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 ...
0
votes
0answers
75 views

Jack ringbuffer

I have a problem with jack_ringbuffer, when the jack ringbuffer is full it does not get any more new data. I want to ring bufer when it will release full of old data and new data received. I using ...
0
votes
1answer
76 views

how to print register value using rop (return oriented programming)?

I've got an assignment to build rop code thats calls printf with the value inside edx register. I'm stuck. I know the address of printf function, and I have a tools to find gadgets. I'm trying to ...
0
votes
0answers
68 views

Buffer Overflow using environmental variable - problems

I'm taking a class on security. I have this C code that I have to exploit on a linux system. #include <stdio.h> #include <string.h> int main(int argc, char** argv){ char buffer[500]; ...
3
votes
1answer
78 views

Overflow attacks with input strings and ret, x86

Before the question, this is purely for an assignment, I am not planning on wrongfully gaining access to insecure programs otherwise. I have an assignment that involves overflowing an input string so ...
1
vote
3answers
94 views

Shellcode: perform 2 execve() calls

I am trying to write shellcode in assembly. I need to perform a /usr/bin/killall command AND a /usr/bin/wget command. I have both commands running perfectly in shellcode with the execve() syscall. But ...
0
votes
2answers
113 views

Hex string as input to scanf in gdb

Can we give input string by it's hex value in gdb. For example, a simple program #include <stdio.h> int main() { char buffer[20]; fscanf(stdin, "%s", buffer); printf("%s", buffer); ...
0
votes
2answers
85 views

Buffer overflows on 64 bit

I am trying to do some experiments with buffer overflows for fun. I was reading on this forum on the topic, and tried to write my own little code. So what I did is a small "C" program, which takes ...
0
votes
2answers
53 views

Common Buffer Overflow attacks

I am learning computer security and I am trying to find a list of common buffer overflow attacks, but not having much luck. I am planning on using metasploit for pen-testing as well as backtrack 5, ...
3
votes
1answer
107 views

Buffer overflow on remote server

I'm a computer security student and I'm doing a project about remote buffer overflows. I developed a vulnerable server in C, with an unsafe use of strncpy function which actually copies 1024 bytes on ...
0
votes
1answer
80 views

Buffer Overflow exploit , overwriting function parameters including return address

Assume we have a function foo(char *name,int id) { printf ("%s%d",name,id); } Using buffer overflow, we replace the return address on the stack with foo function address. I was able to ...
0
votes
1answer
110 views

Can't understand the buffer overflow example in “The Art of Exploitation”

My problem is very similar but not the same with the this one. I run the same example of exploit_notesearch.c in the book: Hacking, the Art of Exploitation on my 64-bit OS, Archlinux and it doesn't ...
0
votes
1answer
53 views

How can I find where main()'s return address is sitting in the stack?

I need to do a remote a buffer overflow exploit for a class. I understand MOST of it. It involves overwriting main's return address so I can execute my own code. But we never covered how to find the ...
2
votes
1answer
89 views

Need help figuring out a remote buffer overflow

It's for a class assignment. I'm kinda stuck and I only have some questions to help me move along. (No cheating for me :p) Brutal assignment for an undergrad class I think... What we're supposed to ...
2
votes
3answers
170 views

Can `recv()` result in a buffer overflow?

I'm introducing myself to socket programming in C/C++, and am using send() and recv() to exchange data between a client and server program over TCP sockets. Here are some relevant excerpts from my ...
1
vote
1answer
150 views

Inputting Non ASCII characters to scanf(“%s”)

Is there a way one can issue non ascii hex characters to a scanf that uses %s ? I'm trying to insert hexadecimal chars like \x08\xDE\xAD and so on (to demonstrate buffer overflow). The input is not ...
3
votes
1answer
144 views

Bash read line buffer overflow

I have a bash script that reads lines from a file and then does some logic with those lines. So while read line; do # some stuff done < "$1" In the body of the while loop I am piping the output ...
0
votes
0answers
116 views

Buffer Overflow Detaching after fork from child process

I'm trying a basic buffer overflow attack which spawns a root shell. I am facing problem with "dispatching after fork from child process **" How do I get rid of this and spawn the root shell? I'm ...
-2
votes
5answers
98 views

How to prevent password masking from bufferoverflow

#include <conio.h> #include <windows.h> #include <stdio.h> int main () { char input[255]; int i = 0; for(;;i++) /* Infinite loop, exited when RETURN is pressed */ { char temp; ...
1
vote
3answers
313 views

boost::asio::buffer: Getting the buffer size and preventing buffer overflow?

I have the two following functions for sending and receiving packets. void send(std::string protocol) { char *request=new char[protocol.size()+1]; ...
2
votes
1answer
124 views

C Buffer Overflow - Why is there a constant number of bytes that trips a segfault? (Mac OS 10.8 64-bit, clang)

I was experimenting with buffer overflow in C, and found an interesting quirk: For any given array size, there seems to be a set number of overflow bytes that can be written to memory before a ...
0
votes
0answers
49 views

Trouble understanding how ROP attack is executed

I have serious difficulty understanding how an ROP attack is executed in this code segment. $ (echo -n /bin/sh | xxd -p; printf %0130d 0; printf %016x $((0x7ffff7a1d000+0x22a12)) | tac -rs..; ...
0
votes
2answers
109 views

Buffer Overflow Works in GDB but not in Terminal

I am using Mac OSX. I have created a buffer overflow vulnerable program: #include<stdio.h> #include<string.h> int neverCalled() { puts("You got me to be called"); return 0; } ...
1
vote
2answers
125 views

Overflowing a stack in theory.. and assembly

Assuming an x86 system with no aslr I'd like to ask the following; 1) Theory says that when we execute a stack overflow attack, the value pointed to by the ebp register is overwritten with the new ...
0
votes
1answer
685 views

Buffer Overflow Vulnerability Lab problems

I have a lab assignment that I am stuck on. Basically, I have to take advantage of a buffer overflow to generate a shell that has root privileges. I have to use 2 separate .c files. Here is the ...
1
vote
1answer
379 views

Buffer Overflow - SegFaults in regular user [closed]

Below is my code, both the vulnerable program (stack.c) and my exploit (exploit.c). This code works on a pre-packaged Ubuntu 9 that the prof sent out for windows users (I had a friend test it on his ...
2
votes
6answers
129 views

Does strlen() in a strncmp() expression defeat the purpose of using strncmp() over strcmp()?

By my understanding, strcmp() (no 'n'), upon seeing a null character in either argument, immediately stops processing and returns a result. Therefore, if one of the arguments is known with 100% ...
1
vote
0answers
79 views

Cleaning up stack in Buffer Overflow

I am performing a buffer overflow for educational purposes only. I have a function called that uses gets to receive input from the terminal. I want to force this function to return a specific value ...
0
votes
0answers
66 views

Finding the address of /bin/bash for buffer overflow attack

I am trying out ret-to-libc attacks and use the following piece of code to get the address of environment variable /bin/bash #include <unistd.h> int main(void) { printf("bash address: ...
3
votes
2answers
290 views

Homework - Buffer Overflow

Still learning this Buffer Overflow stuff for a security class, I'm trying to exploit the vulnerability in this application: //vuln.c #include <stdio.h> int bof(char *str) { char ...
1
vote
1answer
97 views

Launch shell with inline assembly

I am working on a school assignment and I am completely stumped. The professor and TA have been of no help as every answer they provide to any student is some variation of "keep looking, the answer is ...
9
votes
2answers
262 views

Compile C to allow for Buffer Overflow

I am learning about buffer overflows and am trying to make one. I have this code: #include <stdio.h> char *secret = "password"; void go_shell() { char *shell = "/bin/sh"; char *cmd[] ...
1
vote
1answer
55 views

Does each process has its own portion of utopia in the memory?

By doing some cat /proc/*some PID*/maps on multiple processes on a machine, I notice they all have the same starting point in regards to memory address, being 0x8048000. Does this mean that every ...
15
votes
1answer
855 views

How does a NOP sled work?

I've been cracking my head open and can't find a good source that answers this question. I know that a nop sled is a technique used to circumvent stack randomization in a buffer overflow attack, but I ...
-1
votes
3answers
114 views

How do you properly implement a robust stack in C

Prior Knowledge I've read and understand a bit about stacks and data structures, but couldn't find the answer to this specific question. I know that any programmer worth anything will implement ...

1 2 3 4 5 7