| name | scan-configuration |
| description | Guide for agents to help users configure NightVision DAST scans. Use when creating targets, setting up authentication (Playwright, headers, cookies), recording HTTP traffic, managing projects, configuring scope exclusions, or preparing private network scans. |
| user-invocable | true |
| allowed-tools | Bash |
NightVision Scan Configuration
Use this skill when helping users set up everything needed before running a NightVision DAST scan — targets, authentication, traffic recordings, projects, and scope control.
Agent workflow
When a user asks to configure a scan:
- Check prerequisites — verify the NightVision CLI is available (
nightvision --help). Check if NIGHTVISION_TOKEN is set.
- Determine what exists — ask if they have a NightVision account, project, and token already. Use
nightvision project list and nightvision target list -p <project> to see current state (output defaults to text; use --format json for structured parsing)
- Create the project (if needed) — projects organize targets, scans, and auth resources
- Create the target — web app or API, with the correct URL and spec
- Set up authentication (if needed) — determine the method and guide the user through it
- Record traffic (if needed) — for apps with complex workflows or dynamic identifiers
- Configure scope — set exclusions to avoid scanning health checks, admin endpoints, etc.
- Verify readiness — confirm the target is reachable and the auth works
Related skills: Use ci-cd-integration for pipeline setup, api-discovery for spec extraction, scan-triage for interpreting results.
Projects
Projects are organizational containers for targets, scans, and auth resources. They can be shared with team members.
nightvision project create -n my-project
nightvision project list
nightvision project set -p my-project
Targets
Two types: Web (URL only) and API (URL + OpenAPI/Postman spec).
Creating targets
nightvision target create my-web-app https://staging.example.com \
--type WEB -p my-project
nightvision target create my-api https://api.example.com \
--type API -p my-project --spec-file openapi-spec.yml
nightvision target create my-api https://api.example.com \
--type API -p my-project --spec-url https://api.example.com/openapi.json
nightvision target create my-api $URL --type API -p my-project --spec-file spec.yml \
|| nightvision target update my-api -p my-project --spec-file spec.yml
Updating targets
nightvision target update my-api -p my-project --spec-file new-spec.yml
nightvision target update my-api -p my-project -u https://new-staging.example.com
nightvision target list -p my-project
API spec sources
For API targets, the spec can come from:
- Local file (
--spec-file) — JSON or YAML OpenAPI/Swagger or Postman collection
- Remote URL (
--spec-url) — publicly accessible spec endpoint
- API Discovery (
nightvision swagger extract) — extracted from source code (see the api-discovery skill)
- Postman conversion — convert Postman collections to OpenAPI with
p2o (npm: postman-to-openapi)
Authentication
NightVision supports three auth methods. The agent should help the user choose the right one.
| Method | Use when | Agent can help? |
|---|
| Playwright (interactive login) | Form-based logins, OAuth flows, MFA | No — requires user's browser |
| Headers | API keys, bearer tokens, static auth headers | Yes — agent can construct the command |
| Cookies | Session cookies from a logged-in browser | Partially — user provides cookie values |
Playwright authentication (user must run locally)
Records a browser-based login flow that NightVision replays during scans. This requires an interactive browser session — instruct the user to run this themselves.
nightvision auth playwright create my-auth https://myapp.example.com
nightvision auth playwright update my-auth https://myapp.example.com
NightVision stores the recording securely and replays it before each scan. Screenshots and video are captured to verify login success.
Header authentication
For APIs using static auth headers (API keys, bearer tokens). The agent can help build this command.
nightvision auth headers create my-auth \
-H "Authorization: Bearer eyJhbGciOi..."
nightvision auth headers create my-auth \
-H "Authorization: Bearer eyJhbGciOi..." \
-H "X-API-Key: abc123"
nightvision auth headers update my-auth \
-H "Authorization: Bearer new-token..."
Cookie authentication
nightvision auth cookies create my-auth \
--cookie "session_id=abc123; Path=/; HttpOnly"
Managing auth resources
nightvision auth list -p my-project
nightvision auth delete my-auth -p my-project
Using auth in scans
nightvision scan my-target -p my-project --auth my-auth
nightvision scan my-target -p my-project -C <credentials-uuid>
nightvision scan my-target -p my-project --no-auth
HTTP traffic recording
Recording HTTP traffic (HAR files) improves scan coverage for apps with:
- Pages behind complex business logic workflows
- Endpoints requiring valid UUIDs or dynamic identifiers not in the API spec
The HAR file is recorded once and replayed in all subsequent scans on that target.
nightvision traffic record my-recording https://myapp.example.com/workflow \
--target my-target --output traffic.har
nightvision traffic upload traffic.har --target my-target
nightvision traffic list --target my-target
nightvision traffic download my-recording --output traffic.har
Traffic recording requires a browser — instruct the user to run this locally.
Scope control
Control which URLs and elements are included or excluded from scans.
nightvision target update my-target -p my-project \
--exclude-url "/health,/metrics,/admin.*,/api/internal.*"
nightvision target update my-target -p my-project \
--exclude-xpath "//button[@id='delete'],//a[@class='logout']"
nightvision target update my-target -p my-project --exclude-url ""
nightvision target update my-target -p my-project --exclude-xpath ""
Common exclusion patterns:
/health, /healthz, /ready — health check endpoints
/metrics, /prometheus — monitoring endpoints
/admin.* — admin panels (if not in scope)
- Logout buttons/links — prevents the scanner from logging itself out
Private networks (Smart Proxy)
NightVision can scan targets that are not publicly accessible. The Smart Proxy is built into the CLI and activates automatically when the target is unreachable from the internet.
Supported environments: localhost, Docker containers, Kubernetes clusters, staging servers, corporate data centers.
nightvision scan my-target -p my-project
nightvision scan my-target -p my-project --force-private-scan
Firewall whitelisting
If the target is behind a corporate firewall, whitelist these NightVision AWS NAT Gateway IPs:
- 44.210.184.14
- 3.210.133.44
- 18.210.3.10
- 52.207.103.176
- 52.201.44.112
- 50.17.248.188
Listing scans
View scan history and status across projects.
nightvision scan list
nightvision scan list -p my-project
nightvision scan list -p project-a -p project-b
nightvision scan list --all
Output includes scan ID, target name, status, start time, duration, and issue count.
Scan engine options
nightvision scan my-target -p my-project --no-nuclei
nightvision scan my-target -p my-project --no-zap
nightvision scan my-target -p my-project --disable-zap-active-alerts 40012,40014
nightvision scan my-target -p my-project --disable-nuclei-folders cves/2021
nightvision scan my-target -p my-project --max-duration-minutes 120
Verification checklist
Before running a scan, verify:
- Token —
NIGHTVISION_TOKEN is set (or user is logged in)
- Target — exists and URL is correct (
nightvision target list -p my-project)
- Spec (API targets) — uploaded and processing complete (CLI auto-retries if not ready)
- Auth (if needed) — recorded and associated with the project (
nightvision auth list -p my-project)
- Reachability — target is accessible from the machine running the scan (or Smart Proxy will handle it)