DataStructures / Cyber Security Interview Questions
What happens when a Buffer Overflow attack occurs?
A buffer overflow happens when a program writes more data into a fixed-size memory buffer than it was allocated to hold, causing the extra bytes to spill into adjacent memory.
If that adjacent memory holds control data, like a function's return address on the stack, an attacker can craft the overflowing input to overwrite it with an address pointing to their own malicious code, hijacking the program's execution flow when the function returns.
- Can crash the application, a simple denial of service
- Can allow arbitrary code execution with the privileges of the vulnerable process
- Historically one of the most common routes to remote code execution in C and C++ software
Defenses include bounds checking, stack canaries, address space layout randomization (ASLR), and using memory-safe languages that don't allow raw buffer manipulation.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
