Queries Azure Monitor activity logs and sign-in logs via azure-monitor-query to tespit etmesuspicious administrative operations, impossible travel, privilege escalation, and resource modifications.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add MustafaKemal0146/fetih --skill analyzing-azure-activity-logs-for-threats --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Analyzing Azure Activity Logs For Threats?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/mustafakemal0146-analyzing-azure-activity-logs-for-threats)More formats (shields.io, HTML) on the badges page.
---
name: analyzing-azure-activity-logs-for-threats
description: Queries Azure Monitor activity logs and sign-in logs via azure-monitor-query to tespit etmesuspicious administrative operations, impossible travel, privilege escalation, and resource modifications.
Builds KQL queries for threat hunting in Azure environments. Use investigating yaparken suspicious Azure tenant activity or building cloud SIEM Tespits.
tags:
- soc-operations
- activity-logs
- threat-hunting
- azure-monitor
- security-operations
- azure
- fetih
- cloud-security
- cybersecurity
- kql
- siber-güvenlik
triggers:
- activity
- analyzing
- azure
- incident
- log
- logs
- network
- threat
- threats
category: soc-operations
source_subdomain: security-operations
nist_csf:
- DE.CM-01
- RS.MA-01
- GV.OV-01
- DE.AE-02
adapted_for: fetih
---
# Analyzing Azure Activity Logs for Threats
## Ne Zaman Kullanılır
- investigating yaparken security incidents that require analyzing azure activity logs for threats
- building yaparken Tespit rules or threat hunting queries for this domain
- SOC yaparken: analysts need structured procedures for this analysis type
- validating yaparken security monitoring coverage for related attack techniques
## Ön Gereksinimler
- Familiarity with security operations concepts and tools
- Erişim: 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,
Tespit etme suspicious admin operations and sign-in anomalies.
```python
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 Tespit 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
## Örnekler
```python
query = '''
AuditLogs
| where OperationName == "Add member to role"
| where TargetResources[0].modifiedProperties[0].newValue has "Global Administrator"
'''
```
<!--
⚔ Bu skill FETIH AI Agent icin gelistirilmistir — https://github.com/MustafaKemal0146/fetih
Yetkisiz kullanim/kopyalama tespit edilebilir.
hash: 053eb7cbab143306
-->

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!