ip-rotator

ip-rotator is a skill for Claude Code from Aladeen12541/claude-ip-rotator. It costs 106 tokens per session (1,219 once invoked), scanned A, original, MIT.

A control for routing HTTP and HTTPS traffic through AWS API Gateway using changing source IP addresses, with a local MITM proxy. A WAF is a web-application firewall that can block or limit requests.

In plain words
What is it for?
It is for routing tools such as nuclei, httpx, ffuf, and curl through rotating AWS IPs during authorized security testing.
Why use it?
It helps when security-testing traffic is blocked, rate-limited, or timing out because of the current IP address or a WAF.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: positional $N argument.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the ip-rotator plugin — 1 skill, 1 command shipped together

Good fit It is for routing tools such as nuclei, httpx, ffuf, and curl through rotating AWS IPs during authorized security testing.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add Aladeen12541/claude-ip-rotator
Claude Code
/plugin install ip-rotator

Made for: Claude Code.

Or install ip-rotator, the plugin that ships this one along with the rest of its 1 skill, 1 command.

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 ip-rotator

README.md
[![agentmods](https://agentmods.dev/badge/skills/aladeen12541/claude-ip-rotator/ip-rotator/github.svg)](https://agentmods.dev/skills/aladeen12541/claude-ip-rotator/ip-rotator)
Your own site
<a href="https://agentmods.dev/skills/aladeen12541/claude-ip-rotator/ip-rotator"><img src="https://agentmods.dev/badge/skills/aladeen12541/claude-ip-rotator/ip-rotator/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 ip-rotator

Your own site · 80×15
<a href="https://agentmods.dev/skills/aladeen12541/claude-ip-rotator/ip-rotator"><img src="https://agentmods.dev/badge/skills/aladeen12541/claude-ip-rotator/ip-rotator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 106 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,219 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00106 $0.01219
Opus 5 $0.00053 $0.00609
Sonnet 5 $0.00021 $0.00244
Haiku 4.5 $0.00011 $0.00122

Measured 11d ago against content hash 5908ff35c4ac, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

ip-rotator scanned grade A with 1 finding 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 11d ago.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

description: AWS API Gateway IP rotation for security testing. Single switch — 'on' starts gateway + MITM proxy, routes ALL HTTP/HTTPS traffic (nuclei, httpx, ffuf, curl, everything) through rotating AWS IPs. Use when IP
skills/ip-rotator/SKILL.md · 115 lines

How it starts

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

IP ROTATOR — Single Switch IP Rotation

One command activates IP rotation for ALL tools in the session.

The bundled script lives at ${CLAUDE_PLUGIN_ROOT}/scripts/ip_rotator.py. Always invoke it through that variable so the path resolves no matter where the plugin is installed.


WHEN TO ACTIVATE

  • User says: "use ip rotator", "rotate ip", "bypass waf", "unblock"
  • Target WAF blocked current IP (Wordfence 403, Cloudflare block, timeout after prior testing)
  • User wants "thorough testing" or "deep testing" on WAF-protected target
  • Rate limiting is preventing progress

THE SWITCH

Turn ON (start everything):

# Start in background:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/ip_rotator.py" on https://target.com &

# Wait ~15s for gateway + proxy to start, then source env:
source ~/.config/ip-rotator/env.sh

# Now EVERYTHING auto-routes through rotating AWS IPs:
nuclei -u https://target.com -t cves/
httpx -l hosts.txt
ffuf -u https://target.com/FUZZ -w wordlist.txt
curl -k https://target.com/wp-json/
# ALL use rotated IPs — no flags needed

Turn OFF (stop everything):

python3 "${CLAUDE_PLUGIN_ROOT}/scripts/ip_rotator.py" off
unset http_proxy https_proxy HTTP_PROXY HTTPS_PROXY ROTATOR_ACTIVE

Check status:

python3 "${CLAUDE_PLUGIN_ROOT}/scripts/ip_rotator.py" status

HOW IT WORKS

  1. on creates API Gateway endpoints across 10 AWS regions
  2. Starts local MITM proxy on 127.0.0.1:8080 (mitmproxy)
  3. Writes ~/.config/ip-rotator/env.sh with http_proxy/https_proxy env vars
  4. Sourcing env.sh → all subprocesses inherit proxy vars
  5. Every HTTP/HTTPS request routes through a random gateway endpoint
  6. Each request exits from a different AWS IP address
Any tool → http_proxy → local MITM proxy → random API Gateway → target
                         (127.0.0.1:8080)   (different IP each time)

State lives in ~/.config/ip-rotator/ (gateways.json, proxy.json, env.sh, rotator.log).


RULES FOR CLAUDE

Read the full file on GitHub · 115 lines

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. 11d ago First seen · 115 lines · 106 tokens per session scan A 5908ff35c4ac

Subscribe to this mod's changes

ip-rotator is a skill published in the GitHub repository Aladeen12541/claude-ip-rotator (3 stars, last pushed 2mo ago), licensed MIT. It adds 106 tokens to every session and 1,219 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

implementing-api-gateway-security-controls

Implements security controls at the API gateway layer including authentication enforcement, rate limiting, request validation, IP allowlisting, TLS termination, and threat protection. The engineer configures API gateways (Kong, AWS API Gateway, Azure APIM, Apigee) to act as a centralized security enforcement point…

xalgorix/xalgorix · 106 tokens

pentest-playbook

7-phase pentest pipeline from passive recon to exploitation.

uphiago/recon-skills · 16 tokens

deep-invade

Deep pentest WP: SSRF, plugin CVE, JS mine, port scan chain.

uphiago/recon-skills · 24 tokens

ouroboros-pentest

Use when the user sends BB:, CTF:, Target:, or Pentest: followed by a domain or IP — activates autonomous JSON-only daemon mode for authorized penetration testing, bug bounty, and CTF challenges.

g4sk0/mergen-mcp · 47 tokens

xss-reflected-stored-dom

Detect and exploit Cross-Site Scripting (XSS) vulnerabilities including Reflected, Stored, and DOM-based variants. Use this skill when testing web applications for JavaScript injection, HTML injection, input sanitization bypass, or Content Security Policy evasion. Covers WAF bypass payloads, mutation XSS, blind XSS…

akashrpatil/awesome-offensive-security-skills · 90 tokens

analyzing-api-gateway-access-logs

Parses API Gateway access logs (AWS API Gateway, Kong, Nginx) to detect BOLA/IDOR attacks, rate limit bypass, credential scanning, and injection attempts. Uses pandas for statistical analysis of request patterns and anomaly detection. Use when investigating API abuse or building API-specific threat detection rules.

26zl/cybersec-toolkit · 72 tokens