Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
Windows Tipps & SecurityGrafikkarte vor Überhitzung schützen: So geht’s(25.09.2026 um 08:00 Uhr)
••••••••••
Windows Tipps & SecurityGrafikkarte vor Überhitzung schützen: So geht’s(25.09.2026 um 08:00 Uhr)
••••••••••
Intelligence View
⚡ tsecurity.de Intelligence

Why Your AWS GuardDuty Data Isn't Showing Up in Microsoft Sentinel (And How to Fix It)

The silent killer: KMS encryption blocking your SIEM integration with zero error logs If you're integrating AWS GuardDuty with Microsoft Sentinel and your findings are mysteriously disappearing into the void, you're not alone. I spent…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

The silent killer: KMS encryption blocking your SIEM integration with zero error logs






If you're integrating AWS GuardDuty with Microsoft Sentinel and your findings are mysteriously disappearing into the void, you're not alone. I spent hours debugging this issue, only to discover it was a KMS encryption permission problem — with absolutely no error logs to point me in the right direction.



Here's what happened and how I resolved the issue.






TL;DR



Problem: GuardDuty findings not appearing in Microsoft Sentinel, no error logs.



Cause: GuardDuty exports are KMS-encrypted, and Sentinel's IAM role lacks kms:Decrypt permission.



Solution: Add kms:Decrypt permission for your KMS key(s) to your Sentinel OIDC role.






The Setup



I was setting up Microsoft Sentinel to ingest AWS GuardDuty findings for centralized security monitoring. The architecture looked like this:



Simple Architect



Everything seemed configured correctly:




  • GuardDuty export to S3 was enabled

  • S3 bucket permissions were set

  • S3 Event notification sends a message to SQS

  • Sentinel data connector was configured

  • SQS permissions were set allow s3 event publish the message

  • The SQS metric Number Of Messages Received show message was consumed

  • OIDC role for Sentinel had SQS consume permissions



But no data or table appeared in Sentinel. None. Zero. Zilch.






The Frustrating Part: No Errors



Here's what made this particularly painful to debug — there were no error logs anywhere.



I checked:





  • AzureDiagnostics table in Log Analytics — nothing

  • Sentinel data connector health — showed "connected"

  • SQS — Sentinel was consume the message fine

  • Request help from AWS Support confirm the message was consume specific role




Operation=ReceiveMessage
LPRemoteIpAddress=XX.XX.XXX.XX
AwsUserPrincipal=AROAXXXXXXXXXXXX:MicrosoftSentinel_XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
MessageIds=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
AWSQueryStatusCode=200
RequestId=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
VisibilityTimeout=300
Queue.names=sentinel-soc-guardduty
ReceiveWaitTime=3000
RequesterUserARN=arn:aws:sts::XXXXXXXXXXXX:assumed-role/OIDC_aws-sentinel-oidc-role-guardduty/MicrosoftSentinel_XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
AwsUserArn=arn:aws:sts::XXXXXXXXXXXX:assumed-role/OIDC_aws-sentinel-oidc-role-guardduty/MicrosoftSentinel_XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
AwsAccessKeyId=ASIAXXXXXXXXXXXX
EndTime=Wed, 14 Jan 2026 10:28:43 UTC






The data was just silently disappearing. It's like Sentinel was reading the message, shrugging, and moving on without telling anyone.






The Root Cause: KMS Encryption



After way too much troubleshooting, I finally figured it out.



When you configure GuardDuty to export findings to S3, you can (and should) enable encryption. AWS lets you use a KMS key for this:



GuardDuty Settings



The problem? The GuardDuty finding files are encrypted with KMS, and Sentinel couldn't decrypt them.



Here's what was happening:




  1. GuardDuty writes findings to S3, encrypted with KMS

  2. S3 Event Notification sends a message to SQS

  3. The message in SQS was encrypted with KMS

  4. Sentinel's OIDC role consumes the message from SQS (this works fine)

  5. Sentinel tries to read the file contents — but they're encrypted

  6. Sentinel can't call kms:Decrypt because it doesn't have permission

  7. Sentinel silently fails and moves on

  8. No error is logged anywhere



The fact that there's no error logging for this scenario is... frustrating, to say the least.






The Fix



The solution is simple once you know the problem: add kms:Decrypt permission to your Sentinel OIDC role.



Add this statement to your Sentinel IAM role's policy:




{
"Action": [
"kms:Decrypt"
],
"Resource": [
"arn:aws:kms:YOUR-REGION:YOUR-ACCOUNT-ID:key/YOUR-KMS-KEY-ID"
],
"Effect": "Allow"
}






For example, my configuration needed:




{
"Action": [
"kms:Decrypt"
],
"Resource": [
"arn:aws:kms:ap-southeast-1:12345678:key/12345678",
],
"Effect": "Allow"
}









Step-by-Step




  1. Find your KMS key ARN — Go to GuardDuty → Settings → Findings export options. The KMS key ARN is displayed there.


  2. Find your Sentinel OIDC role — This is the role you created when setting up the AWS data connector in Sentinel. Mine was named OIDC_aws-sentinel-oidc-role-guardduty.


  3. Update the IAM policy — Go to IAM → Roles → Your Sentinel role → Edit the attached policy → Add the kms:Decrypt permission for your KMS key(s).


  4. Test the integration — Generate a sample finding in GuardDuty and wait 5-10 minutes. Check Sentinel with this KQL query:





AWSGuardDuty
| limit 10









Things to Remember



KMS key must be in the same region as your S3 bucket. AWS enforces this, so it shouldn't be an issue if your export is already working.



You might have multiple KMS keys. If you've changed keys or have different configurations, make sure all relevant keys are included in the policy.



The error won't show up in AzureDiagnostics. I wish I could tell you to look for a specific error, but there isn't one. If your GuardDuty data isn't appearing and everything else looks correct, check KMS permissions.






Related:



1. Sofort-Triage & Abwehrmaßnahmen

SOC Incident Playbook: Remote Code Execution (RCE) Defense
1 Warnungen
title: Detect Exploitation - Why Your AWS GuardDuty Data Isn't Showing Up in Microsoft Sentinel (And How to Fix It)
id: a9d0bd14-b930-4d8b-a52a-2452facb3833
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-27
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
Syntax validiert (0 Fehler)
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-27"
        description = "YARA Signature for "
    strings:
        $str = "Why Your AWS GuardDuty Data Is" ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("Why Your AWS GuardDuty Data Isnt Showing")
| stats count earliest(_time) as first_seen latest(_time) as last_seen by src_ip, dest_ip, dest_host, signature
| eval first_seen=strftime(first_seen, "%Y-%m-%d %H:%M:%S"), last_seen=strftime(last_seen, "%Y-%m-%d %H:%M:%S")
| sort - count
Syntax validiert (0 Fehler)
message: "*Why Your AWS GuardDuty Data Isnt Showing*"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "Why Your AWS GuardDuty Data Isnt Showing"
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc

2. Cyber Threat Intelligence & Forensik

CTI Threat Relationship Graph3 Knoten / 2 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
🎯
MITRE ATT&CK Matrix Navigator 14 Taktiken
Reconnaissance
-
Resource Development
-
Initial Access
Execution
Persistence
-
Privilege Escalation
Defense Evasion
Credential Access
-
Discovery
-
Lateral Movement
-
Collection
-
Command and Control
Exfiltration
-
Impact
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Analyse für identifizierte Bedrohung auf Basis von Live-CTI (ENISA EUVD): CVSS 0.0 · EPSS 0.0% · CISA KEV: nein. Handlungsableitung aus den verlinkten Hersteller-Quellen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Why Your AWS GuardDuty Data Isn't Showing Up in Microsoft Sentinel (And How to Fix It)

Thematisch verwandte Begriffe: Your, GuardDuty, Data, Isnt · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

💬 Kommentare werden geladen…
Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-100739 | A vulnerability was detected in mathurvishal CloudClassroom-PHP-Project…
Advisory →
tsecurity.de Icon
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag