mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
Specify the maximum SizeOfOptionalHeader value
This commit is contained in:
parent
33c1fdaa85
commit
41e6042c26
@ -1625,10 +1625,11 @@ static u_char *pe_calc_page_hash(char *indata, uint32_t header_size,
|
|||||||
printf("Corrupted headers size: 0x%08X\n", hdrsize);
|
printf("Corrupted headers size: 0x%08X\n", hdrsize);
|
||||||
return NULL; /* FAILED */
|
return NULL; /* FAILED */
|
||||||
}
|
}
|
||||||
/* SizeOfOptionalHeader is she size of the optional header, which is
|
/* SizeOfOptionalHeader is the size of the optional header, which is
|
||||||
* required for executable files, but for object files should be zero. */
|
* required for executable files, but for object files should be zero,
|
||||||
|
* and can't be bigger than the file */
|
||||||
opthdr_size = GET_UINT16_LE(indata + header_size + 20);
|
opthdr_size = GET_UINT16_LE(indata + header_size + 20);
|
||||||
if (opthdr_size == 0 || opthdr_size > UINT16_MAX) {
|
if (opthdr_size == 0 || opthdr_size > sigpos) {
|
||||||
printf("Corrupted optional header size: 0x%08X\n", opthdr_size);
|
printf("Corrupted optional header size: 0x%08X\n", opthdr_size);
|
||||||
return NULL; /* FAILED */
|
return NULL; /* FAILED */
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user