Home

Awesome

FingerprintHub

郑重声明:文中所涉及的技术、思路和工具仅供以安全为目的的学习交流使用,任何人不得将其用于非法用途以及盈利等目的,否则后果自行承担。

类别说明
作者三米前有蕉皮
团队0x727 未来一段时间将陆续开源工具
定位社区化指纹库,让管理和使用指纹规则更加简单。
语言Yaml
功能可自定义请求,使用github actions 自动更新指纹库。

规则说明

id: thinkphp
info:
  name: thinkphp
  author: cn-kali-team
  tags: detect,tech,thinkphp
  severity: info
  metadata:
    product: thinkphp
    vendor: thinkphp
    verified: true
http:
  - method: GET
    path:
      - '{{BaseURL}}/'
    matchers:
      - type: favicon
        hash:
          - f49c4a4bde1eec6c0b80c2277c76e3db
      - type: word
        words:
          - href="http://www.thinkphp.cn">thinkphp</a>
          - thinkphp_show_page_trace
        case-insensitive: true
      - type: word
        words:
          - 'x-powered-by: thinkphp'
        part: header
        case-insensitive: true

规则组成

ID和基础信息

id: thinkphp
info:
  name: thinkphp
  author: cn-kali-team
  tags: detect,tech,thinkphp
  severity: info
  metadata:
    product: thinkphp
    vendor: thinkphp
    verified: true
字段数据类型描述
idString规则ID,命中指纹会在终端打印该字段,不支持中文
nameString规则名称,一般和id一样,或者是它众所周知的别名,支持中文
authorString作者列表,一个以逗号隔开的字符串列表
tagsString标签列表,一个以逗号隔开的字符串列表
severityEnum严重程度:unknown,info,low,medium,high,critical
metadataHashMap<String,String>元数据,一个字典,可以存放任意类型数据
descriptionOption<String>(可选)描述
referenceOption<Vec<String>>(可选)引用参考链接

Common Platform Enumeration (CPE) 是由MITRE公司开发的一种标准化格式,用于表示网络设备、软件应用和其他IT资产的身份。在国家漏洞数据库(National Vulnerability Database, NVD)中,CPE用于精确描述每个漏洞影响的具体产品和版本。

CPE命名规范包括以下部分:

核心部分:cpe:/a:vendor:product:version:update:edition:language:sw_edition:target_sw:target_hw:other
    a: 表示应用程序(application)
    vendor 是供应商或制造商的名字
    product 是产品的名称
    version 是主要版本号
    update 是次要版本号或更新版本
    edition 是特定版本(如企业版、标准版等)
    language 是语言环境
    sw_edition 是软件版本(如专业版、家庭版等)
    target_sw 是目标操作系统或其他软件平台
    target_hw 是目标硬件平台
    other 是其他任何相关的信息

通配符:如果某项未知或不重要,可以使用通配符*代替具体值。
id: shiro
info:
  name: shiro
  author: cn-kali-team
  tags: detect,tech,shiro
  severity: info
  metadata:
    product: shiro
    vendor: apache
    verified: true

探针

http探针

http:
  - method: GET
    path:
      - '{{BaseURL}}/'
    headers:
      Cookie: rememberMe=admin;rememberMe-K=admin
- method: GET
  path:
    - '{{BaseURL}}/'
    - '{{BaseURL}}/nacos/'
字段数据类型描述
methodEnumhttp请求方式:OPTIONS,GET,POST,PUT,DELETE,HEAD,TRACE,CONNECT,PATCH
pathVec<String>路径列表,一般只为{{BaseURL}}/,代表首页请求,不建议填写特殊路径,除非首页没有任何特征
headersOption<HashMap<String,String>>(可选)请求头,一个键值对
bodyOption<String>(可选)请求体

tcp探针

tcp:
  - name: "null"
    inputs:
      - data: ""
        read: 16
    host:
      - "{{Hostname}}"
字段数据类型描述
nameOption<String>探针名称,对应nmap中的probe_name
inputs.dataString写入数据,会自动反转义,例如:HTTP/1.0\r\n\r\n
inputs.readOption<usize>(可选)读取多少数据长度,默认读取完全部,最多不超过2048字节
hostOption<String>(可选)主机

匹配器

matchers:
  - type: favicon
    hash:
      - f49c4a4bde1eec6c0b80c2277c76e3db
  - type: word
    words:
      - href="http://www.thinkphp.cn">thinkphp</a>
      - thinkphp_show_page_trace
    case-insensitive: true
  - type: word
    words:
      - 'x-powered-by: thinkphp'
    part: header
    case-insensitive: true
字段数据类型描述
nameOption<String>匹配名称,如果不为空并且匹配到结果会返回
typeEnum匹配类型:word,favicon,regex
partEnum匹配位置:header,body,默认:body
favicon.hashVec<String>如果是favicon类型:hash为图标hash列表,支持md5和mmh3
word.wordsVec<String>关键词
case-insensitivebool是否忽略大小写,默认为false
negativebool是否将匹配结果取反,默认为false
conditionEnum匹配关系:or,and,当为or时匹配到就立即返回,为and时要全部匹配到才返回结果,默认为or

关键词

matchers:
  - type: word
    words:
      - <title>httpbin.org</title>
    case-insensitive: true
matchers:
  - type: word
    words:
      - /manager/html
      - /manager/status
    condition: and

favicon哈希

matchers:
  - type: favicon
    hash:
      - 4644f2d45601037b8423d45e13194c93
      - 其他哈希,支持md5和mmh3

提取器

正则表达式

id: ssh
info:
  name: OpenSSH
  author: cn-kali-team
  tags: detect,tech,ssh,service
  severity: info
  metadata:
    info: protocol $1
    version: $2
tcp:
  - name: "null"
    inputs:
      - data: ""
    host:
      - "{{Hostname}}"
    extractors:
      - name: ssh
        type: regex
        regex:
          - (?x)^SSH-([\d.]+)-OpenSSH[_-]([\w.]+)\s*\r?\n
字段数据类型描述
product_nameOption<String>(可选)产品名称
versionOption<String>(可选)版本号
infoOption<String>(可选)信息
hostnameOption<String>(可选)主机名
operating_systemOption<String>(可选)操作系统
device_typeOption<String>(可选)设备类型
cpeVec<String>(可选)通用枚举

jsonpath

{
  "origin": "1.1.1.1"
}
extractors:
  - type: json
    name: ip
    json:
      - '.origin'

如何贡献

验证单个指纹是否有效

➜ ./observer_ward -t http://httpbin.org -p observer_ward/examples/json.yaml --debug           
[INFO ] 📇probes loaded: 1                                                                                                               
[INFO ] 🎯target loaded: 1                                                                                                               
[INFO ] 🚀optimized probes: 1                                                                                                            
[DEBUG] start: http://httpbin.org/                                                                                                       
[DEBUG] Request {                                                                                                                        
        uri: http://httpbin.org/ip,                                                                                                      
        version: HTTP/1.1,                                                                                                               
        method: GET,                                                                                                                     
        headers: {                                                                                                                       
            "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8",                           
            "content-type": "application/json",                                                                                          
        },                                                                                                                               
        body: None,                                                                                                                      
        raw_request: None,                                                                                                               
    }
[DEBUG] Response {
        version: HTTP/1.1,
        uri: http://httpbin.org/ip,
        status_code: 200,
        headers: {
            "date": "Mon, 08 Jul 2024 13:19:59 GMT",
            "content-type": "application/json",
            "content-length": "32",
            "connection": "keep-alive",
            "server": "gunicorn/19.9.0",
            "access-control-allow-origin": "*",
            "access-control-allow-credentials": "true",
        },
        extensions: Extensions,
        body: Some(
            {
              "origin": "1.1.1.1"
            }
            ,
        ),
    }
[DEBUG] end: http://httpbin.org/
🏹: http://httpbin.org/
 |_🎯:[ http://httpbin.org/]
 |_🎯:[ http://httpbin.org/ip [httpbin-ip]  <>]
  |_📰: ip:["1.1.1.1"] 

提交指纹规则

git clone git@github.com:你的个人github用户名/FingerprintHub.git
cd FingerprintHub
git remote add upstream git@github.com:0x727/FingerprintHub.git
git fetch upstream
git config --global user.name "$GITHUB_USERNAME"
git config --global user.email "$GITHUB_EMAIL"
git config --global github.user "$GITHUB_USERNAME"
git fetch --all
git fetch upstream
git checkout -b thinkphp
git add 你添加或者修改的文件名
git commit -m "添加的组件名或者你的描述"
git push origin thinkphp

谁在使用FingerprintHub

observer_ward
nuclei
nemo_go
afrog
ShuiZe

指纹反馈

谢谢