About 2,890,000 results
Open links in new tab
  1. What is a buffer overflow and how do I cause one?

    A buffer overflow is basically when a crafted section (or buffer) of memory is written outside of its intended bounds. If an attacker can manage to make this happen from outside of a program it can …

  2. ORU-10027: buffer overflow, limit of 100000 bytes

    Dec 22, 2020 · ORU-10027: buffer overflow, limit of 100000 bytes Asked 4 years, 11 months ago Modified 3 years, 1 month ago Viewed 62k times

  3. How does a "stack overflow" occur and how do you prevent it?

    Feb 15, 2023 · How does a stack overflow occur and what are the ways to make sure it doesn't happen, or ways to prevent one?

  4. buffer overflow - C Code how to change return address in the code ...

    Apr 4, 2011 · This is only possible because you are sending to func () whatever is passed through the cmd-line and copying directly to a fixed size buffer. If the string you are trying to copy is bigger then …

  5. c - How does a NOP sled work? - Stack Overflow

    Apr 6, 2018 · 79 I can't find a good source that answers this question. I know that a nop sled is a technique used to circumvent stack randomization in a buffer overflow attack, but I can't get my head …

  6. sql - How to increase dbms_output buffer? - Stack Overflow

    Aug 24, 2016 · 4 When buffer size gets full. There are several options you can try: 1) Increase the size of the DBMS_OUTPUT buffer to 1,000,000 2) Try filtering the data written to the buffer - possibly …

  7. addressSanitizer: heap-buffer-overflow on address

    Jul 29, 2018 · READ of size 1 at 0x6020000000fb thread T0 If anyone can explain me in a general sense: what is fsanitizer=address flag? what is heap-buffer-overflow? what is address and thread? …

  8. What's the source of this enigmatic *** buffer overflow detected ...

    Jan 3, 2022 · nfds = ares_fds(channel, &read_fds, &write_fds); I fail to see how there is a buffer overflow in that line of code. Any ideas what I can do further to debug this and find and fix the problem. For …

  9. Does buffer-overflow causes segfault only when an important pointer …

    Aug 17, 2017 · An expertly crafted buffer overflow will cause arbitrary code execution, which might end with exit(0); as opposed to an invalid access to memory and a signal being thrown. You can see …

  10. C# creating buffer overflow - Stack Overflow

    Apr 2, 2011 · 6 The traditional attack that exploits a buffer overflow overflows a stack buffer; you are overflowing a heap buffer. It is a lot easier to see a write to one buffer smashing another buffer when …