add config option and documentation

This commit is contained in:
Cooper Quintin
2025-07-16 12:51:34 -07:00
committed by Will Greenberg
parent b923d9d5a6
commit fbac464b46
4 changed files with 16 additions and 1 deletions

View File

@@ -183,6 +183,18 @@
Null Cipher Heuristic
</label>
</div>
<div class="flex items-center">
<input
id="nas_null_cipher"
type="checkbox"
bind:checked={config.analyzers.nas_null_cipher}
class="h-4 w-4 text-rayhunter-blue focus:ring-rayhunter-blue border-gray-300 rounded"
/>
<label for="nas_null_cipher" class="ml-2 block text-sm text-gray-700">
NAS Null Cipher Heuristic
</label>
</div>
</div>
</div>

View File

@@ -6,6 +6,7 @@ export interface AnalyzerConfig {
connection_redirect_2g_downgrade: boolean;
lte_sib6_and_7_downgrade: boolean;
null_cipher: boolean;
nas_null_cipher: boolean;
}
export interface Config {