I was trying to overflow buffers and I was wondering ,
Is there anyway to do a buffer overflows without using environment variables ?
I was trying to overflow buffers and I was wondering , Is there anyway to do a buffer overflows without using environment variables ? |
|||||||||||||||||||||
closed as unclear what you're asking by TildalWave, schroeder, Xander, Mark, Rory Alsop♦ Nov 6 '14 at 8:26Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question. |
|||||||||||||||||||||
|
Yes, you normally overflow buffers without using environment variables. In fact, I'm not exactly sure how you would manage to overflow a buffer using only an environment variable. Ok, that last part is slightly facetious, you could potentially malform an environment variable to cause an overflow as well, but you can cause a buffer overflow with any unchecked variable length input. It could be a text box, a command line parameter, an environment variable, a memory value from another program, an API call, whatever... If it takes input of variable length and doesn't check that it fits, it can potentially be used to cause an overflow. |
|||||||||||||
|