campaign
Run a sustained security assessment campaign — a real pentest, not a simulation
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Run a sustained security assessment campaign — a real pentest, not a simulation
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Run sustained security assessment campaigns against targets using the Ralph Wiggum autonomous loop pattern. Use when asked to start, continue, or manage a pentest campaign.
Control a Flipper Zero and scan BLE targets for authorized security research. Use when asked to interact with Flipper hardware, scan BLE devices, or control RF/IR/NFC/RFID.
Start an autonomous pentest loop. Spawns fresh-context subagents for each phase. Use: /ralph-loop
BLE GATT exploitation methodology — scanning, enumeration, characteristic analysis, payload crafting, and write attacks against Bluetooth Low Energy devices
Credential testing methodology — default credential checking, password spraying, credential reuse, and OSINT for leaked credentials
Test default credentials against network services — SSH, HTTP, FTP, Telnet, MQTT, MySQL, PostgreSQL, Redis, MongoDB
| name | campaign |
| description | Run a sustained security assessment campaign — a real pentest, not a simulation |
A campaign is a real penetration test. Not a simulation. Not a description of what you would do. You have real tools connected to real hardware. You CALL those tools, collect real results, and make real findings.
A campaign progresses through five phases. Each phase uses specific tools to produce specific evidence. You cannot skip phases. You cannot fabricate results. If you didn't call a tool, you don't have data.
CALL tools, don't describe them. You have MCP tools available as function calls. When this document says "scan for BLE devices," that means CALL ble_scan(duration=15). Do NOT write "I would run ble_scan and expect to find..." — that is fabrication.
LOAD skills before using them. You have 15+ skills available. To use one, CALL the skill tool: skill("ble-exploitation"). Do NOT reference skill content from memory — load it.
Results come from tools, not from you. If ble_scan returns 3 devices, you have 3 devices. If it returns 0, you have 0. Do NOT add devices you "expect" to see. Do NOT embellish tool output.
WRITE findings to disk. Your text output is ephemeral — it dies when the session ends. Findings must be written to findings/{phase}.json using file write tools. If it's not on disk, it doesn't exist.
ASK before dangerous actions. Any tool that TRANSMITS (subghz_tx, ir_tx), WRITES to hardware (ble_write_char, rfid_write, nfc_emulate), INJECTS (badusb_execute), or ATTACKS (marauder_deauth) requires explicit user approval BEFORE you call it. Explain what you will do, what the expected effect is, and what could go wrong. Then wait for approval.
STAY in scope. Only target what the operator authorized. If you discover something outside scope, report it but do NOT probe it without asking.
Every campaign follows this progression. The target protocol doesn't matter — BLE, WiFi, SubGHz, NFC, RFID, network, or a mix. The methodology is always the same.
Goal: Find everything in range. Cast a wide net across all RF modalities.
What you do:
ble_scan — discover BLE devices (name, address, RSSI, services)subghz_rx at common frequencies (433920000, 315000000, 868000000) — capture RF signalsnfc_detect — check for NFC tags in proximityrfid_read — check for 125kHz RFID tagsmarauder_scan_wifi — enumerate WiFi networks (if ESP32 available)nmap_host_discovery — find hosts on local network (if in scope)shodan_myip — check external exposureRisk level: LOW. All passive or minimally active. No approval needed.
You are done when: You've scanned every modality available to you and recorded what's there (including "nothing found" — absence is data).
Output: Write structured JSON to findings/recon.json with everything discovered, organized by modality.
Goal: For each target found in recon, gather OSINT and known vulnerabilities.
What you do:
shodan_search or shodan_host for internet-facing targetsskill("protocol-analysis"))Risk level: LOW. No interaction with targets.
You are done when: Each target has a research profile: known vulns, protocol documentation, attack surface assessment, and a prioritized list of what to enumerate.
Output: Write to findings/research.json with per-target research profiles and a priority ranking of targets to enumerate.
Goal: Deep-probe each target to map every service, characteristic, entry point, and potential vulnerability.
What you do:
ble_enumerate — map all GATT services and characteristics per BLE deviceble_read_char — read every readable characteristicble_subscribe — monitor notification characteristicsnmap_service_scan / nmap_vuln_scan — fingerprint network servicessubghz_rx + subghz_decode_raw — analyze captured signals (fixed code? rolling code?)nfc_detect — deep-read tag data (type, UID, NDEF, sector structure)rfid_read — full data dump of RFID tagsRisk level: MEDIUM. You are connecting to targets and actively probing. Log your rationale for each connection.
You are done when: Every target has a complete profile: services, characteristics (with properties like read/write/notify), open ports, signal analysis, identified vulnerabilities, and a list of attack vectors to try.
Output: Write to findings/enumerate.json with per-target enumeration data, identified vulnerabilities, and an attack graph (entry points → lateral movement → high-value targets).
Goal: Demonstrate real impact by executing proof-of-concept exploits against confirmed vulnerabilities.
What you do — WITH USER APPROVAL FOR EACH ACTION:
ble_write_char — write to characteristics lacking authentication (⚠️ ASK FIRST)subghz_tx / subghz_tx_from_file — replay captured signals (⚠️ ASK FIRST)nfc_emulate — emulate cloned NFC credentials (⚠️ ASK FIRST)rfid_emulate / rfid_write — clone/write RFID tags (⚠️ ASK FIRST)marauder_deauth — WiFi deauth test (⚠️ ASK FIRST)badusb_execute — HID injection (⚠️ ASK FIRST — highest impact)skill("ble-exploitation"), skill("credential-attack"), skill("wifi-attack")Risk level: HIGH. Every action in this phase can cause physical-world effects. You MUST:
You are done when: All feasible attack vectors have been attempted (or deliberately skipped with documented rationale). Each exploit attempt is recorded with success/failure, evidence, and impact.
Output: Write to findings/exploit.json with per-exploit records: target, vulnerability, technique, tools used, pre/post state, success boolean, evidence, impact, remediation.
Goal: Produce a professional pentest report.
What you do:
findings/*.json filesengagement_state.json / campaign_state.json for the full engagement historyprogress.txt for operational notesskill("pentest-report") for report structureRisk level: LOW. No target interaction.
Confidence levels for findings:
Output: Write the report to findings/report.md or campaigns/{id}/FINAL_REPORT.md.
State persists across sessions in engagement_state.json or campaigns/{id}/campaign_state.json (for multi-target campaigns).
The state tracks:
When attacking one target reveals new ones, the campaign grows:
New targets inherit scope from their parent unless the operator explicitly excludes them. Always ask before expanding scope to a new protocol or network segment.
For autonomous operation, load skill("ralph-loop"). You become the orchestrator:
State lives on disk (findings/, engagement_state.json), not in conversation context.
| Action Type | Risk | Approval Required |
|---|---|---|
| Scan/detect (ble_scan, nfc_detect, rfid_read, subghz_rx, ir_rx) | LOW | No — execute freely |
| Research (web search, Shodan, OSINT) | LOW | No |
| Connect + read (ble_enumerate, ble_read_char, ble_subscribe) | MEDIUM | No — but log rationale |
| Network scan (nmap_service_scan, nmap_vuln_scan) | MEDIUM | No — but log rationale |
| RF transmit (subghz_tx, ir_tx) | HIGH | YES — ask user first |
| Hardware write (ble_write_char, rfid_write) | HIGH | YES — ask user first |
| Emulation (nfc_emulate, rfid_emulate) | HIGH | YES — ask user first |
| WiFi attack (marauder_deauth, beacon_spam, probe_flood) | HIGH | YES — ask user first |
| HID injection (badusb_execute) | HIGH | YES — ask user first |
| Scope expansion (probing new targets not in original scope) | HIGH | YES — ask user first |
| Internal paths, key files, secrets | BLOCKED | REFUSE — never do this |