Skip to content

Commit 9e2e562

Browse files
committed
Fix CVE-2018-12356 by hardening the regex.
1 parent be27048 commit 9e2e562

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/verify-commits/gpg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ if ! $VALID; then
5757
exit 1
5858
fi
5959
if $VALID && $REVSIG; then
60-
printf '%s\n' "$INPUT" | gpg --trust-model always "$@" 2>/dev/null | grep "\[GNUPG:\] \(NEWSIG\|SIG_ID\|VALIDSIG\)"
60+
printf '%s\n' "$INPUT" | gpg --trust-model always "$@" 2>/dev/null | grep "^\[GNUPG:\] \(NEWSIG\|SIG_ID\|VALIDSIG\)"
6161
echo "$GOODREVSIG"
6262
else
6363
printf '%s\n' "$INPUT" | gpg --trust-model always "$@" 2>/dev/null

0 commit comments

Comments
 (0)