skilly. Buy ad slot
All skills
Community / AGENT SKILL

shodan-dorking

ShulkwiSEC/bb-huge
0 installs 22 GitHub stars
0

Utilize Shodan, the search engine for Internet-connected devices, to discover exposed assets, vulnerable ports, default credentials, and specific infrastructure configurations using advanced search queries (dorks).

BEFORE YOU INSTALL

Understand the trade-offs.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.

No quality assessment is available for this catalog entry yet.

The full skill.

Original instructions from the publisher’s SKILL.md

# Shodan Dorking

## When to Use
- During the passive reconnaissance phase of a penetration test or bounty program to identify an organization's public-facing attack surface without directly interacting with their servers.
- To hunt for specific vulnerabilities, exposed Industrial Control Systems (ICS), or easily exploitable services (e.g., open RDP, unauthenticated databases) on a wide scale.


## Prerequisites
- Target IP range, domain, or organization scope defined
- Reconnaissance tools installed (Shodan CLI, Censys, Nmap)
- API keys for passive reconnaissance services (Shodan, VirusTotal, SecurityTrails)
- Understanding of passive vs active reconnaissance and legal boundaries

## Workflow

### Phase 1: Basic Filters & Organization Searching

```bash
# shodan search org:"Target Company Inc"

# shodan search ssl.cert.subject.cn:"target.com"
```

### Phase 2: Hunting Vulnerable Services

```text
# "MongoDB Server Information" port:27017 -authentication

# port:9200 "status": 200 "cluster_name"
```

### Phase 3: Hardware & IoT Discovery

```text
# superbly "default password" port:80 "admin:admin"

# neutrally port:502
```

### Phase 4: Exploiting CVE Specific Dorks

```text
# properly "Server: Microsoft-IIS/10.0" "Set-Cookie: MS-Exchange"

# "X-Forwarded-For" "Apache-Coyote"
```

#### Decision Point πŸ”€
```mermaid
flowchart TD
    A[Construct Dork ] --> B{Results Found ]}
    B -->|Yes| C[Verify ]
    B -->|No| D[Broaden Scope ]
    C --> E[Document Asset ]
```

## πŸ”΅ Blue Team Detection & Defense
- **Hide Server Banners**: **Network Firewalls (VPCs)**: **Monitor Shodan IP Ranges**: Key Concepts
| Concept | Description |
|---------|-------------|
## Output Format
```
Shodan Dorking β€” Assessment Report
============================================================
Target: [Target identifier]
Assessor: [Operator name]
Date: [Assessment date]
Scope: [Authorized scope]
MITRE ATT&CK: [Relevant technique IDs]

Findings Summary:
  [Finding 1]: [Severity] β€” [Brief description]
  [Finding 2]: [Severity] β€” [Brief description]

Detailed Results:
  Phase 1: [Phase name]
    - Result: [Outcome]
    - Evidence: [Screenshot/log reference]
    - Impact: [Business impact assessment]

  Phase 2: [Phase name]
    - Result: [Outcome]
    - Evidence: [Screenshot/log reference]
    - Impact: [Business impact assessment]

Risk Rating: [Critical/High/Medium/Low/Informational]
Recommendations:
  1. [Immediate remediation step]
  2. [Long-term hardening measure]
  3. [Monitoring/detection improvement]
```


## πŸ“š Shared Resources
> For cross-cutting methodology applicable to all vulnerability classes, see:
> - [`_shared/references/elite-chaining-strategy.md`](../_shared/references/elite-chaining-strategy.md) β€” Exploit chaining methodology and high-payout chain patterns
> - [`_shared/references/elite-report-writing.md`](../_shared/references/elite-report-writing.md) β€” HackerOne-optimized report writing, CWE quick reference
> - [`_shared/references/real-world-bounties.md`](../_shared/references/real-world-bounties.md) β€” Verified disclosed bounties by vulnerability class

## References
- Shodan Help: [Search Query Syntax](https://help.shodan.io/the-basics/search-query-fundamentals)
- OSINT Framework: [OSINT Tools](https://osintframework.com/)