mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 17:08:05 -05:00
Calculate correct PE checksum instead of setting it to 0.
Patch provided by Roland Schwingel.
This commit is contained in:
parent
7485a6b7a4
commit
09c664791b
1
TODO
1
TODO
@ -4,7 +4,6 @@
|
|||||||
- verify signatures
|
- verify signatures
|
||||||
- remove mmap usage to increase portability
|
- remove mmap usage to increase portability
|
||||||
- tests
|
- tests
|
||||||
- calculate correct PE checksum instead of setting it to 0
|
|
||||||
- fix other stuff marked 'XXX'
|
- fix other stuff marked 'XXX'
|
||||||
- free memory properly :)
|
- free memory properly :)
|
||||||
|
|
||||||
|
@ -534,6 +534,32 @@ static void get_indirect_data_blob(u_char **blob, int *len, const EVP_MD *md, in
|
|||||||
i2d_SpcIndirectDataContent(idc, &p);
|
i2d_SpcIndirectDataContent(idc, &p);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void recalc_pe_checksum(BIO *outdata, unsigned int peheader)
|
||||||
|
{
|
||||||
|
unsigned int checkSum = 0;
|
||||||
|
unsigned short val;
|
||||||
|
unsigned int size = 0;
|
||||||
|
|
||||||
|
/* First set current checksum to 0. */
|
||||||
|
(void)BIO_seek(outdata, peheader + 88);
|
||||||
|
BIO_write(outdata, &checkSum, 4);
|
||||||
|
|
||||||
|
/* recalc checksum. */
|
||||||
|
(void)BIO_seek(outdata, 0);
|
||||||
|
while (BIO_read(outdata, &val, 2) == 2) {
|
||||||
|
checkSum += val;
|
||||||
|
checkSum = 0xffff & (checkSum + (checkSum >> 0x10));
|
||||||
|
size += 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
checkSum = 0xffff & (checkSum + (checkSum >> 0x10));
|
||||||
|
checkSum += size;
|
||||||
|
|
||||||
|
/* write back checksum. */
|
||||||
|
(void)BIO_seek(outdata, peheader + 88);
|
||||||
|
BIO_write(outdata, &checkSum, 4);
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
BIO *btmp, *sigdata, *hash, *outdata;
|
BIO *btmp, *sigdata, *hash, *outdata;
|
||||||
@ -751,7 +777,7 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Create outdata file */
|
/* Create outdata file */
|
||||||
outdata = BIO_new_file(outfile, "wb");
|
outdata = BIO_new_file(outfile, "w+b");
|
||||||
if (outdata == NULL)
|
if (outdata == NULL)
|
||||||
DO_EXIT_1("Failed to create file: %s\n", outfile);
|
DO_EXIT_1("Failed to create file: %s\n", outfile);
|
||||||
|
|
||||||
@ -991,6 +1017,7 @@ int main(int argc, char **argv)
|
|||||||
BIO_write(outdata, buf, 4);
|
BIO_write(outdata, buf, 4);
|
||||||
PUT_UINT32_LE(len+8+padlen, buf);
|
PUT_UINT32_LE(len+8+padlen, buf);
|
||||||
BIO_write(outdata, buf, 4);
|
BIO_write(outdata, buf, 4);
|
||||||
|
recalc_pe_checksum(outdata, peheader);
|
||||||
} else {
|
} else {
|
||||||
(void)BIO_seek(outdata, 0x30);
|
(void)BIO_seek(outdata, 0x30);
|
||||||
PUT_UINT32_LE(len+padlen, buf);
|
PUT_UINT32_LE(len+padlen, buf);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user