11 Star 0 Fork 6

src-openEuler/mingw-binutils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
binutils-CVE-2022-38533.patch 808 Bytes
一键复制 编辑 原始数据 按行查看 历史
xuguangmin 提交于 2024-07-19 09:29 . Fix CVE-2022-38533
commit ef186fe54aa6d281a3ff8a9528417e5cc614c797
Author: Alan Modra <[email protected]>
Date: Sat Aug 13 15:32:47 2022 +0930
PR29482 - strip: heap-buffer-overflow
PR 29482
* coffcode.h (coff_set_section_contents): Sanity check _LIB.
diff --git a/bfd/coffcode.h b/bfd/coffcode.h
index 67aaf158ca1..52027981c3f 100644
--- a/bfd/coffcode.h
+++ b/bfd/coffcode.h
@@ -4302,10 +4302,13 @@ coff_set_section_contents (bfd * abfd,
rec = (bfd_byte *) location;
recend = rec + count;
- while (rec < recend)
+ while (recend - rec >= 4)
{
+ size_t len = bfd_get_32 (abfd, rec);
+ if (len == 0 || len > (size_t) (recend - rec) / 4)
+ break;
+ rec += len * 4;
++section->lma;
- rec += bfd_get_32 (abfd, rec) * 4;
}
BFD_ASSERT (rec == recend);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/mingw-binutils.git
[email protected]:src-openeuler/mingw-binutils.git
src-openeuler
mingw-binutils
mingw-binutils
master

搜索帮助