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

Enhancement to load_balancer object #1138

Merged
merged 12 commits into from
Jul 26, 2024
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,14 @@ Thankyou! -->
1. Added `ext` to `File` object. #1046
2. Added `account`, `device`, `email`, `url`, `user` to `evidences` in detection finding. #1000
3. Added `state_id`, `state` to `Digital Signature` object. #1069
4. Added `domain` to `Uniform Resource Locator` object. #1096
5. Added `reg_key` and `reg_value` to `Evidence Artifacts` object. #1078
6. Added `type_id` and associated entity objects to `Managed Entity`. #1094
7. Added `vendor_name`, `type`, `type_id` to object `package`. #1093
4. Added `ticket` to `Incident Finding` object. ticket. #1068
pagbabian-splunk marked this conversation as resolved.
Show resolved Hide resolved
5. Added `domain` to `Uniform Resource Locator` object. #1096
6. Added `reg_key` and `reg_value` to `Evidence Artifacts` object. #1078
7. Added `type_id` and associated entity objects to `Managed Entity`. #1094
8. Added `vendor_name`, `type`, `type_id` to object `package`. #1093
8. Added `router`, `ids`, and `ips` entries to `type_id` enum in the `Endpoint` object. #1121
9. Added `job` to `Evidence Artifacts` object. #1130
10. Added `ip` to object `load_balancer`. #1138
* #### Platform Extensions

### Bugfixes
Expand Down
4 changes: 4 additions & 0 deletions objects/endpoint.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@
"14": {
"caption": "IPS",
"description": "An <a target='_blank' href='https://d3fend.mitre.org/dao/artifact/d3f:IntrusionPreventionSystem/'>intrusion prevention system</a>."
},
"15": {
"caption": "Load Balancer",
"description": "A <a target='_blank' href='https://en.wikipedia.org/wiki/Load_balancing_(computing)'> Load Balancer device."
}
},
"requirement": "recommended"
Expand Down
6 changes: 5 additions & 1 deletion objects/load_balancer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@
"caption": "Classification",
"description": "The request classification as defined by the load balancer.",
"requirement": "optional"
},
},
"ip": {
"description": "The IP address of the load balancer node that handled the client request (Note: this is not an address of the target/distribution endpoint - see <code>dst_endpoint</code>).",
"requirement": "optional"
},
"status_detail": {
"caption": "Status Detail",
"description": "The status detail contains additional status information about the load balancer distribution event.",
Expand Down
Loading