Glossary

Buffer Overflows

Writing data beyond the boundaries of a buffer to overwrite adjacent memory, potentially including return addresses or function pointers. Stack-based buffer overflows overwrite the return address on the stack; heap-based overflows corrupt heap metadata. - **Use-After-Free** — Exploiting a program th

Learn More

Related Terms