detecting-rdp-brute-force-attacks
$
npx mdskill add mukul975/Anthropic-Cybersecurity-Skills/detecting-rdp-brute-force-attacksAnalyze Windows Security Logs to detect and profile ongoing RDP credential guessing attempts.
- Identifies suspicious patterns of failed and successful remote access attempts.
- Requires access to Windows Security Event Log files (EVTX format).
- Analyzes event IDs 4625, 4624, and NLA failures via IP frequency.
- Outputs structured reports detailing potential brute-force activity for review.
SKILL.md
.github/skills/detecting-rdp-brute-force-attacksView on GitHub ↗
--- name: detecting-rdp-brute-force-attacks description: Detect RDP brute force attacks by analyzing Windows Security Event Logs for failed authentication patterns (Event ID 4625), successful logons after failures (Event ID 4624), NLA failures, and source IP frequency analysis. domain: cybersecurity subdomain: threat-detection tags: [threat-detection, rdp, brute-force, windows-event-logs, blue-team, siem] version: "1.0" author: mahipal license: Apache-2.0 --- # Detecting RDP Brute Force Attacks ## Overview RDP brute force attacks target Windows Remote Desktop Protocol services by attempting rapid credential guessing against exposed RDP endpoints. Detection relies on analyzing Windows Security Event Logs for Event ID 4625 (failed logon with Logon Type 10 or 3) and correlating with Event ID 4624 (successful logon) to identify compromised accounts. This skill covers parsing EVTX files with python-evtx, identifying attack patterns through source IP frequency analysis, detecting NLA bypass attempts, and generating actionable detection reports. ## When to Use - When investigating security incidents that require detecting rdp brute force attacks - 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 - Python 3.9+ with `python-evtx`, `lxml` libraries - Windows Security EVTX log files (exported from Event Viewer or collected via WEF) - Understanding of Windows authentication Event IDs (4624, 4625, 4776) - Familiarity with RDP Logon Types (Type 3 for NLA, Type 10 for RemoteInteractive) ## Steps ### Step 1: Export Security Event Logs Export Windows Security logs to EVTX format using Event Viewer or wevtutil: ``` wevtutil epl Security C:\logs\security.evtx ``` ### Step 2: Parse Failed Logon Events Use python-evtx to parse Event ID 4625 entries, extracting source IP, target username, failure reason (Sub Status), and Logon Type fields. ### Step 3: Analyze Attack Patterns Identify brute force patterns by: - Counting failed logons per source IP within time windows - Detecting username spray attacks (many usernames from one IP) - Correlating 4625 failures with subsequent 4624 success from same IP ### Step 4: Generate Detection Report Produce a JSON report with top attacking IPs, targeted accounts, time-based analysis, and compromise indicators. ## Expected Output JSON report containing: - Total failed logon events and unique source IPs - Top attacking IPs ranked by failure count - Targeted usernames and failure sub-status codes - Successful logons following brute force attempts (potential compromises) - Time-series analysis of attack intensity
More from mukul975/Anthropic-Cybersecurity-Skills
- acquiring-disk-image-with-dd-and-dcflddCreate forensically sound bit-for-bit disk images using dd and dcfldd while preserving evidence integrity through hash verification.
- analyzing-active-directory-acl-abuseDetect dangerous ACL misconfigurations in Active Directory using ldap3 to identify GenericAll, WriteDACL, and WriteOwner abuse paths
- analyzing-android-malware-with-apktoolPerform static analysis of Android APK malware samples using apktool for decompilation, jadx for Java source recovery, and androguard for permission analysis, manifest inspection, and suspicious API call detection.
- analyzing-api-gateway-access-logs>
- analyzing-apt-group-with-mitre-navigatorAnalyze advanced persistent threat (APT) group techniques using MITRE ATT&CK Navigator to create layered heatmaps of adversary TTPs for detection gap analysis and threat-informed defense.
- analyzing-azure-activity-logs-for-threats>
- analyzing-bootkit-and-rootkit-samples>
- analyzing-browser-forensics-with-hindsightAnalyze Chromium-based browser artifacts using Hindsight to extract browsing history, downloads, cookies, cached content, autofill data, saved passwords, and browser extensions from Chrome, Edge, Brave, and Opera for forensic investigation.
- analyzing-campaign-attribution-evidenceCampaign attribution analysis involves systematically evaluating evidence to determine which threat actor or group is responsible for a cyber operation. This skill covers collecting and weighting attr
- analyzing-certificate-transparency-for-phishingMonitor Certificate Transparency logs using crt.sh and Certstream to detect phishing domains, lookalike certificates, and unauthorized certificate issuance targeting your organization.