-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1394 from SEKOIA-IO/lv/cisco_parse_anyconnect
Cisco - add new events
- Loading branch information
Showing
5 changed files
with
183 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"input": { | ||
"message": "%FTD-5-109201: UAUTH: Session=0x00fee000, User=User_Acme, Assigned IP=1.2.3.4, Succeeded adding entry." | ||
}, | ||
"expected": { | ||
"message": "%FTD-5-109201: UAUTH: Session=0x00fee000, User=User_Acme, Assigned IP=1.2.3.4, Succeeded adding entry.", | ||
"event": { | ||
"category": [ | ||
"iam" | ||
], | ||
"code": "109201", | ||
"reason": "Succeeded adding entry.", | ||
"type": [ | ||
"user" | ||
] | ||
}, | ||
"action": { | ||
"target": "network-traffic" | ||
}, | ||
"observer": { | ||
"product": "Firepower Threat Defense", | ||
"vendor": "Cisco" | ||
}, | ||
"related": { | ||
"ip": [ | ||
"1.2.3.4" | ||
], | ||
"user": [ | ||
"User_Acme" | ||
] | ||
}, | ||
"source": { | ||
"address": "1.2.3.4", | ||
"ip": "1.2.3.4" | ||
}, | ||
"user": { | ||
"name": "User_Acme" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"input": { | ||
"message": "%FTD-6-113004: AAA user authorization Successful : server = 1.2.3.4 : user = User_Acme" | ||
}, | ||
"expected": { | ||
"message": "%FTD-6-113004: AAA user authorization Successful : server = 1.2.3.4 : user = User_Acme", | ||
"event": { | ||
"category": [ | ||
"authentication" | ||
], | ||
"code": "113004", | ||
"outcome": "success", | ||
"type": [ | ||
"start" | ||
] | ||
}, | ||
"action": { | ||
"target": "network-traffic" | ||
}, | ||
"destination": { | ||
"address": "1.2.3.4", | ||
"ip": "1.2.3.4" | ||
}, | ||
"observer": { | ||
"product": "Firepower Threat Defense", | ||
"vendor": "Cisco" | ||
}, | ||
"related": { | ||
"ip": [ | ||
"1.2.3.4" | ||
], | ||
"user": [ | ||
"User_Acme" | ||
] | ||
}, | ||
"user": { | ||
"name": "User_Acme" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"input": { | ||
"message": "%FTD-4-113019: Group = MyGroup, Username = User_Acme, IP = 1.2.3.4, Session disconnected. Session Type: IKEv2, Duration: 2h:28m:09s, Bytes xmt: 54735230, Bytes rcv: 27473152, Reason: Idle Timeout" | ||
}, | ||
"expected": { | ||
"message": "%FTD-4-113019: Group = MyGroup, Username = User_Acme, IP = 1.2.3.4, Session disconnected. Session Type: IKEv2, Duration: 2h:28m:09s, Bytes xmt: 54735230, Bytes rcv: 27473152, Reason: Idle Timeout", | ||
"event": { | ||
"category": [ | ||
"session" | ||
], | ||
"code": "113019", | ||
"reason": "Idle Timeout", | ||
"type": [ | ||
"end" | ||
] | ||
}, | ||
"action": { | ||
"target": "network-traffic" | ||
}, | ||
"observer": { | ||
"product": "Firepower Threat Defense", | ||
"vendor": "Cisco" | ||
}, | ||
"related": { | ||
"ip": [ | ||
"1.2.3.4" | ||
], | ||
"user": [ | ||
"User_Acme" | ||
] | ||
}, | ||
"source": { | ||
"address": "1.2.3.4", | ||
"ip": "1.2.3.4" | ||
}, | ||
"user": { | ||
"domain": "MyGroup", | ||
"name": "User_Acme" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"input": { | ||
"message": "%FTD-6-113039: Group <CLIENT_VPN> User <User_Acme> IP <192.168.91.121> AnyConnect parent session started." | ||
}, | ||
"expected": { | ||
"message": "%FTD-6-113039: Group <CLIENT_VPN> User <User_Acme> IP <192.168.91.121> AnyConnect parent session started.", | ||
"event": { | ||
"category": [ | ||
"session" | ||
], | ||
"code": "113039", | ||
"reason": "AnyConnect parent session started.", | ||
"type": [ | ||
"start" | ||
] | ||
}, | ||
"action": { | ||
"target": "network-traffic" | ||
}, | ||
"observer": { | ||
"product": "Firepower Threat Defense", | ||
"vendor": "Cisco" | ||
}, | ||
"related": { | ||
"ip": [ | ||
"192.168.91.121" | ||
], | ||
"user": [ | ||
"User_Acme" | ||
] | ||
}, | ||
"source": { | ||
"address": "192.168.91.121", | ||
"ip": "192.168.91.121" | ||
}, | ||
"user": { | ||
"domain": "CLIENT_VPN", | ||
"name": "User_Acme" | ||
} | ||
} | ||
} |