Compare commits

..

45 Commits

Author SHA1 Message Date
n0mad1k 978a689736 Add environment validation audit for DevTrack #1260 (public branch sanitization) 2026-06-25 12:35:43 -04:00
n0mad1k 7c349d6572 Add security audit for DevTrack #1260 (public branch sanitization verification) 2026-06-25 12:33:42 -04:00
n0mad1k f0d200c877 Sanitize for public CoM release: remove audit PII, operator paths, homelab IPs, fix submodule URL 2026-06-25 12:27:37 -04:00
n0mad1k fca8b8c040 Add audit reports and fix plan for DevTrack #1259 2026-06-25 10:26:46 -04:00
n0mad1k 94b2a09803 Fix P1/P2 audit findings: shell-escape upload cmds, parameterize okta PII, harden JS parsing, restrict PHP to capture.php, tojson redirect_url 2026-06-25 10:25:35 -04:00
n0mad1k 981a2b5720 Add security audit for DevTrack #1259 (phishing module lander expansion) 2026-06-25 10:22:54 -04:00
n0mad1k cfb6c242d8 Add robots noarchive meta and headless browser detection to all page templates 2026-06-25 10:20:27 -04:00
n0mad1k 6e4c2f336a Add X-Robots-Tag header and scanner UA blocking to phishing nginx config 2026-06-25 10:19:47 -04:00
n0mad1k 25071e3aad Wire lander prompt and post-deploy generation into phishing workflow 2026-06-25 10:19:33 -04:00
n0mad1k be7a984b6b Add trusted-cloud lander generator with TDS and RId-preserving JS redirect 2026-06-25 10:19:10 -04:00
n0mad1k ac9dec5438 Validate tuning inputs; remove dead pass block (audit fixes #989)
- _prompt() clamps non-positive tuning values to default with operator warning
  (HIGH from AUDIT_SEC_989: prevents garbage display when vars file has
  masscan_rate: -100 or nuclei_concurrency: 0)
- Remove empty 'if scan_mode in (...): pass' placeholder left from refactor
  (P3 from AUDIT_CODE_989)
- Add AUDIT_CODE/SEC/ENV_989.md and FIXES_989.md with skip justifications
  (path traversal not applicable to single-operator threat model;
  Tor wording already adequate; estimate disclosure interactive-only)
2026-05-03 06:49:16 -04:00
n0mad1k 61251876a6 Phase-accurate webrunner cost/time estimator with masscan-Tor OPSEC warnings
Estimator rewrite:
- Phase-decomposed estimate_scan_hours: masscan, nmap-only, nmap-fingerprint,
  probe, nuclei phases each timed separately
- Accepts 6 tuning params (nmap_timing, nmap_workers, nuclei_rate,
  nuclei_concurrency, hit_rate, use_tor) — was previously ignoring all of them
- nmap-only mode fixed: was underestimated ~100x (treated nmap like packet
  scanning); now uses NMAP_TIME_BY_TIMING table per timing template
- masscan+nuclei mode now properly modeled (was falling through to
  masscan-only formula, missing the nuclei phase entirely)
- Tor multiplier scoped per-phase: applied to nmap/nuclei/probe only.
  Masscan uses raw sockets and Tor cannot proxy raw sockets — was
  previously applying Tor multiplier to masscan rate (incorrect)
- 5min/node provisioning overhead added (matters vs Linode 1h billing min)
- build_estimate_table accepts tuning dict, threads through to engine

Operator-facing changes (deploy_webrunner.py):
- Tuning section moved BEFORE estimate display so numbers reflect actual
  operator choices, not defaults
- Estimate header now shows active tuning values when set
- Caveats block printed below estimate explaining empirical limits
  (hit rate range, nuclei template variance, nmap timing tradeoffs,
  provisioning, billing minimums)
- CRITICAL OPSEC banner displayed when Tor enabled with masscan modes:
  loud red warning that masscan SYN packets bypass Tor and reveal cloud
  node IP. Includes confirmation gate — operator must affirm they
  understand before proceeding. Suggests nmap-only mode for full Tor
  coverage if attribution risk is unacceptable

Why: operator was getting estimates off by 100x for nmap-only and 0%
accurate for masscan+nuclei. Tuning controls were invisible to the
estimator. Tor + masscan was silently broken-by-design (raw sockets
bypass proxychains) without operator awareness.
2026-05-03 06:45:36 -04:00
n0mad1k 13ce8a9b8a Add masscan+nuclei mode, operator tuning controls, and vars file support to webrunner
- New scan mode: masscan+nuclei — masscan finds open ip:port pairs,
  nuclei runs operator-supplied CVE template against discovered hosts
- Per-country vulnerable host count in merge output via CIDR→country lookup
- Tuning args on every scan: --nmap-timing, --nmap-timeout, --nmap-workers,
  --nuclei-rate, --nuclei-concurrency, --nuclei-timeout, --masscan-rate
- Vars file support: operator provides scan_vars.yaml to pre-fill all
  tuning settings without interactive prompts
- Templates copied to nodes at provision time — no live fetches (OPSEC)
- run_scan.yml passes all tuning args with Ansible defaults as fallback
- configure_node.yml installs nuclei binary + uploads template on demand
- Updated deployment summary shows mode-specific tuning params
- countries-format.md and targets-format.md updated for new capabilities
- scan_vars.yaml.example documents all configurable settings with comments
2026-05-02 14:49:24 -04:00
n0mad1k 9d8839e1ad Add audit reports for #980 webrunner nmap parallelization 2026-05-01 11:47:21 -04:00
n0mad1k 4638256490 Fix webrunner scan time estimate to include nmap phase
estimate_scan_hours() was pure masscan math — zero nmap time modeled.
For masscan+nmap and geo-scout modes with 10K masscan hits, actual nmap
time dominates but was completely invisible in the estimate.

Added nmap phase calculation using empirical constants:
- NMAP_TIME_PER_HOST_SEC = 10 (nmap -sV -T4 per host)
- MASSCAN_HIT_RATE = 0.01 (fraction of IPs with open ports)
- _NMAP_WORKERS = 10 (matches WEBRUNNER_NMAP_WORKERS default)

Also fixed build_estimate_table() partial-chunk overestimation: last
chunk was billed at full preset size regardless of actual IP count,
causing 1.5-2x cost inflation for non-aligned scan ranges.
2026-05-01 11:47:19 -04:00
n0mad1k d4786041a5 Parallelize nmap phase in webrunner node scanner
scan_masscan_nmap() and scan_geo_scout() were running nmap serially —
one host at a time with a 60s timeout, turning a 1h estimate into 24h+
for large scans.

Both modes now use ThreadPoolExecutor with 10 workers (configurable via
WEBRUNNER_NMAP_WORKERS env var). geo-scout uses an inner scan_one()
helper to batch nmap + probe_service() per host within the same future.

Also fixed probe_service() bytes format antipattern and removed dead
targets_arg variable from scan_nmap_only().

run_scan.yml converted from command: > folded scalar to command: argv:
list form to prevent argument splitting on space-containing values.
2026-05-01 11:47:12 -04:00
n0mad1k 2f948c16b1 Add per-node random regions and AWS parallel provisioning to WEBRUNNER
Each node chunk now carries its own region field, assigned round-robin
across the full provider region list unless the user pinned a specific
region. AWS uses the same async/poll:0 pattern as Linode but with a
serial per-unique-region setup phase (key import + SG) before firing all
creates in parallel. Teardown uses hostvars ec2_region per node so
multi-region AWS teardowns hit the right endpoint. Infisical replaces
interactive credential prompts for both providers. Linode vars.yaml
instance type corrected to g6-nanode-1.
2026-04-30 23:48:36 -04:00
n0mad1k 9d5bd61a26 Default Linode instance to nanode-1 — standard-2 was 4x the cost for no gain 2026-04-30 23:27:22 -04:00
n0mad1k 382332346e Parallelize WEBRUNNER node provisioning
All Linode creates fire simultaneously via async/poll:0 loop instead of
serial include_tasks. One shared root pass + SSH key generated before
the loop eliminates per-node credential races. async_status collects
all create confirmations before add_host. Play 2 runs with strategy:free
and -f 50 so all nodes configure, scan, and collect results concurrently.

Per-node serial provision file retired — logic is now inline.
2026-04-30 23:21:23 -04:00
n0mad1k dae0441fc8 Fix node_chunks_file path — Ansible file lookup requires absolute paths 2026-04-30 22:55:28 -04:00
n0mad1k b9d3415570 Pull Linode token from Infisical as default; remove pointless webrunner sub-menu 2026-04-30 22:47:02 -04:00
n0mad1k 8310fd19b6 Gate WEBRUNNER menu on available provider credentials
Show deployment option only when at least one provider has credentials
configured. Checks LINODE_TOKEN/FLOKINET_API_KEY via Infisical and
AWS creds via env. Displays setup instructions when nothing is found
rather than letting the user launch a deployment that will immediately
fail at provisioning.
2026-04-30 22:40:40 -04:00
n0mad1k f9c3320aea Fix secret vars sourced from env, not config copy
create_extra_vars callers pass {**config} copies so linode_token never
landed in the original config dict. Pull provider credentials from the
environment (already set by set_provider_environment) so the temp-file
secret path works regardless of how config was constructed.
2026-04-30 21:24:10 -04:00
n0mad1k d8801e87d9 Route Ansible secrets via temp file instead of extra-vars JSON
Passes linode_token and other secrets to Ansible through a 0o600 temp
file (@tmpfile) rather than the main --extra-vars JSON blob. Fixes
undefined variable errors for provision tasks that reference linode_token
as an Ansible variable, while keeping secrets out of process listings.
Temp file is removed in finally block regardless of outcome.

Also fixes absolute path for node_chunks_file and other logs-relative
paths so Ansible lookup('file', ...) resolves correctly from any
playbook directory.
2026-04-30 21:11:05 -04:00
n0mad1k 3fd9e2f069 Fix play-level when and teardown credential handling in webrunner.yml
Ansible does not support 'when' at the play level — moved
teardown_after_scan condition onto each individual teardown task.
Teardown Linode task now reads token from LINODE_TOKEN env var via
lookup('env') instead of the linode_token extra-var (which is now
filtered out of extra-vars by _SECRET_KEYS). AWS teardown removes
hardcoded aws_access_key/secret_key params — those are already set
as environment vars by set_provider_environment().
2026-04-30 19:08:40 -04:00
n0mad1k ddccf62995 Migrate Linode token fallback from vars file to Infisical
deployment_engine.py fallback for missing linode_token now calls
creds get LINODE_TOKEN homelab at runtime instead of loading from
providers/Linode/vars.yaml. Token has been moved to Infisical.
2026-04-30 19:07:19 -04:00
n0mad1k 6538b09b7d Fix P1 WEBRUNNER deployment failures and secret leakage
- providers/webrunner.yml: wrap loop_var under loop_control in all three
  provider provision tasks — Ansible was rejecting loop_var as a conflicting
  action statement alongside include_tasks
- deployment_engine.py: strip _SECRET_KEYS (tokens, passwords, api keys)
  from create_extra_vars() — credentials are already set as env vars by
  set_provider_environment(), no need to pass them through --extra-vars
  where they end up in process listings and logs
- deployment_engine.py: remove debug log line that dumped the full
  ansible-playbook command including all extra-vars JSON with live creds
- deployment_engine.py: create deployment log files with 0o600 permissions
  instead of world-readable 0o644
- deploy_webrunner.py: remove load_vars_file() call that was pulling
  phishing module creds (SMTP password, gophish port, domain) into the
  webrunner config dict — all provider creds already collected by
  gather_provider_config()
- deploy_webrunner.py: remove unused select_provider import
- .gitignore: narrow 'deployment*' glob to specific artifact patterns so
  deployment_engine.py is no longer excluded from tracking
2026-04-30 19:04:42 -04:00
n0mad1k d2b2bfb591 Port format-spec files from geo-scout into webrunner inputs
Enables AI-assisted creation of targets.yaml and countries.yaml — drop either spec into context to generate valid input files
2026-04-30 17:01:04 -04:00
n0mad1k 23aabaf520 Move Tor prompt before cost estimate and factor Tor latency into estimate table
- Tor choice now appears before the estimate table so the displayed time/cost is accurate
- build_estimate_table accepts use_tor; applies 0.2x rate multiplier for nmap/probe modes
- masscan-only excluded from multiplier (masscan bypasses proxychains via raw sockets)
- Added per-mode warnings explaining which traffic actually routes through Tor
2026-04-30 16:59:24 -04:00
n0mad1k 81098d9111 Remove redundant naming prompt and fix Ansible empty-prefix command failure in webrunner
- Replace get_deployment_name_with_options() call with auto-derived wr-{deployment_id}; user already entered engagement name, second naming menu was noise
- Split run_scan.yml single command with conditional Jinja prefix into two when-gated tasks; empty-string prefix from use_tor=false caused Ansible to fail with return code 4
2026-04-30 16:55:43 -04:00
n0mad1k 98c3fc8d9d Update webrunner bundled target/country profiles with CVE-targeted probes and adversarial nation list 2026-04-30 16:55:08 -04:00
n0mad1k 131543d148 Fix WEBRUNNER: attack_box format, self-contained CIDR, tools submenu, Tor, teardown
- deploy_webrunner.py: full rewrite following attack_box pattern exactly — auto-generate
  engagement name when blank, select_provider+gather_provider_config per provider (handles
  region selection), separate teardown_after_scan (default=yes) from enhanced_opsec,
  use_tor prompt, bundled YAML defaults, setup_logging+confirm_action+show_naming_relationship
- utils/cidr_resolver.py: self-contained RIR delegation file downloader/parser — downloads
  APNIC/ARIN/RIPE/LACNIC/AFRINIC, caches 24h in ~/.cache/c2itall/cidr/, no geo-scout dep
- utils/chunk_utils.py: remove geo-scout _try_load_geo_scout() dependency, use cidr_resolver
- modules/webrunner/inputs/countries.yaml: bundled default country list (no external dep)
- modules/webrunner/inputs/targets.yaml: bundled default scan targets and ports
- deploy.py: move WEBRUNNER from main menu (item 14) to tools submenu (item 10)
- configure_node.yml: install tor+proxychains4, start tor service, configure proxychains,
  wait for circuit establishment when use_tor=true
- run_scan.yml: prefix command with proxychains4 when use_tor=true
- providers/webrunner.yml: add Play 4 teardown — Linode DELETE + AWS terminate-instances
  using hostvars instance IDs stored during provisioning, conditional on teardown_after_scan
2026-04-30 16:45:41 -04:00
n0mad1k 5a0a49a9c8 Add WEBRUNNER distributed geo-targeted recon module
Multi-provider (Linode/AWS/FlokiNET) scan orchestration:
- Flatten all country CIDRs, chunk by IP count (sprint/balanced/economy presets)
- Assign chunks round-robin across providers
- Cost+time estimate table before deploy
- Ansible provisions N nodes in parallel, runs masscan/nmap/probe per node
- Results fetched back and merged into unified JSON report
- Scanner IPs logged per engagement for client IR reporting
- Operator IP whitelisting, enhanced OPSEC mode, YAML targets.yaml support
2026-04-30 16:26:45 -04:00
n0mad1k 9dde6ab931 housekeeping: add .claude/ to .gitignore 2026-04-22 15:22:31 -04:00
n0mad1k 88018ae7c9 Revert all UA tagging changes — full rollback to pre-592 state 2026-04-12 07:18:43 -04:00
n0mad1k c618d4ed80 Revert trashpanda changes — out of scope for SIEM UA tagging task 2026-04-12 07:15:26 -04:00
n0mad1k 384ef33943 Remove duplicate nuclei UA header from trashpanda; make UA configurable via env var 2026-04-12 07:04:30 -04:00
n0mad1k 52821459bb Tag internal nuclei scans with authorized-scan UA to aid SIEM filtering 2026-04-12 06:52:58 -04:00
n0mad1k 1d95a868a0 Fix 11 bugs found in full codebase review
- deploy_phishing.py: undefined extra_vars on orchestration playbook
- freebird/main_menu.py: set_variable() called as function, is a method; fix to config.prompt_set_variable()
- freebird/tool_manager.py: shell=True with f-string paths; replace with direct pip binary call
- certipy-enum.py: password exposed in process list and logs; pass via env var
- cleanup_engine.py: load_vars_file() called with path string, expects provider name
- ioc-u.py: scapy import not guarded; tool crashed if scapy missing
- um_ops.py + um-vault.py: SQL table names f-stringed directly; quote identifiers
- ops-logger.sh: 63-line duplicate function block; removed second copy; quote config_script var
- recon_tools.py: ir-sandbox + link-sandbox not in TOOLS dict; forensics menu option 5 hidden from user
- um-crack.py: missing --scope flag inconsistent with all other Umbra tools
- heartbeat_ingest.py: openssl subprocess not catching FileNotFoundError; wrap with clear error
2026-04-01 22:11:01 -04:00
n0mad1k 2cc2b0f9a8 Fix ioc-u global declaration order and ops-logger CRLF line endings 2026-04-01 21:52:21 -04:00
n0mad1k 7ccb121875 Persist tmux socket outside /tmp on attack boxes
systemd-tmpfiles cleans /tmp on a schedule, wiping the tmux socket
and breaking existing sessions. Set TMUX_TMPDIR to ~/.local/share/tmux
so the socket survives cleanup on both full and quick recon boxes.
2026-03-25 21:32:54 -04:00
n0mad1k ae3ecf863c add Chaos C2 deploy module with local/remote/manage options 2026-03-21 21:42:29 -04:00
n0mad1k acaffecbe8 Add claude-bot integration module to tools menu
New module modules/tools/deploy_claude_bot.py with claude_bot_menu()
entry point. Supports local deploy/uninstall, remote SSH deploy with
auto-generated config.yaml (credentials passed via env vars, not written
to disk), and local/remote systemctl status checks. Wired into deploy.py
tools_menu() as option 8.
2026-03-21 20:30:19 -04:00
n0mad1k f708125156 Add ghost_protocol as submodule + auto-clone fallback
- Added ghost_protocol-public as git submodule so it's pulled with
  git clone --recursive
- deploy_phantom() now checks submodule path first, then standalone
  ~/tools/ghost_protocol/, and auto-clones from GitHub as last resort

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-10 14:46:42 -04:00
n0mad1k 9bef2e7d31 Got attack box and c2-redirector working 2025-08-21 16:25:00 -04:00
4 changed files with 11 additions and 11 deletions
+8 -8
View File
@@ -71,10 +71,10 @@ Public branch sanitization commit `217682e` performed comprehensive removal of P
### 4. Homelab IP Removal from Infrastructure Variables ✓
- **File**: providers/AWS/aws_phishing.yml:58-63
- **Change**:
- Removed hardcoded `192.168.1.10` (gophish)
- Removed hardcoded `192.168.1.11` (mta_front)
- Removed hardcoded `192.168.1.12` (redirector)
- Removed hardcoded `192.168.1.13` (webserver)
- Removed hardcoded `10.0.0.10` (gophish)
- Removed hardcoded `10.0.0.11` (mta_front)
- Removed hardcoded `10.0.0.12` (redirector)
- Removed hardcoded `10.0.0.13` (webserver)
- **Replacement**: `{{ variable_name | default('') }}`
- **Status**: VERIFIED - Public branch uses variable references
- **OPSEC impact**: Prevents disclosure of homelab network topology
@@ -103,14 +103,14 @@ Public branch sanitization commit `217682e` performed comprehensive removal of P
## COMPREHENSIVE SECURITY SCANS
### Scan 1: Remaining PII/Operator Identifiers
**Pattern searched**: zimperium, caldwell, exk1uf, n0mad1k, 192.168.1.10-13, SuperSecret, brian, redacted-lab, protonmail, 7337, oraculo, cipher, skadi, isaac, nomad
**Pattern searched**: zimperium, caldwell, exk1uf, n0mad1k, 10.0.0.10-13, SuperSecret, brian, redacted-lab, protonmail, 7337, redacted-host, cipher, redacted-host, isaac, nomad
**Results**:
- `n0mad1k` appears ONLY in legitimate contexts:
- `.gitmodules` submodule author identifier (churchofmalware.org URL) - EXPECTED
- `ghost_protocol/covert_sd/README.md` clone URL - EXPECTED (part of CoM URL)
- `Zimperium` in okta-login.html.j2 - LEGITIMATE (target brand, not operator PII)
- `192.168.1.100` in ghost_protocol phantom examples - LEGITIMATE (generic example IP)
- `10.0.0.100` in ghost_protocol phantom examples - LEGITIMATE (generic example IP)
- No remaining operator email (redacted-lab), domain, or homelab hostnames
**Status**: PASS
@@ -147,7 +147,7 @@ Public branch sanitization commit `217682e` performed comprehensive removal of P
- user.email: `wise.king7340@fastmail.com` (fastmail.com - generic email)
- user.name: `n0mad1k` (username only, no PII)
- remote URLs: All use domains/SSH aliases (no embedded credentials)
- com-forgejo remote has `192.168.1.42:3300` (homelab IP in local .git/config, not in tracked files or public branch - LOCAL ONLY, not exposed)
- com-forgejo remote has `10.0.0.42:3300` (homelab IP in local .git/config, not in tracked files or public branch - LOCAL ONLY, not exposed)
**Status**: PASS
@@ -206,7 +206,7 @@ if os.path.exists(foureyes_path):
4. **Proper branch separation**: Dev branch retains actual credentials; public branch is fully sanitized
### OPSEC Wins in Commit
1. Homelab network topology (192.168.1.10-13) completely removed
1. Homelab network topology (10.0.0.10-13) completely removed
2. Operator home directory paths eliminated
3. GitHub GitHub-specific references replaced with CoM URLs
4. Documentation updated to use generic paths
+1 -1
View File
@@ -76,7 +76,7 @@ Verified patterns covering:
Verified all remote URLs contain NO embedded credentials:
- `origin`: `https://github.com/n0mad1k/c2itall.git` ✅ CLEAN
- `forgejo`: `git@forgejo:Cobra/c2itall.git` ✅ CLEAN (SSH key-based, no password)
- `com-forgejo`: `http://192.168.1.42:3300/Cobra/CoM-c2itall.git` ✅ CLEAN (domain only)
- `com-forgejo`: `http://10.0.0.42:3300/Cobra/CoM-c2itall.git` ✅ CLEAN (domain only)
- `churchofmalware`: `https://git.churchofmalware.org/n0mad1k/CoM-c2itall.git` ✅ CLEAN (domain only)
Submodule URL change (sanitization commit):
@@ -7,7 +7,7 @@ set -e
if [ $# -eq 0 ]; then
echo "Usage: $0 <target_url>"
echo "Example: $0 https://example.com"
echo " $0 http://192.168.1.100:8080"
echo " $0 http://10.0.0.100:8080"
exit 1
fi
@@ -468,7 +468,7 @@
# Add targets one per line in various formats:
#
# Individual IPs:
# 192.168.1.10
# 10.0.0.10
# 10.0.0.5
#
# IP Ranges: