The buffer-overrun tag has no wiki summary.
1
vote
2answers
62 views
Buffer overrun during Garbage Collection: psychic debugging request
Currently testing a C# (.Net 4.5) WPF application built on top of a C++ library (managed, I believe, I didn't write it). For various (practical) reasons, it's running on a server (with VS2012 ...
0
votes
1answer
54 views
Using Marshal::GetFunctionPointerForDelegate and calling a callback from unmanaged code causes a buffer overrun when quitting application
I am using Visual Studio 2008 with .NET Framework 3.5 and making a C++/CLI/.NET Forms application; an editor for a game. All the game code other than the editor is in pure C++. I'm getting to a ...
0
votes
1answer
121 views
Buffer overflow protection for stackalloc in .Net
From C# reference for stackalloc:
the use of stackalloc automatically enables buffer overrun detection features in the common language runtime (CLR). If a buffer overrun is detected, the process ...
0
votes
0answers
147 views
Stack cookie instrumentation code detected a stack-based buffer overrun - Fixed
so I am having a few issues with this program used to pixelate an image. One issue is that I get a "Stack around the variable 'pixArray' was corrupted" and then, when I click continue after breaking ...
2
votes
3answers
166 views
What is the difference between STATUS_STACK_BUFFER_OVERRUN and STATUS_STACK_OVERFLOW?
I just found out that there is a STATUS_STACK_BUFFER_OVERRUN and a STATUS_STACK_OVERFLOW. What's the difference between those 2? I just found Stack overflow (stack exhaustion) not the same as stack ...
2
votes
4answers
195 views
Warnings on too-small array sizes to functions in C/C++
Are there any tools (preferably on linux) that can warn when an argument is defined as a smaller array then the prototype specifies?
eg:
void somefunc(float arg[10]); /* normally this would be ...
0
votes
2answers
76 views
PHP buffer overruns
Are there any known points to be careful about buffer overruns in PHP? Currently I take an email address from a form, run it through preg_match to check it's only a single address, call the mail ...
0
votes
2answers
106 views
programming of 3 x 7
I have been trying to program the 3x 7 trick. The full code is available here: http://codereview.stackexchange.com/questions/9419/programming-of-3-x-7-trick.
I am stuck at step 5.
I have this ...
2
votes
5answers
253 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 ...
3
votes
1answer
48 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 ...
0
votes
3answers
231 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
483 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 ...
3
votes
5answers
652 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
...
6
votes
9answers
890 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 ...
32
votes
9answers
16k views
4
votes
3answers
918 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 ...
13
votes
15answers
7k views
What C/C++ tools can check for buffer overflows? [closed]
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 ...
13
votes
11answers
1k 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 ...
12
votes
3answers
5k 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.
3
votes
6answers
772 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 ...
1
vote
4answers
6k 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]) ...
