Skip to content

Commit 9e1e30d

Browse files
committed
Allow toolchain URLs in binary string audit (static build artifacts)
gcc/glibc embed bug tracker URLs (bugs.launchpad.net, gcc.gnu.org, sourceware.org) into statically-linked binaries. These are compiler artifacts, not our code.
1 parent 2b28c45 commit 9e1e30d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/security-strings.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ ALLOWED_URLS=(
5050
# SQLite internal URLs (part of vendored sqlite3 strings)
5151
"https://sqlite.org"
5252
"https://www.sqlite.org"
53+
# Toolchain URLs embedded by compiler/linker in static builds
54+
"https://bugs.launchpad.net"
55+
"https://gcc.gnu.org"
56+
"https://sourceware.org"
5357
)
5458

5559
while IFS= read -r url; do

0 commit comments

Comments
 (0)