mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-03 17:26:57 +01:00
scripts: verify version in manifest
To make a downgrade attack harder, we also check that the version string is contained in the manifest, on the same line as the hash.
This commit is contained in:
parent
5bafff2cf2
commit
d7d1574095
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ function check_hash() {
|
|||
fi
|
||||
fi
|
||||
|
||||
if ! grep -q "^$SUM" "$TEMP_DIR/$MANIFEST"; then
|
||||
if ! grep "^$SUM" "$TEMP_DIR/$MANIFEST" | grep -q "$VERSION"; then
|
||||
echo "ERROR: Hash $SUM for $2 not found in $MANIFEST: "
|
||||
cat "$TEMP_DIR/$MANIFEST"
|
||||
echo " The expected release binaries have been verified with the developer "
|
||||
|
|
Loading…
Add table
Reference in a new issue