add test analyzer

This commit is contained in:
Cooper Quintin
2025-08-20 12:01:25 -07:00
committed by Cooper Quintin
parent 33e4fbc544
commit ffdad4aed8
5 changed files with 80 additions and 0 deletions

View File

@@ -219,6 +219,18 @@
Incomplete SIB Heuristic
</label>
</div>
<div class="flex items-center">
<input
id="test_analyzer"
type="checkbox"
bind:checked={config.analyzers.test_analyzer}
class="h-4 w-4 text-rayhunter-blue focus:ring-rayhunter-blue border-gray-300 rounded"
/>
<label for="test_analyzer" class="ml-2 block text-sm text-gray-700">
Test Heuristic (noisey!)
</label>
</div>
</div>
</div>

View File

@@ -8,6 +8,7 @@ export interface AnalyzerConfig {
null_cipher: boolean;
nas_null_cipher: boolean;
incomplete_sib: boolean;
test_analyzer: boolean;
}
export interface Config {