Analyzing Azure Activity Logs for Threats

SkillCloud & infra

This skill lets your AI examine Azure Monitor activity logs and sign-in logs to look for signs of threats. Once added, your AI can pull up these logs and review them for suspicious activity on your behalf.

Available today. Use it from your connected AI after setup.

Add the skill, then ask your AI to check your recent Azure activity or sign-in logs for anything suspicious. It will look through the logs and tell you what it finds.

Then ask your AI: use the Analyzing Azure Activity Logs for Threats skill

What your AI can do with it

  • Search Azure Monitor activity logs
  • Search Azure sign-in logs
  • Review sign-in records for unusual activity
  • Flag activity log events that look like potential threats
  • Summarize findings from both log types in plain language

What this skill tells your AI

The instructions your AI receives, as published by 26zl/cybersec-toolkit in .claude/skills/analyzing-azure-activity-logs-for-threats/SKILL.md and read by ahel’s review.

When to Use

  • When investigating security incidents that require analyzing azure activity logs for threats
  • When building detection rules or threat hunting queries for this domain
  • When SOC analysts need structured procedures for this analysis type
  • When validating security monitoring coverage for related attack techniques

Prerequisites

  • Familiarity with security operations concepts and tools
  • Access to a test or lab environment for safe execution
  • Python 3.8+ with required dependencies installed
  • Appropriate authorization for any testing activities

Instructions

Use azure-monitor-query to execute KQL queries against Azure Log Analytics workspaces, detecting suspicious admin operations and sign-in anomalies.

from azure.identity import DefaultAzureCredential
from azure.monitor.query import LogsQueryClient
from datetime import timedelta

credential = DefaultAzureCredential()
client = LogsQueryClient(credential)

response = client.query_workspace(
    workspace_id="WORKSPACE_ID",
    query="AzureActivity | where OperationNameValue has 'MICROSOFT.AUTHORIZATION/ROLEASSIGNMENTS/WRITE' | take 10",
    timespan=timedelta(hours=24),
)

Key detection queries:

  1. Role assignment changes (privilege escalation)
  2. Resource group and subscription modifications
  3. Key vault secret access from new IPs
  4. Network security group rule changes
  5. Conditional access policy modifications

Examples

# Detect new Global Admin role assignments
query = '''
AuditLogs
| where OperationName == "Add member to role"
| where TargetResources[0].modifiedProperties[0].newValue has "Global Administrator"
'''

Signals

GitHub stars
54
Forks
10
Last commit
Sep 2026

ahel review

  • S4info
    community integration — published by 26zl, not azure

Automated review, not a security audit. Ruleset v1+k2.

Advanced
Catalog kind
skill
Gateway key
analyzing-azure-activity-logs-for-threats
Source
github.com/26zl/cybersec-toolkit