vote up 0 vote down star

an article with examples and pointers would be great

flag

8 Answers

vote up 6 vote down check

Well, the most famous piece of buffer overflows is Smashing the Stack for Fun and Profit.

link|flag
vote up 3 vote down

Oh, if you're actually wanting information about actual stack overflows, I'd suggest starting with these wikipedia pages:

link|flag
vote up 1 vote down

What do you mean by "learning stack overflow"?

link|flag
vote up 0 vote down

Are you looking for an article that describes how to use the website? Most of the site's features are fairly self-explanatory and self-discoverable. If you find anything in particular to be confusing, you should probably file a feature request and ask for the behavior to be clarified or simplified.

You might also want to read about how reputation is calculated, and take a look at the FAQ. The FAQ isn't really full-featured yet, but I expect that it will be expected as the beta progresses. I certainly hope so.

link|flag
vote up 0 vote down

to derek: no I mean how to program a "buffer overflow"

link|flag
Actually, if you're responding to Derek by posting another answer, you do need to learn how to use this web site. Answers here are sorted by vote count, not threaded. – Sherm Pendley Nov 13 '08 at 20:04
vote up 0 vote down

For better of for worse Dror this is an English speaking website. Even if English is your primary speaking language leaving a one or two line question will probably be taken in several ways. If English isn't your primary language then a one or two line question will definitely be mistaken and you will get little in the way of quality answers.

link|flag
vote up 0 vote down

the basics are pretty simple, you've got a buffer ( in the heap or stack ). This buffer is unchecked for bounds ( that is, you can write more than you should and the program will let you). If you write out of its bounds, you are writing other parts of memory that programs use. For example, if you have a function that just has one local array, and you write 1 more byte than the length of the array, you are writing the EBI pointer ( this is the bottom of the stack pointer), if you write 2 bytes more, you writing over the function pointer (if you overwrite this pointer with the hex address of another function, you can make that function call any function you want!). That's the basics, it get a lot more complex, like writing shell_code exploits, etc, but i'll leave the explanation for later.

Heres the phrack article for smashing the stack: http://www.csm.ornl.gov/~dunigan/smash.txt

Heres an article called

"Writing buffer overflow exploits - a tutorial for beginners", its pretty decent and fairly comprehensible. http://mixter.void.ru/exploit.html

link|flag
vote up -1 vote down

getting the hang of it. compiling code that overflows and then learning how to manipulate it to execute some other code - this was supposed to be an answer to sasb's question...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.