Serverless SOAR (Security Orchestration, Automation and Response) framework for automatic inspection and evaluation of security alert.
DeepAlert receives a security alert that is event of interest from security view point and responses the alert automatically. DeepAlert has 3 parts of automatic response.
- Inspector investigates entities that are appeared in the alert including IP address, Domain name and store a result: reputation, history of malicious activities, associated cloud instance and etc. Following components are already provided to integrate with your DeepAlert environment. Also you can create own inspector to check logs that is stored into original log storage or log search system.
- Reviewer receives the alert with result(s) of Inspector and evaluate severity of the alert. Reviewer should be written by each security operator/administrator of your organization because security policies are differ from organization to organization.
- Emitter finally receives the alert with result of Reviewer's severity evaluation. After that, Emitter sends external integrated system. E.g. PagerDuty, Slack, Github Enterprise, etc. Also automatic quarantine can be configured by AWS Lambda function.
- Tools
aws-cdk>= 1.75.0go>= 1.26node>= 14.7.0npm>= 6.14.9
- Credential
- AWS CLI credential to deploy CloudFormation. See here for more detail.
At first, you need to create AWS CDK repository and install deepalert as a npm module.
$ mkdir your-stack
$ cd your-stack
$ cdk init --language typescript
$ npm i @deepalert/deepalertThen, edit ./bin/your-stack.ts as following.
#!/usr/bin/env node
import 'source-map-support/register';
import * as cdk from '@aws-cdk/core';
import { DeepAlertStack } from '@deepalert/deepalert';
const app = new cdk.App();
new DeepAlertStack(app, 'YourDeepAlert', {});Build the Lambda binaries first, then deploy:
$ make build
$ cdk deploy{
"detector": "your-anti-virus",
"rule_name": "detected malware",
"rule_id": "detect-malware-by-av",
"alert_key": "xxxxxxxx",
"timestamp": "2006-01-02T15:03:04Z",
"attributes": [
{
"type": "ipaddr",
"key": "IP address of detected machine",
"value": "10.2.3.4",
"context": [
"local",
"client"
],
},
]
}detector: Subject name of monitoring systemrule_id: Machine readable rule identitytimestamp: Detected timestamprule_name(optional): Human readable rule namealert_key(optional): Alert aggregation key if you needattributes(optional): List ofattributetype: Choose fromipaddr,domain,username,filehashvalue,jsonandurlkey: Label of the valuevalue: Actual valuecontext: One or multiple tags describe context of the attribute. SeeAttrContextin alert.go
apikey.json is created in CWD when running cdk deploy and it has X-API-KEY to access deepalert API.
$ export AWS_REGION=ap-northeast-1 # set your region
$ export API_KEY=`cat apikey.json | jq '.["X-API-KEY"]' -r`
$ export API_ID=`aws cloudformation describe-stack-resources --stack-name YourDeepAlert | jq -r '.StackResources[] | select(.ResourceType == "AWS::ApiGateway::RestApi") | .PhysicalResourceId'`
$ curl -X POST \
-H "X-API-KEY: $API_KEY" \
https://$API_ID.execute-api.$AWS_REGION.amazonaws.com/prod/api/v1/alert \
-d '{
"detector": "your-anti-virus",
"rule_name": "detected malware",
"rule_id": "detect-malware-by-av",
"alert_key": "xxxxxxxx"
}'$ export QUEUE_URL=`aws cloudformation describe-stack-resources --stack-name YourDeepAlert | jq -r '.StackResources[] | select(.LogicalResourceId | startswith("alertQueue")) | .PhysicalResourceId'`
$ aws sqs send-message --queue-url $QUEUE_URL --message-body '{
"detector": "your-anti-virus",
"rule_name": "detected malware",
"rule_id": "detect-malware-by-av",
"alert_key": "xxxxxxxx"
}'See examples and deploy it as Lambda Function.
- Inspector example: ./examples/inspector
- Emitter example: ./examples/emitter
$ go test ./...
Integration tests require a deployed AWS stack and are excluded from go test ./... by default. Move to ./test/workflow/ and run the following to deploy the test stack and execute the integration tests.
$ npm i
$ make deploy
$ make testTo run the integration tests directly without make:
$ go test -tags integration -count=1 -v ./test/workflow/...MIT License

