Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
9answers
10k views

Does Java have buffer overflows?

Does Java have buffer overflows? If yes can you give me scenarios?
11
votes
15answers
4k 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 this bad, I don't ever ...
11
votes
11answers
945 views

What C/C++ functions are most often used incorrectly and can lead to 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 this bad, I don't ever ...
11
votes
3answers
3k views

Is buffer overflow/overrun possible in completely managed asp.net c# web application

Can there be buffer overflow/overrun vulnerabilities in completely managed asp.net web portal.If yes how can this be tested.
5
votes
9answers
751 views

How do you program safely outside of a managed code environment?

If you are someone who programs in C or C++, without the managed-language benefits of memory management, type checking or buffer overrun protection, using pointer arithmetic, how do you make sure that ...
4
votes
3answers
773 views

Why am I getting a buffer overrun error with this line of code?

I only have 1 line of code, and this is: pcrecpp::RE re("abc"); inside a function OnBnClickedButtonGo(). And this function fails in Release mode, but it works OK in debug mode. (I am using Visual ...
3
votes
6answers
570 views

How can I overcome inconsistent behaviour of snprintf in different UNIX-like operating systems?

Per man pages, snprintf is returning number of bytes written from glibc version 2.2 onwards. But on lower versions of libc2.2 and HP-UX, it returns a positive integer, which could lead to a buffer ...
2
votes
5answers
200 views

How is it possible to have a buffer overrun on one platform but not another?

I'm hesitant to ask this question because of the vagueness of the situation, but I'd like to understand how this is possible. I have a C++ application developed using Visual Studio 2008. When I ...
2
votes
1answer
41 views

Does reading from outside the buffer also count as buffer overrun?

My concern is the definition of buffer overrun. Looks like it only applies to writing outside the buffer. But recently we found a spectacular bug when the program attempted to read from outside the ...
2
votes
5answers
393 views

if one complains about gets(), why not do the same with scanf(“%s”,…)?

From man gets: Never use gets(). Because it is impossible to tell without knowing the data in advance how many characters gets() will read, and because gets() will continue to store ...
1
vote
4answers
5k views

Confused by gdb print ptr vs print “%s”

1167 ptr = (void*)getcwd(cwd, MAX_PATH_LENGTH-1); (gdb) n 1168 if (!ptr) { (gdb) print ptr $1 = 0xbff2d96c "/media/MMC-SD/partition1/aaaaaaaaaaa" (gdb) print &cwd $2 = (char (*)[3500]) ...
0
votes
3answers
170 views

buffer overrun throw return address

When I throw in a method A, it causes buffer overrun but when I return, it runs fine. I thought throw moves execution to the caller method so the address it goes to should be the same as return ...
0
votes
2answers
237 views

Avoiding 'Buffer Overrun' C6386 warning

In my code, I am using an array xyz of 10 objects. When I am trying to access an element of the array using an unsigned int index like this: xyz[level], I get 'Buffer overrun' warning. Logically, I am ...