-
Notifications
You must be signed in to change notification settings - Fork 111
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 #1194 from splunk/support-thycotic-secret-server
feat(thycotic): support secret server
- Loading branch information
Showing
3 changed files
with
58 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Vendor - Tenable | ||
|
||
|
||
## Product - Tenable.nnm | ||
|
||
| Ref | Link | | ||
|----------------|---------------------------------------------------------------------------------------------------------| | ||
| Splunk Add-on | https://splunkbase.splunk.com/app/4060/ | | ||
| Product Manual | https://docs.tenable.com/integrations/Splunk/Content/Splunk2/ProcessWorkflow.htm | | ||
|
||
|
||
### Sourcetypes | ||
|
||
| sourcetype | notes | | ||
|----------------|---------------------------------------------------------------------------------------------------------| | ||
| thycotic:syslog | None | | ||
|
||
### Sourcetype and Index Configuration | ||
|
||
| key | sourcetype | index | notes | | ||
|----------------|----------------|----------------|----------------| | ||
| Thycotic Software_Secret Server | thycotic:syslog | netauth | none | | ||
|
||
### Filter type | ||
|
||
CEF | ||
|
||
### Options | ||
|
||
| Variable | default | description | | ||
|----------------|----------------|----------------| | ||
|
||
### Verification | ||
|
||
An active device will generate frequent events. Use the following search to validate events are present per source device | ||
|
||
``` | ||
index=<asconfigured> sourcetype=thycotic:syslog | stats count by host | ||
``` |
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
18 changes: 18 additions & 0 deletions
18
package/etc/conf.d/conflib/cef/app-cef-thycotic_secret_server.conf
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,18 @@ | ||
block parser cef-thycotic_secret_server-parser() { | ||
channel { | ||
rewrite { | ||
r_set_splunk_dest_default( | ||
index('netauth'), | ||
sourcetype('thycotic:syslog') | ||
); | ||
}; | ||
|
||
}; | ||
}; | ||
application cef-thycotic_secret_server[cef] { | ||
filter{ | ||
match("Thycotic Software" value("fields.cef_device_vendor")) | ||
and match("Secret Server" value("fields.cef_device_product")); | ||
}; | ||
parser { cef-thycotic_secret_server-parser(); }; | ||
}; |