Specify the maximum NumberOfSections value

This commit is contained in:
olszomal 2023-02-07 14:36:44 +01:00 committed by Michał Trojnara
parent 41e6042c26
commit 83e47e0252

View File

@ -1594,7 +1594,7 @@ static u_char *pe_calc_page_hash(char *indata, uint32_t header_size,
BIO *bhash; BIO *bhash;
/* NumberOfSections indicates the size of the section table, /* NumberOfSections indicates the size of the section table,
* which immediately follows the headers. */ * which immediately follows the headers, can be up to 65535 under Vista and later */
nsections = GET_UINT16_LE(indata + header_size + 6); nsections = GET_UINT16_LE(indata + header_size + 6);
if (nsections == 0 || nsections > UINT16_MAX) { if (nsections == 0 || nsections > UINT16_MAX) {
printf("Corrupted number of sections: 0x%08X\n", nsections); printf("Corrupted number of sections: 0x%08X\n", nsections);