Tagged Questions
-1
votes
2answers
279 views
Buffer overflow in JAVA
Ok so I'm doing some research on buffer overflows. I've got a C program that is vulnerable to a variable attack that I'm trying to convert to java. Does anyone think they could help me? So far I still ...
2
votes
4answers
88 views
Excessive LinkedList using
I have a question about linked lists in java. I saw an interesting approach of getting arguments from the commandline into a java program, via String[] args. The very interesting part on this was that ...
1
vote
1answer
1k views
Pushback buffer overflow - but my buffer isn't full yet?
I'm implementing a syntax reader as a spin-off from a homework assignment, and I'm reading an XML file one character at a time. My goal is to take the code that I passed the lab assignment with, and ...
3
votes
2answers
697 views
How does memory management in Java and C# differ?
I was reading through 2010 CWE/SANS Top 25 Most Dangerous Programming Errors and one of the entries is for Buffer Copy without Checking Size of Input. It suggests using a language with features to ...
32
votes
9answers
16k views