Skip to content
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

Added new activity Listen to Network Activity and relax requirement of src_endpoint #1147

Merged
merged 2 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Thankyou! -->
4. Added `ja4_fingerprint_list` to base network event class. #834
5. Added `ticket` to `Incident Finding` event class. #1068
6. Added new activities `Enroll`, `Activate`, `Deactivate`, `Suspend`, and `Resume` to the `Entity Management` class. #1095
7. Added new activity `Listen` to `Network Activity` and relax requirement of `src_endpoint`. #1147
* #### Profiles
* #### Objects
1. Added `ext` to `File` object. #1046
Expand Down
2 changes: 1 addition & 1 deletion events/network/network.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"src_endpoint": {
"description": "The initiator (client) of the network connection.",
"group": "primary",
"requirement": "required"
"requirement": "recommended"
},
"tls": {
"group": "context",
Expand Down
4 changes: 4 additions & 0 deletions includes/network/network_activities.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
"6": {
"caption": "Traffic",
"description": "Network traffic report."
},
"7": {
"caption": "Listen",
"description": "A network endpoint began listening for new network connections."
mikeradka marked this conversation as resolved.
Show resolved Hide resolved
}
}
}
Expand Down
Loading