堆喷射、堆溢出、堆溢出之间有什么区别?

发布于 2024-07-15 06:58:20 字数 88 浏览 4 评论 0原文

堆喷射、堆溢出、堆溢出之间有什么区别?

这些术语可以用缓冲区喷射、缓冲区溢出、缓冲区溢出来代替吗?

它们也有相同的定义吗?

What is the difference among heap spraying, heap overflow, heap overrun?

Can those terms be replaced with buffer spraying, buffer overflow, buffer overrun?

Do they have the same definitions as well?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鲸落 2024-07-22 06:58:20
  • 喷射是将内容写入命名空间中的随机(或至少任意)地址,从而破坏空间中的任意内容
  • 溢出是在空间中放入比其所能容纳的更多的数据,从而破坏相邻空间
  • 溢出是在子集中放入更多数据的空间(例如,在该空间中分配的对象)比为该子集分配的空间的多,因此破坏了相邻对象。
  • Spraying is writing things to random (or at least arbitrary) addresses in the named space, thus corrupting arbitrary things in the space
  • Overflow is putting more data in the space than it will hold, thus corrupting adjacent spaces
  • Overrun is putting more data in a subset of the space (e.g. an object allocated in that space) than has been allocated for that subset, thus corrupting adjacent objects.
虚拟世界 2024-07-22 06:58:20

“堆”通常指动态分配的内存。 “缓冲区”可以位于堆上,但也可以是静态的或驻留在堆栈上。

"Heap" usually refers to dynamically allocated memory. A "Buffer" may lie on the heap, but may also be static or reside on the stack.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文