mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
check PE file size
This commit is contained in:
parent
860e8d6f4e
commit
95615faf1d
@ -3536,8 +3536,8 @@ static int pe_verify_header(char *indata, char *infile, uint32_t filesize, FILE_
|
||||
printf("Unexpected SizeOfHeaders field: 0x%08X\n", header->header_size);
|
||||
return 0; /* FAILED */
|
||||
}
|
||||
if (filesize < header->header_size + 160) {
|
||||
printf("Corrupt DOS file - too short: %s\n", infile);
|
||||
if (filesize < header->header_size + 176) {
|
||||
printf("Corrupt PE file - too short: %s\n", infile);
|
||||
return 0; /* FAILED */
|
||||
}
|
||||
if (memcmp(indata + header->header_size, "PE\0\0", 4)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user