noir
Run OWASP Noir for attack surface analysis and API endpoint discovery. Use when mapping API endpoints, finding shadow APIs, discovering hidden routes, or analyzing attack surface across multiple frameworks.
What this skill does
# OWASP Noir - API & Attack Surface Scanner
## When to Use Noir
**Ideal scenarios:**
- API endpoint discovery and inventory
- Attack surface mapping
- Shadow API detection
- Pre-pentest reconnaissance
- API security assessment preparation
- Microservices endpoint cataloging
- REST/GraphQL/WebSocket endpoint discovery
- Framework-specific route analysis
**Complements other tools:**
- Use before manual penetration testing for endpoint discovery
- Combine with vulnerability scanners (Semgrep, CodeQL) for deeper analysis
- Use with API testing tools (Burp, ZAP) for complete coverage
- Pair with SARIF Issue Reporter for findings analysis
## When NOT to Use
Do NOT use this skill for:
- Vulnerability scanning (use Semgrep, CodeQL, or DAST tools)
- Dependency scanning (use OSV-Scanner or Depscan)
- Secrets detection (use Gitleaks)
- IaC analysis (use KICS)
- Runtime API discovery (use API gateways or proxies)
## Installation
```bash
# Homebrew (macOS/Linux)
brew install noir
# Download binary (Linux)
wget https://github.com/owasp-noir/noir/releases/latest/download/noir-linux-x86_64
chmod +x noir-linux-x86_64
sudo mv noir-linux-x86_64 /usr/local/bin/noir
# Download binary (macOS)
wget https://github.com/owasp-noir/noir/releases/latest/download/noir-macos-arm64
chmod +x noir-macos-arm64
sudo mv noir-macos-arm64 /usr/local/bin/noir
# Build from source (requires Crystal)
git clone https://github.com/owasp-noir/noir.git
cd noir
shards install
shards build --release --no-debug
sudo cp bin/noir /usr/local/bin/
# Docker
docker pull ghcr.io/owasp-noir/noir:latest
# Verify
noir --version
```
## Core Workflow
### 1. Quick Scan
```bash
# Scan current directory
noir
# Scan specific path
noir -b /path/to/source
# Verbose output
noir -b /path/to/source -v
# Quiet mode
noir -b /path/to/source -q
```
### 2. Output Formats
```bash
# JSON output (default)
noir -b /path/to/source -o endpoints.json
# YAML output
noir -b /path/to/source --format yaml -o endpoints.yaml
# SARIF output
noir -b /path/to/source --format sarif -o results.sarif
# OpenAPI Specification
noir -b /path/to/source --format oas3 -o openapi.json
# HAR (HTTP Archive)
noir -b /path/to/source --format har -o endpoints.har
# Markdown Report
noir -b /path/to/source --format markdown -o report.md
# Plain text
noir -b /path/to/source --format plain
```
### 3. Technology-Specific Scanning
```bash
# Specify technologies to scan
noir -b /path/to/source -T express,django,spring
# Exclude specific technologies
noir -b /path/to/source --exclude fastapi
# List supported technologies
noir --list-techs
```
### 4. Advanced Options
```bash
# No color output (for CI)
noir -b /path/to/source --no-color
# Include technical details
noir -b /path/to/source --include-path
# Send results to URL
noir -b /path/to/source --send-req https://api.example.com/endpoints
# Proxy through Burp/ZAP
noir -b /path/to/source --send-proxy http://127.0.0.1:8080
```
## Supported Frameworks
### Web Frameworks
| Language | Frameworks |
|----------|-----------|
| **JavaScript/TypeScript** | Express.js, NestJS, Koa, Fastify, Hapi |
| **Python** | Django, Flask, FastAPI, Tornado, Bottle |
| **Java** | Spring Boot, JAX-RS, Micronaut, Quarkus |
| **Ruby** | Rails, Sinatra, Grape |
| **Go** | Gin, Echo, Fiber, Chi, Gorilla Mux |
| **PHP** | Laravel, Symfony, Slim, CodeIgniter |
| **C#** | ASP.NET Core, Nancy |
| **Rust** | Actix, Rocket, Axum, Warp |
| **Kotlin** | Ktor, Spring Boot |
### API Types
- REST APIs
- GraphQL endpoints
- WebSocket routes
- gRPC services (limited)
- OpenAPI/Swagger definitions
## Output Analysis
### SARIF Format
```bash
# Generate SARIF for integration
noir -b /path/to/source \
--format sarif \
-o endpoints.sarif \
--no-color
# SARIF structure includes:
# - Each endpoint as a "result"
# - HTTP methods (GET, POST, PUT, DELETE, etc.)
# - Route paths
# - Parameters
# - Source file location
```
### JSON Output Structure
```json
{
"endpoints": [
{
"method": "POST",
"url": "/api/users",
"params": ["username", "email", "password"],
"protocol": "http",
"details": {
"file": "src/routes/users.js",
"line": 42,
"code_type": "javascript"
}
}
]
}
```
### OpenAPI Output
```bash
# Generate OpenAPI spec from discovered endpoints
noir -b /path/to/source --format oas3 -o openapi.json
# Use with API testing tools
swagger-cli validate openapi.json
openapi-generator generate -i openapi.json -g postman-collection
```
## CI/CD Integration (GitHub Actions)
```yaml
name: Noir API Discovery
on:
push:
branches: [main]
pull_request:
schedule:
- cron: '0 0 * * 1' # Weekly
jobs:
noir:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Noir
run: |
wget -q https://github.com/owasp-noir/noir/releases/latest/download/noir-linux-x86_64
chmod +x noir-linux-x86_64
sudo mv noir-linux-x86_64 /usr/local/bin/noir
- name: Run Noir
run: |
noir -b ${{ github.workspace }} \
--format sarif \
-o noir-results.sarif \
--no-color
- name: Upload SARIF
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: noir-results.sarif
category: noir-api-discovery
- name: Generate OpenAPI
run: |
noir -b ${{ github.workspace }} \
--format oas3 \
-o openapi.json
- name: Upload Results
uses: actions/upload-artifact@v4
with:
name: noir-results
path: |
noir-results.sarif
openapi.json
```
## Common Use Cases
### 1. Pre-Pentest Reconnaissance
```bash
# Discover all endpoints
noir -b /app/source \
--format json \
-o endpoints.json \
-v
# Generate attack surface report
noir -b /app/source \
--format markdown \
-o attack-surface.md
# Create OpenAPI for tools
noir -b /app/source \
--format oas3 \
-o openapi.json
```
### 2. Microservices Inventory
```bash
# Scan multiple services
for service in services/*/; do
noir -b "$service" \
--format json \
-o "inventory/$(basename $service).json"
done
# Combine results
jq -s 'add' inventory/*.json > complete-inventory.json
```
### 3. Shadow API Detection
```bash
# Scan codebase
noir -b /path/to/source -o discovered-endpoints.json
# Compare with documented API
diff <(jq -r '.endpoints[].url' discovered-endpoints.json | sort) \
<(jq -r '.paths | keys[]' openapi-spec.json | sort)
# Undocumented endpoints are "shadow APIs"
```
### 4. Framework Migration Analysis
```bash
# Before migration - discover all routes
noir -b /old/app -T express -o old-endpoints.json
# After migration - verify parity
noir -b /new/app -T fastify -o new-endpoints.json
# Compare
diff <(jq -r '.endpoints[].url' old-endpoints.json | sort) \
<(jq -r '.endpoints[].url' new-endpoints.json | sort)
```
## Advanced Features
### Technology Detection
```bash
# Auto-detect technologies
noir -b /path/to/source --list-techs
# Show detected frameworks
noir -b /path/to/source -v | grep "Detected"
```
### Filtering Results
```bash
# Only GET endpoints
jq '.endpoints[] | select(.method == "GET")' endpoints.json
# Only authenticated endpoints (heuristic)
jq '.endpoints[] | select(.url | contains("auth") or contains("login"))' endpoints.json
# High-risk endpoints
jq '.endpoints[] | select(.method == "DELETE" or .method == "PUT")' endpoints.json
```
### Proxy Integration
```bash
# Send discovered endpoints to Burp Suite
noir -b /path/to/source \
--send-proxy http://127.0.0.1:8080 \
--send-req http://target.example.com
# Creates Burp site map automatically
```
## Security Analysis Workflow
### Step 1: Discover
```bash
noir -b /app/source --format json -o endpoints.json
```
### Step 2: Categorize
```bash
# Extract by risk level
jq '.endpoints[] | select(.method == "DELETE")' endpoints.json > high-riRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.