-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lib: add IMSI requested heuristic #87
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some nits but LGTM
lib/src/analysis/imsi_requested.rs
Outdated
severity: Severity::Low | ||
}, | ||
message: format!( | ||
"NAS identity request detected, however it was within \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change wording to "NAS IMSI Request detected" or "nas identity request (IMSI)"
lib/src/analysis/imsi_requested.rs
Outdated
event_type: EventType::QualitativeWarning { | ||
severity: Severity::High | ||
}, | ||
message: format!("NAS identity request detected"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change wording here as well
lib/src/analysis/imsi_requested.rs
Outdated
if self.packet_num < PACKET_THRESHHOLD { | ||
return Some(Event { | ||
event_type: EventType::QualitativeWarning { | ||
severity: Severity::Low |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe medium? because its low if you just turned your device on and high otherwise.
No description provided.