0
votes
3answers
49 views
How to disable buffer overflow checking in the Visual C++ Runtime?
i, and a few thousand other people, are getting an error being thrown by the Microsoft Visual C++ Runtime:
Which for the benefit of search engines, says:
Microsoft Visual C++ R …
0
votes
1answer
21 views
Memory overwrite problem.
Hello,
I have one C code app. which i was building using MS-VS2005. I had one output data buffer which was being allocated dynamically using malloc.
For some test cases, the memo …
2
votes
1answer
59 views
BufferOverflowException when generating Javadoc?
Hi,
Has anybody ever had problems with the javadoc tool causing a java.nio.BufferOverflowException?
I'm trying to generate Javadoc for code with Japanese comments (charset MS932) …
7
votes
1answer
307 views
heap overflow attacks
How heap overflow attacks are done?
In case of stackoverflow attacks, the attacker replaces the function return address with his address.
How this is done in heap overflow atta …
2
votes
7answers
227 views
strcpy when dest buffer is smaller than src buffer
I am trying to understand the difference/disadvantages of strcpy and strncpy.
Can somebody please help:
void main()
{
char src[] = "this is a long string";
char dest[5];
strcpy …
0
votes
3answers
77 views
Buffer overflow - Windows vs Unix
I'm trying to figure out the security concerns between buffer overflows in Windows vs Unix.
As I understand it, the buffer overflow Windows hack cannot be implemented in Unix beca …
2
votes
2answers
45 views
Setting up Environment for Buffer Overflow Learning
I am currently reading several security books(my passion) regarding secure programming, however either the distro's they provide on disc are faulty, or non-existent.
Books:Hacking …
5
votes
10answers
948 views
What is a buffer overflow and how do I cause one?
I have heard about a buffer overflow and I would like to know how to cause one.
Can someone show me a small buffer overflow example?
5
votes
9answers
471 views
Can you give an example of a buffer overflow?
I've heard so much about buffer overflows and believe I understand the problem but I still don't see an example of say
char buffer[16];
//code that will over write that buffer a …
1
vote
5answers
284 views
Are snprintf and friends safe to use?
There was a question recently on SO (Why on earth would anyone use strncpy instead of strcpy?), which hade answers (answer 1, answer 2), that made me uncertain about other string f …
5
votes
12answers
835 views
Why on earth would anyone use strncpy instead of strcpy?
Edit: I've added the source for the example.
I came across this example:
char source[MAX] = "123456789";
char source1[MAX] = "123456789";
char destination[MAX] = "abcdefg";
char …
1
vote
2answers
189 views
Is there any way to bypass SSP (StackSmashing Protection)/Propolice ?
After some research i haven't found any paper describing method to do this (no even an unreliable one). It seems that SSP (StackSmashing Protection)/Propolice
1
vote
2answers
429 views
stack execution protection and randomization on ubuntu
Hi all,
As part of a course assignment i need to write an exploit code to cause a buffer overflow and execute code that is present on stack.
I have turned off the stack randomizt …
4
votes
14answers
1k views
What C/C++ tools can check for buffer overflows?
I've been asked to maintain a large C++ codebase full of memory leaks. While poking around, I found out that we have a lot of buffer overflows that lead to the leaks (how it got th …
1
vote
6answers
446 views
Preventing buffer overflow in C/C++
Many times I have problems with Buffer Overflow.
int y[10][10][10];
...
y[0][15][3] = 8;
How can I prevent this problem?
Is there any good tool that can help me?
