We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 627c76d + c05c444 commit 21f1863Copy full SHA for 21f1863
4 files changed
src/analyzer/security/config.rs
@@ -100,6 +100,10 @@ impl Default for SecurityAnalysisConfig {
100
".vercel".to_string(),
101
".netlify".to_string(),
102
103
+ // Python virtual environments
104
+ "venv/".to_string(),
105
+ ".venv/".to_string(),
106
+
107
// Minified and bundled files
108
"*.min.js".to_string(),
109
"*.min.css".to_string(),
@@ -143,6 +147,11 @@ impl Default for SecurityAnalysisConfig {
143
147
"*.woff2".to_string(),
144
148
"*.eot".to_string(),
145
149
150
+ // Database & Certificate files
151
+ "*.wt".to_string(),
152
+ "*.cer".to_string(),
153
+ "*.jks".to_string(),
154
146
155
// Test and example files
156
"*_sample.*".to_string(),
157
"*example*".to_string(),
src/analyzer/security/turbo/file_discovery.rs
@@ -438,6 +438,7 @@ impl FileDiscovery {
438
"coverage", "__pycache__", ".pytest_cache", ".mypy_cache",
439
"vendor", "packages", ".bundle", "bower_components",
440
".nuxt", ".output", ".vercel", ".netlify", ".vscode", ".idea",
441
+ ".venv", "venv", // Python virtual environments
442
];
443
444
for dir in always_ignore {
@@ -478,9 +479,9 @@ impl FileDiscovery {
478
479
"pdf", "doc", "docx", "xls", "xlsx", "ppt", "pptx",
480
"odt", "ods", "odp", "rtf",
481
// Databases
- "db", "sqlite", "sqlite3", "mdb", "accdb",
482
+ "db", "sqlite", "sqlite3", "mdb", "accdb", "wt",
483
// Other binary formats
- "pyc", "pyo", "class", "jar", "war", "ear",
484
+ "pyc", "pyo", "class", "jar", "war", "ear", "cer", "jks",
485
486
487
for ext in binary_exts {
0 commit comments