Skip to content

Commit

Permalink
add .BinExport extension as valid
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-tz committed Apr 4, 2024
1 parent c3e4fab commit 5c56350
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/check_sample_filenames.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,19 @@
logger = logging.getLogger("capa.tests.data")

IGNORED_EXTS = (".md", ".txt", ".git", ".gitattributes", ".gitignore", ".gitmodules", ".json")
VALID_EXTS = (".exe_", ".dll_", ".elf_", ".sys_", ".raw32", ".raw64", ".aspx_", ".cs_", ".py_", ".json.gz")
VALID_EXTS = (
".exe_",
".dll_",
".elf_",
".sys_",
".raw32",
".raw64",
".aspx_",
".cs_",
".py_",
".json.gz",
".BinExport",
)
IGNORED_DIRS = (".git", ".github", "sigs")


Expand Down

0 comments on commit 5c56350

Please sign in to comment.