forked from SEKOIA-IO/intake-formats
-
Notifications
You must be signed in to change notification settings - Fork 0
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 SEKOIA-IO#1096 from SEKOIA-IO/feat/parse_more_open…
…ssh_events Parse more OpenSSH events
- Loading branch information
Showing
32 changed files
with
757 additions
and
112 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
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 |
---|---|---|
@@ -1,12 +1,6 @@ | ||
{ | ||
"input": { | ||
"message": " Accepted publickey for [email protected] from 1.2.3.4 port 59294 ssh2: ED25519 SHA256:AbpHGcgLb+kRsJGnwFEktk7uzpZOCcBY74+YBdrKVGs=", | ||
"sekoiaio": { | ||
"intake": { | ||
"dialect": "OpenSSH", | ||
"dialect_uuid": "b28db14b-e3a7-463e-8659-9bf0e577944f" | ||
} | ||
} | ||
"message": " Accepted publickey for [email protected] from 1.2.3.4 port 59294 ssh2: ED25519 SHA256:AbpHGcgLb+kRsJGnwFEktk7uzpZOCcBY74+YBdrKVGs=" | ||
}, | ||
"expected": { | ||
"message": " Accepted publickey for [email protected] from 1.2.3.4 port 59294 ssh2: ED25519 SHA256:AbpHGcgLb+kRsJGnwFEktk7uzpZOCcBY74+YBdrKVGs=", | ||
|
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,32 @@ | ||
{ | ||
"input": { | ||
"message": " Accepted key RSA SHA256:3cOMdwjvSk5BnU2zs6397YpKn/SNSVSAMtsQchY8dOo found at /home/star/.ssh/authorized_keys:2" | ||
}, | ||
"expected": { | ||
"message": " Accepted key RSA SHA256:3cOMdwjvSk5BnU2zs6397YpKn/SNSVSAMtsQchY8dOo found at /home/star/.ssh/authorized_keys:2", | ||
"event": { | ||
"category": [ | ||
"authentication" | ||
], | ||
"outcome": "success", | ||
"type": [ | ||
"start" | ||
] | ||
}, | ||
"action": { | ||
"name": "session", | ||
"outcome": "success", | ||
"outcome_reason": "Accepted key RSA SHA256:3cOMdwjvSk5BnU2zs6397YpKn/SNSVSAMtsQchY8dOo found at /home/star/.ssh/authorized_keys:2", | ||
"target": "user", | ||
"type": "open" | ||
}, | ||
"observer": { | ||
"product": "openssh", | ||
"type": "server", | ||
"vendor": "openbsd project" | ||
}, | ||
"process": { | ||
"name": "sshd" | ||
} | ||
} | ||
} |
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,32 @@ | ||
{ | ||
"input": { | ||
"message": " Accepted key RSA SHA256:3cOMdwjvSk5BnU2zs6397YpKn/SNSVSAMtsQchY8dOo found at /usr/local/nagios/.ssh/authorized_keys:1" | ||
}, | ||
"expected": { | ||
"message": " Accepted key RSA SHA256:3cOMdwjvSk5BnU2zs6397YpKn/SNSVSAMtsQchY8dOo found at /usr/local/nagios/.ssh/authorized_keys:1", | ||
"event": { | ||
"category": [ | ||
"authentication" | ||
], | ||
"outcome": "success", | ||
"type": [ | ||
"start" | ||
] | ||
}, | ||
"action": { | ||
"name": "session", | ||
"outcome": "success", | ||
"outcome_reason": "Accepted key RSA SHA256:3cOMdwjvSk5BnU2zs6397YpKn/SNSVSAMtsQchY8dOo found at /usr/local/nagios/.ssh/authorized_keys:1", | ||
"target": "user", | ||
"type": "open" | ||
}, | ||
"observer": { | ||
"product": "openssh", | ||
"type": "server", | ||
"vendor": "openbsd project" | ||
}, | ||
"process": { | ||
"name": "sshd" | ||
} | ||
} | ||
} |
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,28 @@ | ||
{ | ||
"input": { | ||
"message": "main: sshd: ssh-rsa algorithm is disabled" | ||
}, | ||
"expected": { | ||
"message": "main: sshd: ssh-rsa algorithm is disabled", | ||
"event": { | ||
"category": [ | ||
"configuration" | ||
], | ||
"outcome": "success", | ||
"type": [ | ||
"info" | ||
] | ||
}, | ||
"action": { | ||
"outcome_reason": "main: sshd: ssh-rsa algorithm is disabled" | ||
}, | ||
"observer": { | ||
"product": "openssh", | ||
"type": "server", | ||
"vendor": "openbsd project" | ||
}, | ||
"process": { | ||
"name": "sshd" | ||
} | ||
} | ||
} |
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
Oops, something went wrong.