/configuring-multi-factor-authentication-with-duo
Deploys Cisco Duo multi-factor authentication across enterprise applications,
$ npx -y skills add mukul975/Anthropic-Cybersecurity-Skills --skill configuring-multi-factor-authentication-with-duo --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
/configuring-multi-factor-authentication-with-duo
Context preview
The summary Claude sees to decide when to auto-load this skill.
Deploys Cisco Duo multi-factor authentication across enterprise applications,
SKILL.md
configuring-multi-factor-authentication-with-duo.SKILL.mdname: configuring-multi-factor-authentication-with-duo
description: Deploys Cisco Duo multi-factor authentication across enterprise applications,
VPN, RDP, and SSH access points, covering Duo Authentication Proxy setup, adaptive
authentication policies, device trust assessment, and phishing-resistant WebAuthn/FIDO2
deployment aligned with NIST 800-63B AAL2/AAL3. Use when adding or hardening MFA
for remote access, VPN, or privileged logins with Duo.
domain: cybersecurity
subdomain: identity-access-management
tags:
- iam
- identity
- access-control
- authentication
- mfa
- duo
- multi-factor
version: '1.0'
author: mahipal
license: Apache-2.0
nist_csf:
- PR.AA-01
- PR.AA-02
- PR.AA-05
- PR.AA-06
mitre_attack:
- T1621
- T1110.004
- T1110.003
- T1078
- T1556.006
Configuring Multi-Factor Authentication with Duo
Overview
Deploy Cisco Duo multi-factor authentication across enterprise applications, VPN, RDP, and SSH access points. This skill covers Duo integration methods, adaptive authentication policies, device trust assessment, and phishing-resistant MFA deployment aligned with NIST 800-63B AAL2/AAL3 requirements.
When to Use
- When deploying or configuring configuring multi factor authentication with duo 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
- Familiarity with identity access management 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
Objectives
- Configure Duo MFA for VPN, RDP, SSH, and web applications
- Implement adaptive access policies based on user, device, and network context
- Deploy phishing-resistant authentication (Duo Verified Push, WebAuthn)
- Configure device health policies (trusted endpoints, OS version enforcement)
- Set up Duo Admin Panel monitoring and reporting
- Implement MFA bypass and emergency access procedures
Key Concepts
Duo Authentication Methods (by security strength)
1. **Security Keys (WebAuthn/FIDO2)**: Phishing-resistant, AAL3 capable 2. **Duo Verified Push**: Requires code entry, resistant to MFA fatigue attacks 3. **Duo Push**: Push notification to Duo Mobile app 4. **TOTP (Duo Mobile Passcode)**: Time-based one-time password 5. **Hardware Tokens**: OTP from physical token 6. **SMS/Phone Call**: Least secure, use only as fallback
Duo Integration Architecture
- **Duo Authentication Proxy**: On-premises proxy for RADIUS/LDAP integration
- **Duo Web SDK**: Embed Duo MFA in web applications
- **Duo OIDC/SAML**: SSO integration for cloud applications
- **Duo for RDP**: Windows Logon MFA
- **Duo Unix**: PAM-based MFA for SSH
Adaptive Access Policies
- **Trusted Networks**: Reduce MFA friction for corporate networks
- **Remembered Devices**: Skip MFA for trusted devices (configurable duration)
- **Device Health**: Block or require MFA based on OS patch level, encryption, firewall
- **Risk-Based Authentication**: Step-up MFA for anomalous login patterns
Workflow
Step 1: Duo Authentication Proxy Setup
1. Deploy Duo Authentication Proxy on Windows/Linux server 2. Configure primary authentication (AD/LDAP or RADIUS) 3. Configure Duo API credentials (Integration Key, Secret Key, API Hostname) 4. Set failmode (safe=deny if Duo unreachable, secure=allow) 5. Test proxy connectivity to Duo cloud and AD
Step 2: VPN MFA Integration
1. Configure VPN concentrator for RADIUS authentication 2. Point RADIUS to Duo Authentication Proxy 3. Configure Duo proxy with [radius_server_auto] section 4. Test VPN login with Duo Push 5. Deploy to all VPN users with enrollment period
Step 3: RDP/Windows Logon MFA
1. Install Duo Authentication for Windows Logon on target servers 2. Configure Duo application in Admin Panel 3. Set offline access options (allow N offline logins) 4. Configure bypass for service accounts 5. Test RDP login with Duo MFA
Step 4: Adaptive Policy Configuration
1. Create user groups (Standard, Privileged, Contractors) 2. Configure per-group authentication policies:
- Standard: Duo Push allowed, remembered device 7 days
- Privileged: Verified Push required, no remembered device
- Contractors: WebAuthn required, no remembered device
3. Configure device health policies:
- Require encrypted disk
- Block outdated OS versions
- Require firewall enabled
4. Set trusted network exceptions for corporate IPs
Step 5: Phishing-Resistant MFA Deployment
1. Enable Verified Push (requires entering 3-digit code from login screen) 2. Register WebAuthn/FIDO2 security keys for privileged users 3. Disable SMS and phone call for high-risk groups 4. Configure Duo Risk-Based Factor Selection 5. Monitor for MFA fatigue attack patterns
Step 6: Monitoring and Response
1. Configure Duo Admin Panel alerts 2. Set up authentication log forwarding to SIEM 3. Monitor for: MFA denial patterns, bypass usage, new device enrollments 4. Create incident response playbook for MFA compromise 5. Regular review of bypass and exception policies
Security Controls
| Control | NIST 800-53 | Description | |---------|-------------|-------------| | MFA | IA-2(1) | Multi-factor authentication for network access | | MFA for Privileged | IA-2(2) | MFA for privileged account access | | Replay Resistance | IA-2(8) | Replay-resistant authentication | | Device Identification | IA-3 | Device identity and trust | | Authenticator Management | IA-5 | MFA enrollment and lifecycle |
Common Pitfalls
- Not deploying phishing-resistant MFA (Verified Push/FIDO2) for privileged accounts
- Setting failmode to "safe" (allow access when Duo is down) in production
- Not disabling SMS/phone call for users with app-capable devices
- Forgetting to configure offline access for laptops
-
Read more
name: configuring-multi-factor-authentication-with-duo description: Deploys Cisco Duo multi-factor authentication across enterprise applications, VPN, RDP, and SSH access points, covering Duo Authentication Proxy setup, adaptive authentication policies, device trust assessment, and phishing-resistant WebAuthn/FIDO2 deployment aligned with NIST 800-63B AAL2/AAL3. Use when adding or hardening MFA for remote access, VPN, or privileged logins with Duo. domain: cybersecurity subdomain: identity-access-management tags: - iam - identity - access-control - authentication - mfa - duo - multi-factor version: '1.0' author: mahipal license: Apache-2.0 nist_csf: - PR.AA-01 - PR.AA-02 - PR.AA-05 - PR.AA-06 mitre_attack: - T1621 - T1110.004 - T1110.003 - T1078 - T1556.006
Configuring Multi-Factor Authentication with Duo
Overview
Deploy Cisco Duo multi-factor authentication across enterprise applications, VPN, RDP, and SSH access points. This skill covers Duo integration methods, adaptive authentication policies, device trust assessment, and phishing-resistant MFA deployment aligned with NIST 800-63B AAL2/AAL3 requirements.
When to Use
- When deploying or configuring configuring multi factor authentication with duo 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
- Familiarity with identity access management 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
Objectives
- Configure Duo MFA for VPN, RDP, SSH, and web applications
- Implement adaptive access policies based on user, device, and network context
- Deploy phishing-resistant authentication (Duo Verified Push, WebAuthn)
- Configure device health policies (trusted endpoints, OS version enforcement)
- Set up Duo Admin Panel monitoring and reporting
- Implement MFA bypass and emergency access procedures
Key Concepts
Duo Authentication Methods (by security strength)
1. **Security Keys (WebAuthn/FIDO2)**: Phishing-resistant, AAL3 capable 2. **Duo Verified Push**: Requires code entry, resistant to MFA fatigue attacks 3. **Duo Push**: Push notification to Duo Mobile app 4. **TOTP (Duo Mobile Passcode)**: Time-based one-time password 5. **Hardware Tokens**: OTP from physical token 6. **SMS/Phone Call**: Least secure, use only as fallback
Duo Integration Architecture
- **Duo Authentication Proxy**: On-premises proxy for RADIUS/LDAP integration
- **Duo Web SDK**: Embed Duo MFA in web applications
- **Duo OIDC/SAML**: SSO integration for cloud applications
- **Duo for RDP**: Windows Logon MFA
- **Duo Unix**: PAM-based MFA for SSH
Adaptive Access Policies
- **Trusted Networks**: Reduce MFA friction for corporate networks
- **Remembered Devices**: Skip MFA for trusted devices (configurable duration)
- **Device Health**: Block or require MFA based on OS patch level, encryption, firewall
- **Risk-Based Authentication**: Step-up MFA for anomalous login patterns
Workflow
Step 1: Duo Authentication Proxy Setup
1. Deploy Duo Authentication Proxy on Windows/Linux server 2. Configure primary authentication (AD/LDAP or RADIUS) 3. Configure Duo API credentials (Integration Key, Secret Key, API Hostname) 4. Set failmode (safe=deny if Duo unreachable, secure=allow) 5. Test proxy connectivity to Duo cloud and AD
Step 2: VPN MFA Integration
1. Configure VPN concentrator for RADIUS authentication 2. Point RADIUS to Duo Authentication Proxy 3. Configure Duo proxy with [radius_server_auto] section 4. Test VPN login with Duo Push 5. Deploy to all VPN users with enrollment period
Step 3: RDP/Windows Logon MFA
1. Install Duo Authentication for Windows Logon on target servers 2. Configure Duo application in Admin Panel 3. Set offline access options (allow N offline logins) 4. Configure bypass for service accounts 5. Test RDP login with Duo MFA
Step 4: Adaptive Policy Configuration
1. Create user groups (Standard, Privileged, Contractors) 2. Configure per-group authentication policies:
- Standard: Duo Push allowed, remembered device 7 days
- Privileged: Verified Push required, no remembered device
- Contractors: WebAuthn required, no remembered device
3. Configure device health policies:
- Require encrypted disk
- Block outdated OS versions
- Require firewall enabled
4. Set trusted network exceptions for corporate IPs
Step 5: Phishing-Resistant MFA Deployment
1. Enable Verified Push (requires entering 3-digit code from login screen) 2. Register WebAuthn/FIDO2 security keys for privileged users 3. Disable SMS and phone call for high-risk groups 4. Configure Duo Risk-Based Factor Selection 5. Monitor for MFA fatigue attack patterns
Step 6: Monitoring and Response
1. Configure Duo Admin Panel alerts 2. Set up authentication log forwarding to SIEM 3. Monitor for: MFA denial patterns, bypass usage, new device enrollments 4. Create incident response playbook for MFA compromise 5. Regular review of bypass and exception policies
Security Controls
| Control | NIST 800-53 | Description | |---------|-------------|-------------| | MFA | IA-2(1) | Multi-factor authentication for network access | | MFA for Privileged | IA-2(2) | MFA for privileged account access | | Replay Resistance | IA-2(8) | Replay-resistant authentication | | Device Identification | IA-3 | Device identity and trust | | Authenticator Management | IA-5 | MFA enrollment and lifecycle |
Common Pitfalls
- Not deploying phishing-resistant MFA (Verified Push/FIDO2) for privileged accounts
- Setting failmode to "safe" (allow access when Duo is down) in production
- Not disabling SMS/phone call for users with app-capable devices
- Forgetting to configure offline access for laptops
-
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

