Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

ionsec-threat-intelionsec 威胁情报

Agent Skill

ionsec-threat-intel 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,236

周安装

139

GitHub Stars

公开资料未说明

下载量

1,134
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ionsec-threat-intel(ionsec 威胁情报)
来源仓库:https://github.com/nirhalfon/ionsec-threat-intel
安装命令:
openclaw skills install ionsec-threat-intel
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ionsec-threat-intel

简介

用于查找、检索和筛选相关信息,适合在 OpenClaw 中快速定位结果。

  • 适用于查询多种威胁情报服务以丰富 IOC。
  • 支持 IP 信誉、域分析、URL 扫描和恶意软件检测。
  • 安装命令为 openclaw skills install ionsec-threat-intel,建议确认权限范围和维护状态。
  • 使用前需确认是否会触发联网或命令执行,确保符合实际需求。

SKILL.md

name
threat-intel
description
Query multiple threat intelligence services for IOC enrichment including IP reputation, domain analysis, URL scanning, hash lookups, and malware detection. Use when investigating observables (IP, domain, URL, hash) to gather context from external sources like VirusTotal, GreyNoise, Shodan, AbuseIPDB, AlienVault OTX, and more. Supports both API-key services and free services.

Threat Intel

Overview

Query multiple external threat intelligence services to enrich observables (IPs, domains, URLs, hashes). Aggregates data from security vendors, open-source feeds, and specialized platforms to provide comprehensive IOC context.

Supported Observable Types:

  • IP addresses - Reputation, geolocation, ASN, open ports, malicious activity
  • Domains - WHOIS, DNS records, reputation, phishing detection
  • URLs - Scan reports, redirects, phishing detection, screenshot analysis
  • Hashes (MD5/SHA1/SHA256) - Malware detection, file analysis, known samples

Quick Start

Basic Usage

# Check an IP across multiple services
openclaw threat-intel ip 8.8.8.8 --services greynoise,abuseipdb,virustotal

# Check a domain
openclaw threat-intel domain evil.com --services all

# Check a hash
openclaw threat-intel hash a3b2c1d4e5f6... --services virustotal,otx

# Check a URL
openclaw threat-intel url http://suspicious.site/payload.exe --services urlscan

# View rate limit status
openclaw threat-intel --rate-limits

API Key Management

Most services require API keys. Configure them interactively:

openclaw threat-intel setup

Or set environment variables:

export VT_API_KEY="your_virustotal_key"
export GREYNOISE_API_KEY="your_greynoise_key"
export SHODAN_API_KEY="your_shodan_key"
export OTX_API_KEY="your_otx_key"
export ABUSEIPDB_API_KEY="your_abuseipdb_key"
export URLSCAN_API_KEY="your_urlscan_key"
export SPUR_API_KEY="your_spur_key"
export VALIDIN_API_KEY="your_validin_key"

See references/api-keys.md for full list of required keys per service.

Available Services

Free Services (No API Key Required)

ServiceObservable TypesDescription
MalwareBazaarHashMalware sample database
URLhausURLMalicious URL database
DNS0DomainDNS resolver with threat detection
Google DNSDomainPublic DNS resolver
Cloudflare DNSDomainPublic DNS resolver
PulsediveIP, Domain, URLThreat intelligence with rate limits

Services Requiring API Keys

ServiceObservable TypesBest For
VirusTotal v3IP, Domain, URL, HashComprehensive malware detection
GreyNoiseIPInternet background noise and scanner classification
ShodanIPOpen ports, services, and exposed systems
AlienVault OTXIP, Domain, URL, HashThreat community data
AbuseIPDBIPIP reputation and reported abuse
URLscanURLLive URL scanning and screenshot
Spur.usIPVPN, proxy, and hosting detection
ValidinIP, Domain, HashPassive DNS, subdomains, and WHOIS

See references/services.md for complete service documentation.

Workflows

IOC Investigation

When investigating a suspicious observable, use this pattern:

  1. Quick triage - Check free services first
   openclaw threat-intel ip <target> --services pulsedive
  1. Deep enrichment - Add premium services for known-bad indicators
   openclaw threat-intel ip <target> --services virustotal,greynoise,shodan
  1. Correlate - Cross-reference with multiple sources
   openclaw threat-intel ip <target> --services all

Bulk Enrichment

Process multiple observables from a file:

openclaw threat-intel bulk iocs.txt --output results.json

Format: one observable per line, optionally prefixed with type:

ip:8.8.8.8
domain:evil.com
hash:a3b2c1...

Scripts

Use these scripts directly for programmatic access:

  • scripts/threat_intel.py - Main CLI tool
  • scripts/check_ip.py - IP-focused helper script
  • scripts/bulk_check.py - Bulk processing
  • scripts/setup.py - Explicit interactive API key configuration

Output Formats

Default (Table)

Service        | Result | Score | Details
---------------|--------|-------|--------
VirusTotal     | ⚠️ Suspicious | 12/71 | 12 vendors flagged
GreyNoise      | ✅ Benign  | 0%    | Classified as benign
AbuseIPDB      | ⚠️ Suspicious | 85%   | 12 reports

JSON (for automation)

openclaw threat-intel ip 8.8.8.8 --format json

Markdown (for reports)

openclaw threat-intel ip 8.8.8.8 --format markdown

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.02%
按下载量换算839

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills