Skip to content

Commit 224c26b

Browse files
authored
update: fixed regex from detecting exe_type as gobinaries in elf binaries (#139)
1 parent 77cf6e0 commit 224c26b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blint/lib/binary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,7 @@ def add_rdata_symbols(metadata, rdata_section, text_section, sections):
12951295
Returns:
12961296
The updated metadata dictionary.
12971297
"""
1298-
file_extns_from_rdata = r".*\.(go|s|dll|exe|pdb)"
1298+
file_extns_from_rdata = r".*\.(go|s|dll|exe|pdb)(\s|$)"
12991299
rdata_symbols = set()
13001300
pii_symbols = []
13011301
first_stage_symbols = []

0 commit comments

Comments
 (0)