mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
34 lines
952 B
Bash
34 lines
952 B
Bash
#!/bin/sh
|
|
# Verify changed PE file after signing with Authenticode timestamping.
|
|
|
|
|
|
. $(dirname $0)/../test_library
|
|
script_path=$(pwd)
|
|
|
|
# PE file
|
|
test_name="461. Verify changed PE file after signing with Authenticode timestamping"
|
|
printf "\n%s\n" "$test_name"
|
|
if test -s "test.exe" && ! grep -q "no libcurl available" "results.log"
|
|
then
|
|
../../osslsigncode sign -h sha256 \
|
|
-st "1556668800" \
|
|
-certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \
|
|
-t http://time.certum.pl/ \
|
|
-t http://timestamp.digicert.com/ \
|
|
-verbose \
|
|
-in "test.exe" -out "test_461.exe"
|
|
verify_signature "$?" "461" "exe" "fail" "@2019-09-01 12:00:00" \
|
|
"UNUSED_PATTERN" "ASCII" "Hello world!" "MODIFY"
|
|
test_result "$?" "$test_name"
|
|
else
|
|
printf "Test skipped\n"
|
|
fi
|
|
|
|
# CAB file
|
|
# Command is not supported for non-PE files
|
|
|
|
# MSI file
|
|
# Command is not supported for non-PE files
|
|
|
|
exit 0
|