mirror of https://github.com/MISP/misp-objects
Adding optional ip-src to http-request
modified existing "ip" attribute to "ip-dst", and added attribute for ip-src. This allows http-request to be used in scenarios where observed connections are source specific, not destination specific.pull/239/head
parent
3d57ee4fd2
commit
fa6fe463a9
|
@ -61,7 +61,7 @@
|
|||
"ui-priority": 1,
|
||||
"misp-attribute": "hostname"
|
||||
},
|
||||
"ip": {
|
||||
"ip-dst": {
|
||||
"categories": [
|
||||
"Network activity",
|
||||
"Payload delivery"
|
||||
|
@ -70,6 +70,15 @@
|
|||
"ui-priority": 1,
|
||||
"misp-attribute": "ip-dst"
|
||||
},
|
||||
"ip-src": {
|
||||
"categories": [
|
||||
"Network activity",
|
||||
"Payload delivery"
|
||||
],
|
||||
"description": "The IP address of the client",
|
||||
"ui-priority": 1,
|
||||
"misp-attribute": "ip-src"
|
||||
},
|
||||
"method": {
|
||||
"categories": [
|
||||
"Network activity"
|
||||
|
|
Loading…
Reference in New Issue