1 / 12

Buffer overflow and stack smashing attacks

Buffer overflow and stack smashing attacks. Principles of application software security. Buffer overflows. One of the most common vulnerabilities in software Particularly problematic when present in system libraries and other code that runs with high execution privileges. How it works.

julie
Télécharger la présentation

Buffer overflow and stack smashing attacks

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Buffer overflow and stack smashing attacks Principles of application software security Florida State University Fall 2005

  2. Buffer overflows • One of the most common vulnerabilities in software • Particularly problematic when present in system libraries and other code that runs with high execution privileges. Florida State University Fall 2005

  3. How it works • Application reserves adjacent memory locations (buffer) to store arguments to a function, or variable values. • Attacker gives an argument too long to fit in the buffer. • The application copies the whole argument, overflowing the buffer and overwriting memory space. • If the conditions are “just right” this will enable to attacker to gain control over the program flow and execute arbitrary code, with the same privileges of the original application. Florida State University Fall 2005

  4. Stack smashing <previous stack frame> • Function (sub-routine) calls results in an activation frame being pushed onto a memory area called the stack. function arguments return address previous frame pointer local variables local buffer variables Direction of stack growth Florida State University Fall 2005

  5. Memory management Stack • The stack, which contains activation frames, starts at the highest memory address allocated for the process, and grows downwards • Variable-length data (e.g., strings) that are read dynamically, are kept in the heap, which grows upwards • This arrangement maximizes flexibility of virtual memory management Direction of stack growth Direction of heap growth Heap unitialized variables initialized variables code instructions Florida State University Fall 2005

  6. How to smash <previous stack frame> • Give application a very long string with malicious code • The string length, being much larger than the space allocated in the heap (buffer size declaration) causes the heap to overflow into the stack and overwrites the return address • The return address now points to the beginning of the malicious code function arguments Return address (overwritten with entry address of malicious code) Previous frame pointer (overwritten w/ malicious code) local variables (overwritten w/ malicious code) local buffer variables (overwritten w/ malicious code) Direction of stack growth Florida State University Fall 2005

  7. Canary Guards • Like the legendary canary-in-the-mine, it detects stack smash attacks. • Inserts a “Canary value” just below the return address (Stack Guard) or just below the previous frame pointer (Stack Smashing Protector). This value gets checked right before a function returns. Florida State University Fall 2005

  8. SSP <previous stack frame> function arguments • Prevents overflow of local non-buffer variables • Canary value checking only takes place at return time, so other attacks possible return address previous frame pointer Canary value local buffer variables local non-buffer variables Direction of stack growth Florida State University Fall 2005

  9. Alternatives to canaries • Use a compiler that does full bounds checking, i.e., makes sure that the code always allocate enough memory for arguments • Like SSP, code has to be re-compiled with this compiler • Significant performance penalty (Java/C) Florida State University Fall 2005

  10. Static analysis • Use a code analyzer to detect buffer overflows • Since checking that arbitrary code does not overflow is an undecidable problem, the code must be annotated in order for this to work • Depends on programmer expertise (costly) • Some common and useful programming techniques are prohibited (performance and engineering costs) • Advantage is that the compiled code does not suffer from performance deterioration Florida State University Fall 2005

  11. Safe libraries • Many vulnerabilities in code are due to unsafe use of system libraries • An alternative is to install a kernel patch that dynamically substitutes calls to unsafe library functions for safe versions of those • Not possible for closed-source systems such as MS operating systems Florida State University Fall 2005

  12. Memory address randomization • Patch at the kernel level, changing the memory mapping • Small performance penalty, by extra memory lookups (actually, extra cache lookups) • Makes it very difficult to perform a useful buffer overflow • However, unlike some other strategies, does not improve robustness (liveness) properties Florida State University Fall 2005

More Related