mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
43 lines
2.4 KiB
Markdown
43 lines
2.4 KiB
Markdown
security-content 
|
|
=====
|
|
|
|
Contains a collection of security stories with their corresponding detection, investigative, contexual and support splunk searches
|
|
|
|
| branch | build status |
|
|
| --- | --- |
|
|
| develop| [](https://circleci.com/gh/splunk/security-content/tree/develop)|
|
|
| master | [](https://circleci.com/gh/splunk/security-content/tree/master)|
|
|
|
|
# Usage
|
|
Can be consumed using:
|
|
|
|
#### [API](https://github.com/splunk/security-content-api)
|
|
`curl https://g7jbilqdth.execute-api.us-west-2.amazonaws.com/api/`
|
|
|
|
#### [CLI](https://github.com/splunk/security-content-api/blob/master/content-update.py)
|
|
`python content-update.py -o $SPLUNK_HOME/etc/apps/DA-ESS-ContentUpdate --splunk_user admin --splunk_password xxxx`
|
|
|
|
# Structure
|
|
* [stories/](stories/) - contains all analytics stories/use cases for ESCU
|
|
* [detections/](detections/) - splunk, uba and phantom detections that power stories
|
|
* [investigations/](investigations/) - splunk, and phantom investigation content that are used in stories
|
|
* [responses/](responses/) - automated splunk and phantom responses that are used in stories
|
|
* [baselines/](baselines/) - phantom and Splunk baseline needed to support detections in stories
|
|
* [src/](src/) - splunk content app source files, includes lookups, binaries, and defaul config files
|
|
* [bin/](bin/) - where all binaries to produce, and test content lives
|
|
* [spec/](spec/) - location of all spec files that describe ESCU content
|
|
* [docs/](docs/) - documentation for all of the spec files
|
|
|
|
# Developing
|
|
For getting pre-commit checks, install the hooks see below for steps:
|
|
1. Install circleci [CLI Tool](https://circleci.com/docs/2.0/local-cli/#installation)
|
|
2. create virtualenv and install requirements: `virtualenv venv && source venv/bin/activate && pip install -r requirements.txt`
|
|
3. install pre-commit `pre-commit install`
|
|
|
|
To test a local change to CI or build make sure you are running docker and then
|
|
`circleci local execute -e GITHUB_TOKEN=$GITHUB_TOKEN --branch <your branch>`
|
|
|
|
To generate docs from schema automatically
|
|
1. install https://github.com/adobe/jsonschema2md
|
|
2. `jsonschema2md -d spec/v2/detections.json.spec -o docs`
|