返回顶部
c

ctf-osintCTF开源情报

Provides open source intelligence techniques for CTF challenges. Use when gathering information from public sources, social media, geolocation, DNS records, username enumeration, reverse image search, Google dorking, Wayback Machine, Tor relays, FEC filings, or identifying unknown data like hashes and coordinates.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
148
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

ctf-osint

CTF OSINT

OSINT CTF挑战的快速参考。每种技术在此提供一行说明;详见支持文件。

前置条件

Python包(所有平台):
bash
pip install shodan Pillow

Linux(apt):
bash
apt install whois dnsutils nmap libimage-exiftool-perl imagemagick curl

macOS(Homebrew):
bash
brew install whois bind nmap exiftool imagemagick curl

附加资源

  • - social-media.md - Twitter/X(用户ID、雪花时间戳、Nitter、memory.lol、Wayback CDX)、Tumblr(博客检查、帖子JSON、头像)、BlueSky搜索+API、Unicode同形异义隐写术、Discord API、用户名OSINT(namechk、whatsmyname、Osint Industries)、用户名元数据挖掘(邮政编码)、平台误报、多平台链、Strava健身路线OSINT
  • geolocation-and-media.md - 图像分析、反向图像搜索(包括面向中国的百度)、Google Lens裁剪区域搜索、镜像/反射文字读取、地理定位技术(铁路标志、基础设施地图、MGRS)、Google Plus Codes、EXIF/元数据、硬件识别、报纸档案、IP地理定位、Google街景全景匹配、What3Words微地标匹配、Google地图众包照片验证、Overpass Turbo空间查询、音乐主题地标地理定位与密钥编码
  • web-and-dns.md - Google搜索技巧(包括TBS图像过滤器)、Google文档/表格枚举、DNS侦察(TXT、区域传输)、Wayback Machine、FEC研究、Tor中继查询、GitHub仓库分析、Telegram机器人调查、WHOIS调查(反向WHOIS、历史WHOIS、IP/ASN查询)、通过nmap指纹识别检测虚假服务横幅

何时切换

  • - 如果已本地获取文件或数据包,需要提取或数据雕刻,切换到 /ctf-forensics。
  • 如果任务变为对在线HTTP服务的主动利用,切换到 /ctf-web。
  • 如果在归因过程中发现恶意软件样本、信标或可疑二进制文件,切换到 /ctf-malware。

快速启动命令

bash

DNS侦察


dig -t any target.com
dig -t txt target.com
dig axfr @ns.target.com target.com
whois target.com

图像元数据

exiftool image.jpg identify -verbose image.jpg | head -30

网页存档

curl https://web.archive.org/web/20230101*/target.com

用户名查询

curl -s https://whatsmyname.app/api/lookup?username=

Shodan

shodan search hostname:target.com shodan host

字符串识别

  • - 40个十六进制字符 -> SHA-1(Tor指纹)
  • 64个十六进制字符 -> SHA-256
  • 32个十六进制字符 -> MD5

Twitter/X账户追踪

  • - 持久数字用户ID:https://x.com/i/user/ 在改名后仍有效。
  • 雪花时间戳:(id >> 22) + 1288834974657 = Unix毫秒。
  • Wayback CDX、Nitter、memory.lol用于历史数据。参见 social-media.md

Tumblr调查

  • - 博客检查:curl -sI 检查 x-tumblr-user 头部。头像位于 /avatar/512。参见 social-media.md

用户名OSINT

图像分析与反向图像搜索

  • - Google Lens(裁剪到感兴趣区域)、Google图片、TinEye、Yandex(人脸)。检查角落是否有视觉隐写。Twitter会剥离EXIF。参见 geolocation-and-media.md
  • 裁剪区域搜索: 隔离独特元素(商店招牌、建筑立面)并通过Google Lens搜索,效果优于全场景搜索。参见 geolocation-and-media.md
  • 镜像文字: 水平翻转镜像/反射文字(水面、玻璃);用引号字符串搜索部分文字。参见 geolocation-and-media.md

地理定位

  • - 铁路标志、基础设施地图(OpenRailwayMap、OpenInfraMap)、排除法。参见 geolocation-and-media.md
  • 街景全景匹配: 特征提取 + 针对候选全景的多指标图像相似度排序。当挑战图像是街景照片的裁剪部分时有用。参见 geolocation-and-media.md
  • 路标OCR: 从方向标志中提取文字(城镇名称、路线编号)以定位道路走廊。行驶方向 + 标志样式 + 文字系统可识别国家。参见 geolocation-and-media.md
  • 建筑+品牌识别: 后苏联混凝土 = 俄罗斯/独联体;具名企业 → 搜索地点/分店 → 与海岸线/地形交叉参考。参见 geolocation-and-media.md
  • 音乐主题地标地理定位: 全球多个音乐相关地标图像;每个地标产生一个钢琴键编号,编码一个旗帜字符。先识别所有地点,然后解码键序列。参见 geolocation-and-media.md

MGRS坐标

Google Plus Codes

  • - 格式 XXXX+XXX(字符:23456789CFGHJMPQRVWX)。在Google地图上放置图钉 → Plus Code出现在详情中。免费,无需API密钥。参见 geolocation-and-media.md

元数据提取

bash
exiftool image.jpg # EXIF数据
pdfinfo document.pdf # PDF元数据
mediainfo video.mp4 # 视频元数据

Google搜索技巧

text
site:example.com filetype:pdf
intitle:index of password

图像TBS过滤器: 在Google图片URL后追加 &tbs=itp:face 仅过滤人脸(去除标志/横幅)。参见 web-and-dns.md

Google文档/表格

  • - 尝试 /export?format=csv、/pub、/gviz/tq?tqx=out:csv、/htmlview。参见 web-and-dns.md

DNS侦察

bash
dig -t txt subdomain.ctf.domain.com
dig axfr @ns.domain.com domain.com # 区域传输

始终检查CTF域名的TXT、CNAME、MX记录。参见 web-and-dns.md

Tor中继查询

  • - https://metrics.torproject.org/rs.html#simple/ -- 检查家族,按首次出现排序。参见 web-and-dns.md

GitHub仓库分析

  • - 通过 gh api 检查问题评论、PR审查、提交消息、Wiki编辑。参见 web-and-dns.md

Telegram机器人调查

  • - 在浏览器历史中查找机器人引用,通过 /start 交互,回答验证问题。参见 web-and-dns.md

FEC政治捐款研究

  • - FEC.gov查询委员会收据;501(c)(4)组织掩盖原始资助者。参见 web-and-dns.md

IP地理定位

bash
curl http://ip-api.com/json/103.150.68.150

参见 geolocation-and-media.md

Unicode同形异义隐写术

模式: 来自不同区块(西里尔字母、希腊字母、数学符号)的视觉相同Unicode字符在社交媒体帖子中编码二进制数据。ASCII = 0,同形异义 = 1。将位分组为字节得到旗帜。参见 social-media.md

BlueSky公共API

无需认证。端点:public.api.bsky.app/xrpc/app.bsky.feed.searchPosts?q=...、app.bsky.actor.searchActors、app.bsky.feed.getAuthorFeed。检查官方帖子的所有回复。

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 ctf-osint-1775936229 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 ctf-osint-1775936229 技能

通过命令行安装

skillhub install ctf-osint-1775936229

下载

⬇ 下载 ctf-osint v1.0.0(免费)

文件大小: 23.95 KB | 发布时间: 2026-4-12 09:38

v1.0.0 最新 2026-4-12 09:38
Initial release: Quick reference for open source intelligence (OSINT) CTF techniques.

- Covers reconnaissance across public sources: social media, geolocation, usernames, DNS records, reverse image search, Google dorking, Wayback Machine, Tor, FEC, and more.
- Includes ready-to-use command examples and platform-specific installation instructions.
- Offers guidance for identifying unknown data (hashes, coordinates) and pivoting between related CTF skill sets.
- Extensive supplementary resource links for in-depth OSINT tasks.
- Concise workflows for social media analysis, image and metadata extraction, web archives, DNS research, and technical artifact identification.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部