We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6204bc0 commit e79dc4aCopy full SHA for e79dc4a
lib/src/analysis/analyzer.rs
@@ -121,7 +121,11 @@ impl Harness {
121
harness.add_analyzer(Box::new(ImsiRequestedAnalyzer::new()));
122
harness.add_analyzer(Box::new(ConnectionRedirect2GDowngradeAnalyzer{}));
123
harness.add_analyzer(Box::new(LteSib6And7DowngradeAnalyzer{}));
124
- harness.add_analyzer(Box::new(NullCipherAnalyzer{}));
+
125
+ // FIXME: our RRC parser is reporting false positives for this due to an
126
+ // upstream hampi bug (https://github.com/ystero-dev/hampi/issues/133).
127
+ // once that's fixed, we should regenerate our parser and re-enable this
128
+ // harness.add_analyzer(Box::new(NullCipherAnalyzer{}));
129
130
harness
131
}
0 commit comments