ion-storm / AZSentinel

PowerShell module for Azure Sentinel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Azure Sentinel

Azure Sentinel is a cloud-native SIEM that provides intelligent security analytics for your entire enterprise at cloud scale. Get limitless cloud speed and scale to help focus on what really matters. Easily collect data from all your cloud or on-premises assets, Office 365, Azure resources, and other clouds. Effectively detect threats with built-in machine learning from Microsoft’s security analytics experts. Automate threat response, using built-in orchestration and automation playbooks. read more

Why this PowerShell Module

At the moment there is no documented API, ARM or PowerShell module to configure Azure Sentinel. After doing some research we were able to find the API's that are currently being used by the Azure Portal and based on that we've written a PowerShell module to manage Azure Sentinel through PowerShell.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisities

Installing

A step by step guide how to install module

Import-Module .\AzSentinel -Force

Usage

Parameters

See docs folder for documentation regarding the Functions and the available parameters

JSON format

To create a Azure Sentinel Rule, use the following JSON format.

{
    "analytics": [
        {
            "displayName": "string",
            "description": "string",
            "severity": "High",
            "enabled": true,
            "query": "SecurityEvent | where EventID == \"4688\" | where CommandLine contains \"-noni -ep bypass $\"",
            "queryFrequency": "5H",
            "queryPeriod": "5H",
            "triggerOperator": "GreaterThan",
            "triggerThreshold": 5,
            "suppressionDuration": "6H",
            "suppressionEnabled": false,
        }
    ]
}

Property values

The following tables describe the values you need to set in the schema.

Name Type Required Allowed Values Example
displayName string yes * DisplayName
description string yes * Description
severity string yes Medium, High, Low, Informational Medium
enabled bool yes true, false true
query string yes special character need to be escaped by \ SecurityEvent | where EventID == "4688" | where CommandLine contains \"-noni -ep bypass $\"
queryFrequency string yes Value must be between 5 minutes and 24 hours 5H
queryPeriod string yes Value must be between 5 minutes and 24 hours 1440M
triggerOperator string yes GreaterThan, FewerThan, EqualTo, NotEqualTo GreaterThan
triggerThreshold int yes The value must be between 0 and 10000 5
suppressionDuration string yes Value must be between 5 minutes and 24 hours 11H
suppressionEnabled bool yes true, false true

Find us

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments

  • Hat tip to anyone whose code was used

About

PowerShell module for Azure Sentinel

License:MIT License


Languages

Language:PowerShell 100.0%