AgentStack
SKILL verified MIT Self-run

Lookup Otx

skill-liberty91ltd-cti-skills-lookup-otx · by Liberty91LTD

Use when you need to check an IP, domain, file hash, or URL against AlienVault OTX community pulses. Returns pulse count, key pulses, tags, related indicators, and passive DNS. Commonly invoked by investigation skills to pull community context. Retrieval only — does not interpret.

No reviews yet
0 installs
12 views
0.0% view→install

Install

$ agentstack add skill-liberty91ltd-cti-skills-lookup-otx

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Lookup Otx? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

lookup-otx

Queries AlienVault OTX for community pulse context on IPs, domains, file hashes, and URLs. Retrieval only — do not interpret results.

When to invoke

  • User asks what pulses reference an indicator
  • Investigation skill needs community context (who's tracking this?)
  • IOC enrichment pipeline is adding pulse metadata

How to invoke

Two CLIs are provided. Pick by capability needed:

Basic lookup — Node CLI (zero deps)

node tools/clis/otx.js  
# where  is one of: ip, domain, hash, url

Hits the /general endpoint only. Returns pulses, related indicators, passive DNS, whois. Best for fast retrieval inside an investigation chain.

Advanced operations — Python CLI (uses official OTXv2 SDK)

python3 tools/clis/otx.py indicator   [--section SECTION]
python3 tools/clis/otx.py pulse search  [--limit N]
python3 tools/clis/otx.py pulse get 
python3 tools/clis/otx.py pulse subscribed [--limit N]

Self-bootstraps a private venv at tools/clis/.venv-otx/ on first run (requires Python 3 + a working python3 -m venv). No global pip install.

Capabilities the Node CLI doesn't have:

  • Full indicator details across every OTX section (general, reputation, geo, malware, urllist, passivedns, http_scans, analysis) instead of just /general. Pass --section to limit.
  • Pulse keyword search (pulse search "lazarus") — discover pulses by topic.
  • Pulse retrieval by ID with full description, references, and indicator list.
  • Subscribed pulses — list pulses your OTX account follows.

Examples:

# Basic — same shape as Node CLI but with all sections populated
python3 tools/clis/otx.py indicator domain example.com

# Just one section
python3 tools/clis/otx.py indicator ip 203.0.113.42 --section malware

# Hash type auto-detected from length (MD5/SHA1/SHA256)
python3 tools/clis/otx.py indicator hash 44d88612fea8a8f36de82e1278abb02f

# Discover pulses by keyword
python3 tools/clis/otx.py pulse search "ransomware exchange"

# Pull a specific pulse
python3 tools/clis/otx.py pulse get 5f8f3e6e2a1b3c4d5e6f7a8b

Both CLIs accept --dry-run to preview the request without calling the API. Both exit code 2 if $OTX_API_KEY is unset (when not in dry-run). Report missing key; do not fabricate.

Response format

source: otx
indicator: 
type: ip | domain | hash | url
query_time: 
pulse_count: 
key_pulses:
  - name: 
    tags: []
    created: 
    tlp: 
    author: 
related_indicators: []
passive_dns: []   # only for IP/domain

Rate limits

Free tier: 10,000 req/hour — effectively unconstrained for interactive use.

Source reliability (Admiralty default)

Default rating for downstream /score-source: C3 (fairly reliable, possibly true). Community-submitted pulses vary wildly in quality. Upgrade to B2 if pulse author is a known trustworthy org (Mandiant, Unit42, Talos, etc.).

Related skills

  • /lookup-virustotal — reputation aggregator for the same indicator
  • /lookup-urlscan — live scan of URLs/domains
  • /score-source — apply Admiralty rating
  • /ip-investigation, /domain-investigation, /hash-investigation, /url-investigation

See also

  • Integration setup: tools/integrations/otx.md
  • Node CLI source: tools/clis/otx.js
  • Python CLI source (OTXv2 SDK): tools/clis/otx.py
  • Official Python SDK: https://github.com/AlienVault-OTX/OTX-Python-SDK
  • API reference: https://otx.alienvault.com/api

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.