Giter Site home page Giter Site logo

zhuan77241 / deepalert Goto Github PK

View Code? Open in Web Editor NEW

This project forked from cookpad/deepalert

0.0 0.0 0.0 450 KB

Serverless SOAR (Security Orchestration, Automation and Response) framework for automatic inspection and evaluation of security alert

Go 86.47% Makefile 2.24% JavaScript 2.07% TypeScript 9.22%

deepalert's Introduction

DeepAlert

Serverless SOAR (Security Orchestration, Automation and Response) framework for automatic inspection and evaluation of security alert.

Overview

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.

Overview

Deployment

Prerequisite

  • Tools
    • aws-cdk >= 1.75.0
    • go >= 1.14
    • node >= 14.7.0
    • npm >= 6.14.9
  • Credential
    • AWS CLI credential to deploy CloudFormation. See here for more detail.

Configure your stack

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/deepalert

Then, 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', {});

Deploy your stack

$ cdk deploy

Alerting

Alert data schema

{
  "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 system
  • rule_id: Machine readable rule identity
  • timestamp: Detected timestamp
  • rule_name (optional): Human readable rule name
  • alert_key (optional): Alert aggregation key if you need
  • attributes (optional): List of attribute
    • type: Choose from ipaddr, domain, username, filehashvalue, json and url
    • key: Label of the value
    • value: Actual value
    • context: One or multiple tags describe context of the attribute. See AttrContext in alert.go

Emit alert via API

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"
}'

Emit alert via SQS

$ 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"
}'

Build and deploy Reviewer

See examples and deploy it as Lambda Function.

Development

Architecture

architecture overview

Unit Test

$ go test ./...

Integration Test

Move to ./test/workflow/ and run below. Then deploy test stack and execute integration test.

$ npm i
$ make deploy
$ make test

License

MIT License

deepalert's People

Contributors

m-mizutani avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.