/building-patch-tuesday-response-process
Establish a repeatable operational process for triaging, testing, and
$ npx -y skills add mukul975/Anthropic-Cybersecurity-Skills --skill building-patch-tuesday-response-process --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/building-patch-tuesday-response-process
Context preview
The summary Claude sees to decide when to auto-load this skill.
Establish a repeatable operational process for triaging, testing, and
SKILL.md
building-patch-tuesday-response-process.SKILL.mdname: building-patch-tuesday-response-process
description: Establish a repeatable operational process for triaging, testing, and
deploying Microsoft Patch Tuesday security updates (Windows, Office, Exchange, SQL
Server, Azure) via WSUS/SCCM within risk-based remediation SLAs, from advisory review
through validation. Use when building or improving a monthly patch management workflow
or prioritizing which CVEs to remediate first.
domain: cybersecurity
subdomain: vulnerability-management
tags:
- patch-management
- patch-tuesday
- microsoft
- wsus
- sccm
- vulnerability-remediation
- windows-update
version: '1.0'
author: mahipal
license: Apache-2.0
nist_csf:
- ID.RA-01
- ID.RA-02
- ID.IM-02
- ID.RA-06
mitre_attack:
- T1190
- T1203
- T1068
- T1210
- T1588.006
Building Patch Tuesday Response Process
Overview
Microsoft releases security updates on the second Tuesday of each month ("Patch Tuesday"), addressing vulnerabilities across Windows, Office, Exchange, SQL Server, Azure services, and other products. In 2025, Microsoft patched over 1,129 vulnerabilities across the year -- an 11.9% increase from 2024 -- making a structured response process critical. The leading risk types include elevation of privilege (49%), remote code execution (34%), and information disclosure (7%). This skill covers building a repeatable Patch Tuesday response workflow from initial advisory review through testing, deployment, and validation.
When to Use
- When deploying or configuring building patch tuesday response process capabilities in your environment
- When establishing security controls aligned to compliance requirements
- When building or improving security architecture for this domain
- When conducting security assessments that require this implementation
Prerequisites
- Access to Microsoft Security Response Center (MSRC) update guide
- Vulnerability management platform (Qualys VMDR, Rapid7, Tenable)
- Patch deployment infrastructure (WSUS, SCCM/MECM, Intune, or third-party)
- Test environment mirroring production configurations
- Change management process (ITIL-based or equivalent)
- Communication channels for cross-team coordination
Core Concepts
Patch Tuesday Timeline
| Day | Activity | Owner | |-----|----------|-------| | T+0 (Tuesday 10 AM PT) | Microsoft releases patches and advisories | Microsoft | | T+0 (Tuesday afternoon) | Security team reviews advisories and triages | Security Ops | | T+1 (Wednesday) | Qualys/vendor scan signatures updated | VM Platform | | T+1-T+2 | Emergency patches deployed for zero-days | IT Operations | | T+2-T+5 | Test patches in staging environment | QA/IT Ops | | T+5-T+7 | Deploy to Pilot group (5-10% of fleet) | IT Operations | | T+7-T+14 | Deploy to Production Ring 1 (servers) | IT Operations | | T+14-T+21 | Deploy to Production Ring 2 (workstations) | IT Operations | | T+21-T+30 | Validation scanning and compliance reporting | Security Ops |
Patch Categorization Framework
| Category | Criteria | Response SLA | |----------|----------|-------------| | Zero-Day / Exploited | Active exploitation confirmed, CISA KEV listed | 24-48 hours | | Critical RCE | CVSS >= 9.0, remote code execution, no auth required | 3-5 days | | Critical with Exploit | Public exploit code or EPSS > 0.7 | 7 days | | High Severity | CVSS 7.0-8.9, privilege escalation | 14 days | | Medium Severity | CVSS 4.0-6.9 | 30 days | | Low / Informational | CVSS < 4.0, defense-in-depth | Next maintenance window |
Microsoft Product Categories to Monitor
| Category | Products | Risk Level | |----------|----------|------------| | Windows OS | Windows 10, 11, Server 2016-2025 | Critical | | Exchange Server | Exchange 2016, 2019, Online | Critical | | SQL Server | SQL 2016-2022 | High | | Office Suite | Microsoft 365, Office 2019-2024 | High | | .NET Framework | .NET 4.x, .NET 6-9 | Medium | | Azure Services | Azure AD, Entra ID, Azure Stack | High | | Edge/Browser | Edge Chromium, IE mode | Medium | | Development Tools | Visual Studio, VS Code | Low |
Workflow
Step 1: Pre-Patch Tuesday Preparation (Monday before)
Preparation Checklist:
[ ] Confirm WSUS/SCCM sync schedules are active
[ ] Verify test environment is available and current
[ ] Review outstanding patches from previous month
[ ] Confirm monitoring dashboards are operational
[ ] Pre-stage communication templates
[ ] Ensure rollback procedures are documented
[ ] Verify backup jobs ran successfully on critical servers
Step 2: Day-of Triage (Patch Tuesday)
Triage Process:
1. Monitor MSRC Update Guide (https://msrc.microsoft.com/update-guide)
2. Review Microsoft Security Blog for advisory summaries
3. Cross-reference with CISA KEV additions (same day)
4. Check vendor advisories (Qualys, Rapid7, CrowdStrike analysis)
5. Identify zero-day and actively exploited vulnerabilities
6. Classify each CVE by severity and applicability
7. Determine deployment rings and timeline for each patch
8. Submit emergency change request for zero-day patches
9. Communicate triage results to IT Operations and management
Step 3: Scan and Gap Analysis
# Post-Patch-Tuesday scan workflow
def run_patch_tuesday_scan(scanner_api, target_groups):
"""Trigger vulnerability scans after Patch Tuesday updates."""
for group in target_groups:
print(f"[*] Scanning {group['name']}...")
scan_id = scanner_api.launch_scan(
target=group["targets"],
template="patch-tuesday-focused",
credentials=group["creds"]
)
print(f" Scan launched: {scan_id}")
# Wait for scan completion, then generate report
results = scanner_api.get_scan_results(scan_id)
missing_patches = [r for r in results if r["status"] == "missing"]
# Categorize by Patch Tuesday release
current_month = [p for p in missing_patches
if p["vendor_advisory_date"] >= patch_tuesday_date]
return {Read more
name: building-patch-tuesday-response-process description: Establish a repeatable operational process for triaging, testing, and deploying Microsoft Patch Tuesday security updates (Windows, Office, Exchange, SQL Server, Azure) via WSUS/SCCM within risk-based remediation SLAs, from advisory review through validation. Use when building or improving a monthly patch management workflow or prioritizing which CVEs to remediate first. domain: cybersecurity subdomain: vulnerability-management tags: - patch-management - patch-tuesday - microsoft - wsus - sccm - vulnerability-remediation - windows-update version: '1.0' author: mahipal license: Apache-2.0 nist_csf: - ID.RA-01 - ID.RA-02 - ID.IM-02 - ID.RA-06 mitre_attack: - T1190 - T1203 - T1068 - T1210 - T1588.006
Building Patch Tuesday Response Process
Overview
Microsoft releases security updates on the second Tuesday of each month ("Patch Tuesday"), addressing vulnerabilities across Windows, Office, Exchange, SQL Server, Azure services, and other products. In 2025, Microsoft patched over 1,129 vulnerabilities across the year -- an 11.9% increase from 2024 -- making a structured response process critical. The leading risk types include elevation of privilege (49%), remote code execution (34%), and information disclosure (7%). This skill covers building a repeatable Patch Tuesday response workflow from initial advisory review through testing, deployment, and validation.
When to Use
- When deploying or configuring building patch tuesday response process capabilities in your environment
- When establishing security controls aligned to compliance requirements
- When building or improving security architecture for this domain
- When conducting security assessments that require this implementation
Prerequisites
- Access to Microsoft Security Response Center (MSRC) update guide
- Vulnerability management platform (Qualys VMDR, Rapid7, Tenable)
- Patch deployment infrastructure (WSUS, SCCM/MECM, Intune, or third-party)
- Test environment mirroring production configurations
- Change management process (ITIL-based or equivalent)
- Communication channels for cross-team coordination
Core Concepts
Patch Tuesday Timeline
| Day | Activity | Owner | |-----|----------|-------| | T+0 (Tuesday 10 AM PT) | Microsoft releases patches and advisories | Microsoft | | T+0 (Tuesday afternoon) | Security team reviews advisories and triages | Security Ops | | T+1 (Wednesday) | Qualys/vendor scan signatures updated | VM Platform | | T+1-T+2 | Emergency patches deployed for zero-days | IT Operations | | T+2-T+5 | Test patches in staging environment | QA/IT Ops | | T+5-T+7 | Deploy to Pilot group (5-10% of fleet) | IT Operations | | T+7-T+14 | Deploy to Production Ring 1 (servers) | IT Operations | | T+14-T+21 | Deploy to Production Ring 2 (workstations) | IT Operations | | T+21-T+30 | Validation scanning and compliance reporting | Security Ops |
Patch Categorization Framework
| Category | Criteria | Response SLA | |----------|----------|-------------| | Zero-Day / Exploited | Active exploitation confirmed, CISA KEV listed | 24-48 hours | | Critical RCE | CVSS >= 9.0, remote code execution, no auth required | 3-5 days | | Critical with Exploit | Public exploit code or EPSS > 0.7 | 7 days | | High Severity | CVSS 7.0-8.9, privilege escalation | 14 days | | Medium Severity | CVSS 4.0-6.9 | 30 days | | Low / Informational | CVSS < 4.0, defense-in-depth | Next maintenance window |
Microsoft Product Categories to Monitor
| Category | Products | Risk Level | |----------|----------|------------| | Windows OS | Windows 10, 11, Server 2016-2025 | Critical | | Exchange Server | Exchange 2016, 2019, Online | Critical | | SQL Server | SQL 2016-2022 | High | | Office Suite | Microsoft 365, Office 2019-2024 | High | | .NET Framework | .NET 4.x, .NET 6-9 | Medium | | Azure Services | Azure AD, Entra ID, Azure Stack | High | | Edge/Browser | Edge Chromium, IE mode | Medium | | Development Tools | Visual Studio, VS Code | Low |
Workflow
Step 1: Pre-Patch Tuesday Preparation (Monday before)
Preparation Checklist: [ ] Confirm WSUS/SCCM sync schedules are active [ ] Verify test environment is available and current [ ] Review outstanding patches from previous month [ ] Confirm monitoring dashboards are operational [ ] Pre-stage communication templates [ ] Ensure rollback procedures are documented [ ] Verify backup jobs ran successfully on critical servers
Step 2: Day-of Triage (Patch Tuesday)
Triage Process: 1. Monitor MSRC Update Guide (https://msrc.microsoft.com/update-guide) 2. Review Microsoft Security Blog for advisory summaries 3. Cross-reference with CISA KEV additions (same day) 4. Check vendor advisories (Qualys, Rapid7, CrowdStrike analysis) 5. Identify zero-day and actively exploited vulnerabilities 6. Classify each CVE by severity and applicability 7. Determine deployment rings and timeline for each patch 8. Submit emergency change request for zero-day patches 9. Communicate triage results to IT Operations and management
Step 3: Scan and Gap Analysis
# Post-Patch-Tuesday scan workflow
def run_patch_tuesday_scan(scanner_api, target_groups):
"""Trigger vulnerability scans after Patch Tuesday updates."""
for group in target_groups:
print(f"[*] Scanning {group['name']}...")
scan_id = scanner_api.launch_scan(
target=group["targets"],
template="patch-tuesday-focused",
credentials=group["creds"]
)
print(f" Scan launched: {scan_id}")
# Wait for scan completion, then generate report
results = scanner_api.get_scan_results(scan_id)
missing_patches = [r for r in results if r["status"] == "missing"]
# Categorize by Patch Tuesday release
current_month = [p for p in missing_patches
if p["vendor_advisory_date"] >= patch_tuesday_date]
return {817 structured cybersecurity skills for AI agents · Mapped to 6 frameworks: MITRE ATT&CK, NIST CSF 2.0, MITRE ATLAS, D3FEND, NIST AI RMF & MITRE F3 (Fight Fraud) · agentskills.io standard · Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI & 20+ platforms · 29 security domains · Apache 2.0
Repo: mukul975/Anthropic-Cybersecurity-Skills
Other skills on cybersecurity-skills.
- /abusing-dpapi-for-credential-access
Extract and decrypt Windows DPAPI-protected secrets (Credential Manager, browser logins/cookies, Wi-Fi credentials, KeePass keys) online or offline using SharpDPAPI, SharpChrome, Mimikatz, or Impacket's dpapi.py, including domain-wide decryption via the DPAPI backup key. Use
Open skill - /abusing-shadow-credentials-for-privesc
Take over Active Directory accounts by writing attacker-controlled public keys to msDS-KeyCredentialLink (Shadow Credentials) with pyWhisker, Whisker, or Certipy, then authenticate via PKINIT to recover the target's NT hash without a password reset. Use when BloodHound shows
Open skill - /achieving-cmmc-level-2-compliance
Prepare a defense-contractor environment for CMMC Level 2 certification: scope CUI and FCI, implement the 110 NIST SP 800-171 Rev 2 security requirements across 14 families, compute the SPRS score with the DoD Assessment Methodology, manage a compliant POA&M, and ready the
Open skill - /acquiring-disk-image-with-dd-and-dcfldd
Create forensically sound bit-for-bit disk images with dd or dcfldd on a Linux forensic workstation, preserving evidence integrity through hash verification (MD5/SHA) during acquisition. Use when imaging a suspect drive, USB device, or memory card for investigation, preserving
Open skill - /analyzing-active-directory-acl-abuse
Detect dangerous ACL misconfigurations in Active Directory using ldap3
Open skill - /analyzing-android-malware-with-apktool
Perform static analysis of Android APK malware using apktool for resource decompilation, jadx for Java source recovery, and androguard for manifest inspection, dangerous permission-combination detection, and identification of obfuscated code, dynamic code loading, and
Open skill

