用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AeonDave/malskill --skill phoneinfoga命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | phoneinfoga |
| description | Auth/lab ref: Phone number OSINT tool - gather carrier, location, and online presence data for phone numbers. |
| license | MIT |
| compatibility | Go binary; Linux/macOS/Windows. |
| metadata | {"author":"AeonDave","version":"1.1"} |
Phone number reconnaissance — carrier, country, online presence, breach data.
# Download from GitHub releases
# Or Docker
docker run --rm sundowndev/phoneinfoga scan -n +1234567890
# Scan a number (international format)
phoneinfoga scan -n +14151234567
# Start web UI
phoneinfoga serve
# → http://localhost:5000
| Command | Purpose |
|---|---|
scan -n NUMBER | Full scan on number |
serve | Launch web dashboard |
--output json | JSON output |
Quick scan:
phoneinfoga scan -n +14151234567
Web dashboard for manual investigation:
phoneinfoga serve &
open http://localhost:5000
JSON output for automation:
phoneinfoga scan -n +14151234567 --output json > phone.json
Multiple numbers from file:
while read num; do
phoneinfoga scan -n "$num" --output json >> all_results.json
done < numbers.txt
Configured in ~/.phoneinfoga/config.yaml:
numverify_api_key: "YOUR_KEY" # numverify.com — validation + carrier
googlecse_api_key: "YOUR_KEY" # Google Custom Search Engine
googlecse_cx: "YOUR_CX_ID"
Without keys: basic OSINT via Google dorks only. With NumVerify: carrier, line type, country validation.
PhoneInfoga auto-generates dorks. Run manually for deeper coverage:
"+14151234567" site:linkedin.com
"+14151234567" site:facebook.com
"+14151234567" -site:yellowpages.com -site:whitepages.com
"+14151234567" "resume" OR "contact" OR "WhatsApp"
| File | When to load |
|---|---|
references/api-setup.md | NumVerify setup, Google CSE config, alternative phone lookup sources |