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.
/plugin marketplace add Aladeen12541/claude-ip-rotator/plugin install ip-rotatorWrote 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.
[](https://agentmods.dev/skills/aladeen12541/claude-ip-rotator/ip-rotator)<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.
<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>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.
| Model | Per session | Once 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 |
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 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
oncreates API Gateway endpoints across 10 AWS regions- Starts local MITM proxy on 127.0.0.1:8080 (mitmproxy)
- Writes
~/.config/ip-rotator/env.shwithhttp_proxy/https_proxyenv vars - Sourcing env.sh → all subprocesses inherit proxy vars
- Every HTTP/HTTPS request routes through a random gateway endpoint
- 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
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.
- 11d ago First seen · 115 lines · 106 tokens per session scan A 5908ff35c4ac
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.
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…
pentest-playbook
7-phase pentest pipeline from passive recon to exploitation.
deep-invade
Deep pentest WP: SSRF, plugin CVE, JS mine, port scan chain.
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.
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…
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.