360网络空间引擎#

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

官方链接#

使用语法教程#

基本搜索语法#

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

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

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

    port:8080
  • service: 搜索指定服务的资产

    service:HTTP
  • app: 搜索指定应用的资产

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

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

    country:CN
  • province: 搜索指定省份的资产

    province:Beijing

高级搜索语法#

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

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

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

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

    app:"Apache httpd"

常用搜索示例#

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

    app:Tomcat
  2. 搜索中国境内的Redis服务

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

    domain:example.com AND service:FTP
  4. 搜索运行在Windows上的RDP服务

    service:RDP AND os:Windows