钟馗之眼#

钟馗之眼是一款网络空间搜索引擎,用于搜索和发现网络空间中的设备和服务。

官方链接#

使用语法教程#

基本搜索语法#

  • site: 搜索指定域名的资产

    site:example.com
  • ip: 搜索指定IP地址或IP段的资产

    ip:1.1.1.1
    ip:192.168.1.0/24
  • port: 搜索指定端口的资产

    port:8080
  • app: 搜索指定应用的资产

    app:Apache
  • os: 搜索指定操作系统的资产

    os:Windows
  • country: 搜索指定国家的资产

    country:CN
  • city: 搜索指定城市的资产

    city:Beijing
  • service: 搜索指定服务的资产

    service:SSH

高级搜索语法#

  • 逻辑运算符:AND、OR、NOT

    site:example.com AND port:80
    site:example.com OR site:test.com
    site:example.com NOT port:80
  • 组合搜索:使用括号组合多个搜索条件

    (site:example.com OR site:test.com) AND port:80
  • 模糊搜索:使用*通配符

    site:*.example.com
  • 精确搜索:使用"“引号

    app:"Apache httpd"

常用搜索示例#

  1. 搜索所有使用Nginx服务的资产

    app:Nginx
  2. 搜索中国境内的MySQL服务

    service:MySQL AND country:CN
  3. 搜索指定域名下的所有HTTPS服务

    site:example.com AND service:HTTPS
  4. 搜索运行在Linux上的SSH服务

    service:SSH AND os:Linux