mirror of
https://github.com/shadow1ng/fscan.git
synced 2026-09-22 03:10:42 +08:00
* feat: v2.1.0 核心重构与功能增强
## 架构重构
- 全局变量消除,迁移至 Config/State 对象
- SMB 插件融合(smb/smb2/smbghost/smbinfo)
- 服务探测重构,实现 Nmap 风格 fallback 机制
- 输出系统重构,TXT 实时刷盘 + 双写机制
- i18n 框架升级至 go-i18n
## 性能优化
- 正则表达式预编译
- 内存优化 map[string]struct{}
- 并发指纹匹配
- SOCKS5 连接复用
- 滑动窗口调度 + 自适应线程池
## 新功能
- Web 管理界面
- 多格式 POC 适配(xray/afrog)
- 增强指纹库(3139条)
- Favicon hash 指纹识别
- 插件选择性编译(Build Tags)
- fscan-lab 靶场环境
- 默认端口扩展(62→133)
## 构建系统
- 添加 no_local tag 支持排除本地插件
- 多版本构建:fscan/fscan-nolocal/fscan-web
- CI 添加 snapshot 模式支持仅测试构建
## Bug 修复
- 修复 120+ 个问题,包括 RDP panic、批量扫描漏报、
JSON 输出格式、Redis 检测、Context 超时等
## 测试增强
- 单元测试覆盖率 74-100%
- 并发安全测试
- 集成测试(Web/端口/服务/SSH/ICMP)
* fix(ci): 移除 PR 对 Project 自动化的触发
* fix: Elasticsearch未授权检测优先于爆破 (#554)
* fix: 修复RDP爆破高误报率问题 (#555)
- 移除 screen.go 中错误的认证结果覆盖逻辑
- 启用 NLA 协议的 ErrorCode 字段检测
- 添加 PubKeyAuth 验证确保认证真正成功
- 修复 io.go 中错误被静默忽略的问题
- 修复 socket.go/io.go 中可能导致 panic 的代码
- 修复 screen.go 中文件句柄泄漏和 log.Panic
* fix: 修复-user/-pwd凭据参数不生效的问题
问题原因:
- Parse()解析凭据后更新globalConfig
- 但BuildConfigFromFlags()创建新Config时使用默认字典
- 导致解析的UserPassPairs等凭据信息被丢弃
修复内容:
1. initialize.go: 将Parse解析的凭据结果应用到新Config
2. credential.go: 单用户密码对时创建UserPassPairs
3. rdp.go: 单凭据测试时跳过指纹识别,减少连接次数
* feat: RDP使用NLA仅验证模式,避免挤掉已登录用户
- 添加ErrNLAAuthSuccess标志用于NLA验证成功信号
- tpkt层支持nlaAuthOnly模式,验证成功后不建立完整会话
- x224层正确传播NLA验证结果
- rdpCrack改用NlaAuth进行凭据验证
* fix: 修复进度条在Windows终端满屏重复输出的问题
- 添加终端宽度检测,动态调整进度条长度
- 使用空格覆盖清除旧内容,避免残留
- 简化进度条格式,确保不超过终端宽度
* feat: 优化日志颜色方案,区分漏洞和普通信息
- 新增 LogVuln 级别(红色),用于漏洞和重要发现
- 密码爆破成功、未授权访问、POC漏洞等改用红色显示
- 普通信息(扫描统计等)改为白色
- Web指纹保持绿色
* refactor: 精简化输出,移除冗余启动信息
- 移除showParseSummary开局配置输出
- 移除LogPluginInfo/LogPluginInfoWithPort插件信息输出
- 移除alive_scanner冗余统计输出
- 移除port_scan_start扫描开始提示
- 移除handleUDPPorts SNMP死代码
- 移除相关i18n条目
* chore: 版本号更新为2.1.1
* fix: 降级依赖版本以保持Go 1.20兼容性
* feat(ldap): 添加NTLM Hash认证支持 (#433)
* chore: 清理无用的 replace 指令
* fix(ping): 修复 TTL expired 导致主机误判为存活的问题
在 ExecCommandPing 中增加错误关键词检测,当 ping 输出包含
TTL expired、Destination unreachable 等错误信息时,不再将
目标主机标记为存活。
Fixes #454
* fix(proxy): 修复透明代理导致输出全端口的问题
在代理初始化时主动探测代理行为,通过连接 RFC 5737 保留的
测试地址来检测是否存在"全回显"问题。如果探测到代理不可靠,
则在端口扫描时跳过所有端口,避免误报。
- 新增 proxyReliable 标志位标记代理可靠性
- 新增 ProbeProxyBehavior 函数探测代理行为
- 端口扫描前检查代理可靠性并输出警告
Fixes #495
* refactor: 移动debug模块到common/debug子包
* fix(web): 修复-u模式下Web插件未执行的问题
* fix: 优化输出格式和颜色显示
- 网段统计格式改为 10.253.0.0/16 网段存活: 26
- WebTitle基础信息改为白色,指纹识别单独绿色输出
- 移除重复的端口数量输出
* fix: URL解析自动补全协议头
-uf 文件中 192.168.1.1:8080 自动转为 http://192.168.1.1:8080
* fix: 修复-u/-uf模式下URLs丢失导致0目标扫描的问题
Parse阶段将URLs设置到全局状态,但Initialize随后创建新状态
并覆盖了全局状态,导致URLs数据丢失。现在在创建新状态前
先保存并迁移Parse阶段设置的URLs和HostPorts数据。
* fix: 智能检测HTTP/HTTPS协议并优化URL显示
- 修复-u/-uf模式URLs丢失导致0目标扫描问题
- detectProtocol改为主动TLS握手检测,不依赖服务名
- WebTitle输出显示完整协议(http/https)
- 隐藏标准端口(80/443)使输出更简洁
* refactor: 精简parsers包,统一配置构建入口
- 删除冗余的中间层(XXXInput、XXXParser类)
- 新增 config_builder.go 统一配置构建
- parsers包从3000+行精简至~540行
- 保留核心函数:ParseIP、ParsePort、文件读取、凭据解析
* test: 扩展parsers单元测试覆盖边缘情况
- 新增内网简写解析测试(192/172/10)
- 新增完整IP范围和无效CIDR测试
- 新增Windows行尾(CRLF)处理测试
- 新增凭据和哈希文件解析测试
- 新增端口解析边缘情况测试
- 测试覆盖率达到94.2%
* refactor: 优化控制台输出格式
- 去掉时间戳,保留[*][+]前缀
- Web输出合并WebTitle和WebFinger为一行
- 有指纹显示绿色[+],无指纹显示白色[*]
- 格式: code:xxx len:xxx title:xxx server:xxx [指纹]
- 服务探测格式: [Product:xxx ||Version:xxx] Banner:(xxx)
- 字段对齐,输出更清爽
* feat: 添加凭据测试未发现弱密码的提示
- credential_tester.go: 失败时设置 Type=ResultTypeCredential
- scanner.go: 根据结果类型在 error 级别输出'未发现弱密码'提示
- 新增 i18n 翻译 brute_no_weak_pass
使用 -log all 或 -log error 可看到此提示
* refactor(logging): 重构日志级别为层级过滤设计
- LogLevel 从 string 改为 int 类型,支持层级比较
- 层级设计:Debug(0) < Base(1) < Info(2) < Success(3) < Vuln(4) < Error(5)
- 设置一个级别后,显示该级别及以上的日志
- Error 级别始终显示,不会被配置过滤掉
- 保留向后兼容别名(LevelAll, LevelInfoSuccess 等)
- 更新测试以匹配新的层级过滤行为
* style(logging): Error级别日志改为黄色显示
* style(findnet): NetInfo输出改为每行一个IP
* refactor(ms17010): 优化错误提示,明确指出SMBv1不支持等情况
* fix(credential): 修复凭据测试结果不一致的问题
问题原因:
1. 未知错误类型不重试,导致服务端限流时跳过正确密码
2. SSH 错误分类不够准确,某些临时错误未被识别
修复内容:
1. 未知错误改为可重试(可能是临时问题)
2. 增加 SSH 特有的网络错误识别(handshake failed, disconnect 等)
* fix(portfinger): 修复SMB2服务指纹识别和NetInfo输出问题
- 添加SMB2ProgNeg探针支持现代Windows的SMB2协议
- 修复Go regexp对高位字节的UTF-8兼容问题,使用Latin-1转换
- 修复探针失败后连接重建逻辑
- 修复vendor_product字段名不匹配问题
- 修复NetInfo多行输出被其他日志打断的问题
* fix(config): 从默认端口移除9100,避免触发打印机打印 (#517)
* feat(proxy): 增强代理端口扫描的深度验证机制
- 新增4阶段深度验证:Banner读取→探测发送→响应等待→最终判定
- 新增SOCKS5错误码和代理错误文本检测
- 优化ProbeProxyBehavior探测逻辑,发送数据验证连接可达性
- 解决透明代理/全回显代理导致的假阳性问题
* fix(proxy): 修复代理深度验证的若干问题
- detector.go: 修复 AutoConfigureProxy 覆盖探测结果的问题
只有未探测过时才设置默认 proxyReliable 值
- port_scan.go: 改进深度验证机制
- 使用带 Host header 的 HTTP GET 请求替代 OPTIONS
- 延长响应等待超时至 2s 以适配慢速服务器
- 正确重置连接 deadline 避免影响后续操作
* refactor: 统一 common 包文件命名风格
Flag.go -> flag.go
* refactor(proxy): 删除自定义 contains() 函数,改用标准库
- 用 strings.Contains() 替代手写的 contains()
- 删除过时的注释
* fix(parsers): 修复带横杠域名被误识别为IP范围的问题
如 111-555.sss.com 这类域名因包含 - 被错误解析为 IP 范围,
添加 looksLikeIPRange() 检查,只有 - 前是有效 IP 才走范围解析
* fix(proxy): 修复代理模式下服务识别错误和端口漏扫问题
- port_scan.go: 验证通过后重建干净连接,避免HTTP GET探测污染服务识别
- port_scan.go: 优化验证策略,用轻量CRLF探测替代HTTP GET,超时从2.2s降至0.6s
- manager.go: 修正ProbeProxyBehavior判断逻辑,超时应视为代理正常转发
* fix(pool): 移除线程池预分配,优化大规模扫描内存占用
WithPreAlloc(true) 会预先创建所有 worker goroutine,
在大规模扫描(如 25域名×65535端口)时可能导致内存问题
* refactor(logging): 统一日志前缀,删除废弃的 LogBase
- 删除 LogBase 函数,所有调用迁移到 LogInfo/LogError
- 新增 PrefixDebug ([.]) 前缀,所有日志级别现在都有前缀
- 修复日志输出缩进不一致的问题
- 删除未使用的 PrefixDefault 常量
* perf(icmp): 实现自适应等待算法优化存活检测性能
- 新增 waitAdaptive 函数,监控响应增量实现智能提前结束
- 算法保守原则:最小等待1s + 连续500ms无新响应才提前结束
- 添加100ms检查间隔避免CPU空转
- 保留原有最大等待时间(3s/6s)作为兜底
- 添加完整单元测试覆盖各种场景
优化效果:
- 全部响应:~100ms (原3s)
- 无响应:~1s (原3s)
- 部分响应后稳定:~1.5s (原3s)
* perf(scan): 实现启发式优化提升扫描体验
1. 端口优先级排序:高价值端口(80,443,22,3389等)优先扫描
- 用户能更快看到有意义的结果
- 不影响端口喷洒策略
2. TCP 补充探测:ICMP 响应率<10%时自动启用
- 对未响应主机用 TCP 80/443/22/445 补充探测
- 解决防火墙过滤 ICMP 导致漏检的问题
* refactor(grdp): 精简RDP库,删除认证检测不需要的代码
- 删除 VNC 协议支持 (protocol/rfb, client/rfb.go)
- 删除完整客户端框架 (client/)
- 删除 RemoteApp 等插件 (plugin/)
- 删除 RLE 图形解压 (core/rle.go)
- 删除绘图指令处理 (pdu/orders.go, pdu/gdi.go)
- 精简 screen.go,移除截图和完整会话功能
- 移除未使用的 RGB 转换函数
grdp 代码从 13,044 行精简至 7,581 行,削减 42%
* refactor(common): 删除死代码,优化代码风格
- 删除未使用的 joinStrings/joinInts 函数
- 删除未使用的 memStats 字段和 getMemoryInfo 方法
- 简化 parsePasswords 中的循环为 append(...) 形式
* refactor(services): 统一数据库插件的DBWrapper
4个数据库插件(MySQL、PostgreSQL、MSSQL、Oracle)都有相同的sql.DB包装代码,
合并为通用的SQLDBWrapper,减少重复。
* refactor(core,grdp): 删除未使用的死代码
- 移除 BaseScanStrategy.LogPluginInfoWithPort 方法(无调用者)
- 移除 mcs.go 中被注释的旧 connect 函数实现
* refactor: 删除 deadcode 检测出的未使用函数
- proxy/detector.go: 删除 IsSOCKS5Standard, IsProxyInitialized
- findnet.go: 删除 NetworkInfo.OneLine, TreeFormat 方法
- port_scan.go: 删除 estimateScanTime 函数
- web_scanner.go: 删除 GetFingerprints 函数
- 清理相关测试代码
* refactor: 删除更多未使用的死代码
- parse.go: 删除 RemoveDuplicate 函数及其测试
- parsers.go: 删除 excludeHosts, removeDuplicates 别名函数
- 更新测试使用真正的函数名
* fix(test): 修复 TestParseIP_InvalidIPRange 测试用例
- 删除不合理的测试用例(无效IP被当作普通主机名处理是设计行为)
- 修复测试逻辑,只在真正通过时输出"正确"
* fix(scan): 移除域名预解析,保留原始域名进行扫描
域名预解析会将域名转换为IP,导致虚拟主机场景下HTTP访问失败
(Host头变成IP而非域名,无法正确路由)
* fix(scan): 修复 -hf 参数无法单独使用的问题
* fix(proxy): 修复透明代理环境下 SOCKS5 代理全端口误报问题
问题:在透明代理(TUN模式)环境下使用 SOCKS5 代理扫描时,
会出现全端口开放的误报,因为代理可靠性检测被透明代理污染。
修复方案(参考 fscanx):
1. 将探针从 CRLF 改为 HTTP GET,更有效检测真实连接状态
2. 删除 "uncertain" 状态,无响应一律判定为端口关闭
3. 调整超时时间以适应代理链路延迟
Fixes #524
* feat(telnet): 新增 telnetd RCE 命令执行验证,修复未授权访问日志级别
* fix: 修复 i18n.Tr vet 报错、Unicode 测试用例,移除过期域名
- 移除 i18n.Tr 中错误的 fmt.Sprintf fallback,消除 go vet 误报
- 修复 match_engine_test Unicode 测试用例与 Latin-1 转换逻辑不匹配
- README 移除过期的 fscan.club 域名
- 添加 .gitattributes 统一换行符为 LF
* refactor: 统一控制台输出风格,使用统一的日志函数
手动合并 PR #558 的改动,适配重构后的代码路径
* fix(ci): 修复版本注入和CI触发配置
- goreleaser ldflags 指向正确的包路径 common.version/commit/date
- version 改为 var 支持 ldflags 注入,banner 显示 commit 和构建日期
- test-build 触发分支增加 dev-* 通配
* fix(ci): 修复 Windows 产物 .exe.exe 双后缀问题
* feat(ci): 扩展构建架构支持 MIPS/ARM/FreeBSD/Solaris
1 line
1.3 MiB
Plaintext
1 line
1.3 MiB
Plaintext
[{"id":"appspace","info":{"name":"appspace","author":"cn-kali-team","tags":"detect,tech,appspace","severity":"info","metadata":{"fofa-query":["title=\"appspace\""],"google-query":["intitle:\"appspace\""],"product":"appspace","shodan-query":["title:\"appspace\"","http.title:\"appspace\""],"vendor":"appspace","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>appspace.*?</title>"]}]}]},{"id":"flexnet_publisher","info":{"name":"flexnet_publisher","author":"cn-kali-team","tags":"detect,tech,flexnet_publisher","severity":"info","metadata":{"product":"flexnet_publisher","shodan-query":["title:\"flexnet\""],"vendor":"flexera","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>flexnet.*?</title>"]}]}]},{"id":"zeroshell","info":{"name":"zeroshell","author":"cn-kali-team","tags":"detect,tech,zeroshell","severity":"info","metadata":{"fofa-query":["title=\"zeroshell\""],"google-query":["intitle:\"zeroshell\""],"product":"zeroshell","shodan-query":["http.title:\"zeroshell\""],"vendor":"zeroshell","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>zeroshell.*?</title>"]}]}]},{"id":"open-xchange","info":{"name":"open-xchange","author":"cn-kali-team","tags":"detect,tech,open-xchange","severity":"info","metadata":{"product":"open-xchange","vendor":"open-xchange","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"browserchecktext_id","you need to enable javascript to access the open-xchange server"],"case-insensitive":true}]}]},{"id":"open-xchange_appsuite","info":{"name":"open-xchange_appsuite","author":"cn-kali-team","tags":"detect,tech,open-xchange_appsuite","severity":"info","metadata":{"fofa-query":["body=\"appsuite\""],"product":"open-xchange_appsuite","shodan-query":["html:\"appsuite\"","http.html:\"appsuite\""],"vendor":"open-xchange","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["appsuite"],"case-insensitive":true}]}]},{"id":"simple_realtime_server","info":{"name":"simple_realtime_server","author":"cn-kali-team","tags":"detect,tech,simple_realtime_server","severity":"info","metadata":{"product":"simple_realtime_server","shodan-query":["http.favicon.hash:1386054408"],"vendor":"ossrs","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1386054408"]}]}]},{"id":"simple_job_board","info":{"name":"simple_job_board","author":"cn-kali-team","tags":"detect,tech,simple_job_board","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/simple-job-board\""],"product":"simple_job_board","vendor":"awsm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/simple-job-board"],"case-insensitive":true}]}]},{"id":"identity_services_engine","info":{"name":"identity_services_engine","author":"cn-kali-team","tags":"detect,tech,identity_services_engine","severity":"info","metadata":{"fofa-query":["title=\"identity services engine\""],"google-query":["intitle:\"identity services engine\""],"product":"identity_services_engine","shodan-query":["\"set-cookie: appsessionid=\" \"path=/admin\""],"vendor":"cisco","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>identity services engine.*?</title>"]}]}]},{"id":"unified_communications_domain_manager","info":{"name":"unified_communications_domain_manager","author":"cn-kali-team","tags":"detect,tech,unified_communications_domain_manager","severity":"info","metadata":{"product":"unified_communications_domain_manager","shodan-query":["title:\"cisco unified\""],"vendor":"cisco","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>cisco unified.*?</title>"]}]}]},{"id":"rv110w_firmware","info":{"name":"rv110w_firmware","author":"cn-kali-team","tags":"detect,tech,rv110w_firmware","severity":"info","metadata":{"fofa-query":["icon_hash=\"-646322113\""],"product":"rv110w_firmware","shodan-query":["http.favicon.hash:\"-646322113\""],"vendor":"cisco","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-646322113"]}]}]},{"id":"webex_meetings_online","info":{"name":"webex_meetings_online","author":"cn-kali-team","tags":"detect,tech,webex_meetings_online","severity":"info","metadata":{"product":"webex_meetings_online","shodan-query":["title:\"cisco webex\""],"vendor":"cisco","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>cisco webex.*?</title>"]}]}]},{"id":"rv160_firmware","info":{"name":"rv160_firmware","author":"cn-kali-team","tags":"detect,tech,rv160_firmware","severity":"info","metadata":{"fofa-query":["body=\"cisco rv340\""],"product":"rv160_firmware","shodan-query":["http.html:\"cisco rv340\""],"vendor":"cisco","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cisco rv340"],"case-insensitive":true}]}]},{"id":"evolved_programmable_network_manager","info":{"name":"evolved_programmable_network_manager","author":"cn-kali-team","tags":"detect,tech,evolved_programmable_network_manager","severity":"info","metadata":{"fofa-query":["title=\"prime infrastructure\""],"google-query":["intitle:\"prime infrastructure\""],"product":"evolved_programmable_network_manager","shodan-query":["http.title:\"prime infrastructure\""],"vendor":"cisco","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>prime infrastructure.*?</title>"]}]}]},{"id":"sg200-50_firmware","info":{"name":"sg200-50_firmware","author":"cn-kali-team","tags":"detect,tech,sg200-50_firmware","severity":"info","metadata":{"product":"sg200-50_firmware","shodan-query":["/config/log_off_page.htm"],"vendor":"cisco","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/config/log_off_page.htm"],"case-insensitive":true}]}]},{"id":"adaptive-security-appliance-software","info":{"name":"adaptive-security-appliance-software","author":"cn-kali-team","tags":"detect,tech,adaptive-security-appliance-software","severity":"info","metadata":{"product":"adaptive-security-appliance-software","shodan-query":["html:\"/+cscoe+/logon.html\""],"vendor":"cisco","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/+cscoe+/logon.html"],"case-insensitive":true}]}]},{"id":"motioneye","info":{"name":"motioneye","author":"cn-kali-team","tags":"detect,tech,motioneye","severity":"info","metadata":{"fofa-query":["body=\"motioneye\""],"product":"motioneye","shodan-query":["html:\"motioneye\"","http.html:\"motioneye\""],"vendor":"motioneye_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["motioneye"],"case-insensitive":true}]}]},{"id":"am","info":{"name":"am","author":"cn-kali-team","tags":"detect,tech,am","severity":"info","metadata":{"fofa-query":["title=\"openam\""],"google-query":["intitle:\"openam\""],"product":"am","shodan-query":["http.title:\"openam\""],"vendor":"forgerock","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>openam.*?</title>"]}]}]},{"id":"openam","info":{"name":"openam","author":"cn-kali-team","tags":"detect,tech,openam","severity":"info","metadata":{"fofa-query":["title=\"openam\""],"google-query":["intitle:\"openam\""],"product":"openam","shodan-query":["http.title:\"openam\""],"vendor":"forgerock","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>openam.*?</title>"]}]}]},{"id":"holmes","info":{"name":"holmes","author":"cn-kali-team","tags":"detect,tech,holmes","severity":"info","metadata":{"fofa-query":["title=\"holmes orchestrator\"","title=\"wipro holmes orchestrator\""],"product":"holmes","vendor":"wipro","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>holmes orchestrator.*?</title>","(?mi)<title[^>]*>wipro holmes orchestrator.*?</title>"]}]}]},{"id":"jsherp","info":{"name":"jsherp","author":"cn-kali-team","tags":"detect,tech,jsherp","severity":"info","metadata":{"fofa-query":["jsherp-boot"],"product":"jsherp","shodan-query":["http.favicon.hash:-1298131932"],"vendor":"jishenghua","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jsherp-boot"],"case-insensitive":true},{"type":"favicon","hash":["-1298131932"]}]}]},{"id":"localai","info":{"name":"localai","author":"cn-kali-team","tags":"detect,tech,localai","severity":"info","metadata":{"product":"localai","shodan-query":["http.favicon.hash:-976853304"],"vendor":"mudler","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-976853304"]}]}]},{"id":"umbraco","info":{"name":"umbraco","author":"cn-kali-team","tags":"detect,tech,umbraco","severity":"info","metadata":{"product":"umbraco","shodan-query":["http.html:\"umbraco\""],"vendor":"umbraco","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["umbraco"],"case-insensitive":true}]}]},{"id":"scx-6555n","info":{"name":"scx-6555n","author":"cn-kali-team","tags":"detect,tech,scx-6555n","severity":"info","metadata":{"product":"scx-6555n","shodan-query":["title:\"syncthru web service\""],"vendor":"samsung","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>syncthru web service.*?</title>"]}]}]},{"id":"ads_pro","info":{"name":"ads_pro","author":"cn-kali-team","tags":"detect,tech,ads_pro","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/ap-plugin-scripteo\""],"product":"ads_pro","vendor":"scripteo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/ap-plugin-scripteo"],"case-insensitive":true}]}]},{"id":"openemr","info":{"name":"openemr","author":"cn-kali-team","tags":"detect,tech,openemr","severity":"info","metadata":{"fofa-query":["app=\"openemr\"","body=\"openemr\"","title=\"openemr\"","icon_hash=1971268439"],"google-query":["intitle:\"openemr\""],"product":"openemr","shodan-query":["http.favicon.hash:1971268439","http.html:\"openemr\"","http.title:\"openemr\"","title:\"openemr\""],"vendor":"open-emr","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["openemr"],"case-insensitive":true},{"type":"favicon","hash":["1971268439"]}]}]},{"id":"metinfo","info":{"name":"metinfo","author":"cn-kali-team","tags":"detect,tech,metinfo","severity":"info","metadata":{"product":"metinfo","vendor":"metinfo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"powered_by_metinfo\"></div>","<meta name=\"generator\" content=\"metinfo"],"case-insensitive":true}]}]},{"id":"terramaster_operating_system","info":{"name":"terramaster_operating_system","author":"cn-kali-team","tags":"detect,tech,terramaster_operating_system","severity":"info","metadata":{"product":"terramaster_operating_system","shodan-query":["terramaster"],"vendor":"terra-master","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["terramaster"],"case-insensitive":true}]}]},{"id":"tos","info":{"name":"tos","author":"cn-kali-team","tags":"detect,tech,tos","severity":"info","metadata":{"fofa-query":["\"terramaster\" && header=\"tos\""],"product":"tos","vendor":"terra-master","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["terramaster"],"case-insensitive":true}]}]},{"id":"biept-system","info":{"name":"biept-system","author":"cn-kali-team","tags":"detect,tech,biept-system","severity":"info","metadata":{"product":"biept-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"loginin loginin1\""],"case-insensitive":true}]}]},{"id":"maipu-an-quan-wang-guan","info":{"name":"maipu-安全网关","author":"cn-kali-team","tags":"detect,tech,maipu-安全网关","severity":"info","metadata":{"product":"maipu-安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/webui/images/maipu/login/login_adminbg_a.gif\"?"],"case-insensitive":true}]}]},{"id":"ami-megarac-spx","info":{"name":"ami-megarac-spx","author":"cn-kali-team","tags":"detect,tech,ami-megarac-spx","severity":"info","metadata":{"product":"ami-megarac-spx","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<modelname>ami megarac spx</modelname>"],"case-insensitive":true}]}]},{"id":"ami-megarac-sp","info":{"name":"ami-megarac-sp","author":"cn-kali-team","tags":"detect,tech,ami-megarac-sp","severity":"info","metadata":{"product":"ami-megarac-sp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<modelname>ami megarac sp</modelname>"],"case-insensitive":true}]}]},{"id":"idcos-cloudboot","info":{"name":"idcos-cloudboot","author":"cn-kali-team","tags":"detect,tech,idcos-cloudboot","severity":"info","metadata":{"product":"idcos-cloudboot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/clipboard/zeroclipboard.min"],"case-insensitive":true}]}]},{"id":"sunline-cmdb","info":{"name":"sunline-cmdb","author":"cn-kali-team","tags":"detect,tech,sunline-cmdb","severity":"info","metadata":{"product":"sunline-cmdb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sunline co","var key = \"sunlines\";"],"condition":"and","case-insensitive":true}]}]},{"id":"hnjycy","info":{"name":"hnjycy","author":"cn-kali-team","tags":"detect,tech,hnjycy","severity":"info","metadata":{"product":"hnjycy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.hnjycy.com\" target=\"_blank\">沃科网<"],"case-insensitive":true}]}]},{"id":"pixelpost","info":{"name":"pixelpost","author":"cn-kali-team","tags":"detect,tech,pixelpost","severity":"info","metadata":{"product":"pixelpost","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.pixelpost.org","title=\"pixelpost - ","title=\"powered by pixelpost"],"case-insensitive":true}]}]},{"id":"an-bo-tong-ying-yong-wang-guan","info":{"name":"安博通应用网关","author":"cn-kali-team","tags":"detect,tech,安博通应用网关","severity":"info","metadata":{"product":"安博通应用网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["安博通应用网关"],"case-insensitive":true}]}]},{"id":"argosoft-mail-server","info":{"name":"argosoft-mail-server","author":"cn-kali-team","tags":"detect,tech,argosoft-mail-server","severity":"info","metadata":{"product":"argosoft-mail-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["argosoft mail server plus for"],"case-insensitive":true}]}]},{"id":"kyan-jian-kong-she-bei","info":{"name":"kyan-监控设备","author":"cn-kali-team","tags":"detect,tech,kyan-监控设备","severity":"info","metadata":{"product":"kyan-监控设备","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["login_files","platform","欢迎"],"condition":"and","case-insensitive":true}]}]},{"id":"open-admin-for-schools","info":{"name":"open-admin-for-schools","author":"cn-kali-team","tags":"detect,tech,open-admin-for-schools","severity":"info","metadata":{"product":"open-admin-for-schools","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/cgi-bin/rptbirthday.pl","open admin for schools"],"case-insensitive":true}]}]},{"id":"mailenable","info":{"name":"mailenable","author":"cn-kali-team","tags":"detect,tech,mailenable","severity":"info","metadata":{"product":"mailenable","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- loginpanel_shell_table -->"],"case-insensitive":true}]}]},{"id":"rainier-internet-product","info":{"name":"rainier-internet-product","author":"cn-kali-team","tags":"detect,tech,rainier-internet-product","severity":"info","metadata":{"product":"rainier-internet-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.rainier.net.cn\">北京润尼尔网络科技有限公司"],"case-insensitive":true}]}]},{"id":"mikrotik-httpproxy","info":{"name":"mikrotik-httpproxy","author":"cn-kali-team","tags":"detect,tech,mikrotik-httpproxy","severity":"info","metadata":{"product":"mikrotik-httpproxy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: mikrotik httpproxy"],"part":"header","case-insensitive":true}]}]},{"id":"shiji-xms","info":{"name":"shiji-xms","author":"cn-kali-team","tags":"detect,tech,shiji-xms","severity":"info","metadata":{"product":"shiji-xms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"xmsenv.exe\">系统运行环境"],"case-insensitive":true}]}]},{"id":"sangfor-behavior-management-or-identity-authentication-system","info":{"name":"sangfor-behavior-management-or-identity-authentication-system","author":"cn-kali-team","tags":"detect,tech,sangfor-behavior-management-or-identity-authentication-system","severity":"info","metadata":{"product":"sangfor-behavior-management-or-identity-authentication-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"/webauth/\">","class=\"info-inner\"","身份认证系统"],"case-insensitive":true}]}]},{"id":"huawei-usg-firewall","info":{"name":"huawei-usg-firewall","author":"cn-kali-team","tags":"detect,tech,huawei-usg-firewall","severity":"info","metadata":{"product":"huawei-usg-firewall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ui_component/css/xtheme-black.css"],"case-insensitive":true}]}]},{"id":"crow-force-portal-cms","info":{"name":"crow-force-portal-cms","author":"cn-kali-team","tags":"detect,tech,crow-force-portal-cms","severity":"info","metadata":{"product":"crow-force-portal-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["中企动力提供技术支持"],"case-insensitive":true}]}]},{"id":"jive-sbs","info":{"name":"jive-sbs","author":"cn-kali-team","tags":"detect,tech,jive-sbs","severity":"info","metadata":{"product":"jive-sbs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/jive-icons.css","class=\"jive-body-formpage"],"case-insensitive":true}]}]},{"id":"werkzeug","info":{"name":"werkzeug","author":"cn-kali-team","tags":"detect,tech,werkzeug","severity":"info","metadata":{"product":"werkzeug","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: werkzeug"],"part":"header","case-insensitive":true}]}]},{"id":"lan-lingeis-zhi-hui-xie-tong-ping-tai","info":{"name":"蓝凌eis智慧协同平台","author":"cn-kali-team","tags":"detect,tech,蓝凌eis智慧协同平台","severity":"info","metadata":{"product":"蓝凌eis智慧协同平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/scripts/jquery.landray.common.js","蓝凌软件"],"condition":"and","case-insensitive":true}]}]},{"id":"jiusi-oa","info":{"name":"jiusi-oa","author":"cn-kali-team","tags":"detect,tech,jiusi-oa","severity":"info","metadata":{"product":"jiusi-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["九思软件"],"case-insensitive":true}]}]},{"id":"netbotz-network-monitoring-device","info":{"name":"netbotz-network-monitoring-device","author":"cn-kali-team","tags":"detect,tech,netbotz-network-monitoring-device","severity":"info","metadata":{"product":"netbotz-network-monitoring-device","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/netbotz.css","href=\"http://www.netbotz.com\" target"],"case-insensitive":true}]}]},{"id":"cisco-meeting-app","info":{"name":"cisco-meeting-app","author":"cn-kali-team","tags":"detect,tech,cisco-meeting-app","severity":"info","metadata":{"product":"cisco-meeting-app","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"cisco_meeting_application\">"],"case-insensitive":true}]}]},{"id":"5vtechnologies-blueangelsoftwaresuite","info":{"name":"5vtechnologies-blueangelsoftwaresuite","author":"cn-kali-team","tags":"detect,tech,5vtechnologies-blueangelsoftwaresuite","severity":"info","metadata":{"product":"5vtechnologies-blueangelsoftwaresuite","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cgi-bin/webctrl.cgi?action=index_page"],"case-insensitive":true}]}]},{"id":"da-guan-rpa","info":{"name":"达观rpa","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"达观rpa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["e2e2ba13339c2fea220f8b4fa6c32c0d"]},{"type":"word","words":["<title>rpa</title>"],"case-insensitive":true}]}]},{"id":"qcubed-development-framework","info":{"name":"qcubed-development-framework","author":"cn-kali-team","tags":"detect,tech,qcubed-development-framework","severity":"info","metadata":{"product":"qcubed-development-framework","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<b>qcubed version:</b>","<div id=\"codeversion\">qcubed development framework"],"case-insensitive":true}]}]},{"id":"goldlibcms","info":{"name":"goldlibcms","author":"cn-kali-team","tags":"detect,tech,goldlibcms","severity":"info","metadata":{"product":"goldlibcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["speakintertscarch.aspx"],"case-insensitive":true}]}]},{"id":"labview","info":{"name":"labview","author":"cn-kali-team","tags":"detect,tech,labview","severity":"info","metadata":{"product":"labview","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: labview"],"part":"header","case-insensitive":true}]}]},{"id":"femr","info":{"name":"femr","author":"cn-kali-team","tags":"detect,tech,femr","severity":"info","metadata":{"product":"femr","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/res/images/login-bg-1.png","/res/vendor/bootstrap-3.3.5/css/bootstrap.min.css"],"case-insensitive":true}]}]},{"id":"micro-focus-open-enterprise-server","info":{"name":"micro-focus-open-enterprise-server","author":"cn-kali-team","tags":"detect,tech,micro-focus-open-enterprise-server","severity":"info","metadata":{"product":"micro-focus-open-enterprise-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h3>micro focus open enterprise server 提供市场中的最佳网络、文件和打印服务。</h3>"],"case-insensitive":true}]}]},{"id":"tutortrac","info":{"name":"tutortrac","author":"cn-kali-team","tags":"detect,tech,tutortrac","severity":"info","metadata":{"product":"tutortrac","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["font><a href=\"http://www.go-redrock.com\"><font"],"case-insensitive":true}]}]},{"id":"docmail-cwindow","info":{"name":"docmail-cwindow","author":"cn-kali-team","tags":"detect,tech,docmail-cwindow","severity":"info","metadata":{"product":"docmail-cwindow","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.docmail.cn\" target=\"_blank\">","content=\"北京国信冠群技术有限公司,国信冠群,邮件","href=\"http://www.docmail.cn/android/app/docmail.apk"],"case-insensitive":true}]}]},{"id":"aws-ec2","info":{"name":"aws-ec2","author":"cn-kali-team","tags":"detect,tech,aws-ec2","severity":"info","metadata":{"product":"aws-ec2","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["welcome to nginx on amazon ec2!"],"case-insensitive":true}]}]},{"id":"bulletlink-newspaper-template","info":{"name":"bulletlink-newspaper-template","author":"cn-kali-team","tags":"detect,tech,bulletlink-newspaper-template","severity":"info","metadata":{"product":"bulletlink-newspaper-template","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/modalpopup/core-modalpopup.css","powered by bulletlink"],"case-insensitive":true}]}]},{"id":"fangpage-exam","info":{"name":"fangpage-exam","author":"cn-kali-team","tags":"detect,tech,fangpage-exam","severity":"info","metadata":{"product":"fangpage-exam","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/sites/exam/statics/css/login.css","href=\"http://fpexam.fangpage.com\" target="],"case-insensitive":true}]}]},{"id":"you-you-you-you-fang-huo-qiang","info":{"name":"佑友-佑友防火墙","author":"cn-kali-team","tags":"detect,tech,佑友-佑友防火墙","severity":"info","metadata":{"product":"佑友-佑友防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"inputsize2\"","src=\"./js/jquery.validate.js\""],"condition":"and","case-insensitive":true}]}]},{"id":"account-manager-exhibition-system","info":{"name":"account-manager-exhibition-system","author":"cn-kali-team","tags":"detect,tech,account-manager-exhibition-system","severity":"info","metadata":{"product":"account-manager-exhibition-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/system/login/login.shtml"],"case-insensitive":true}]}]},{"id":"ewei-plagform","info":{"name":"ewei-plagform","author":"cn-kali-team","tags":"detect,tech,ewei-plagform","severity":"info","metadata":{"product":"ewei-plagform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["易维平台</h1>"],"case-insensitive":true}]}]},{"id":"mywebftp","info":{"name":"mywebftp","author":"cn-kali-team","tags":"detect,tech,mywebftp","severity":"info","metadata":{"product":"mywebftp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[">mywebftp</a>","href='mwftp/common/mwftp.css","mwftp/common/mwftp.js"],"case-insensitive":true}]}]},{"id":"mail2000-you-jian-xi-tong","info":{"name":"mail2000-邮件系统","author":"cn-kali-team","tags":"detect,tech,mail2000-邮件系统","severity":"info","metadata":{"product":"mail2000-邮件系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mail2000郵件系統"],"case-insensitive":true}]}]},{"id":"indexer-coordinator","info":{"name":"indexer-coordinator","author":"cn-kali-team","tags":"detect,tech,indexer-coordinator","severity":"info","metadata":{"product":"indexer-coordinator","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"druid indexer coordinator console"],"case-insensitive":true}]}]},{"id":"wap","info":{"name":"wap","author":"cn-kali-team","tags":"detect,tech,wap","severity":"info","metadata":{"product":"wap","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location = 'wap.htm'"],"case-insensitive":true}]}]},{"id":"comcast-business","info":{"name":"comcast-business","author":"cn-kali-team","tags":"detect,tech,comcast-business","severity":"info","metadata":{"product":"comcast-business","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cmn/css/common-min.css"],"case-insensitive":true}]}]},{"id":"synology-photo-station","info":{"name":"synology-photo-station","author":"cn-kali-team","tags":"detect,tech,synology-photo-station","severity":"info","metadata":{"product":"synology-photo-station","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"album","content=\"photo station","content=\"photo station 6\"","content=\"service_not_available\"","photo_new/syno_photo_main.js"],"case-insensitive":true}]}]},{"id":"jakarta-project","info":{"name":"jakarta-project","author":"cn-kali-team","tags":"detect,tech,jakarta-project","severity":"info","metadata":{"product":"jakarta-project","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://jakarta.apache.org/\">","alt=\"the jakarta project"],"case-insensitive":true}]}]},{"id":"seceon-otm","info":{"name":"seceon-otm","author":"cn-kali-team","tags":"detect,tech,seceon-otm","severity":"info","metadata":{"product":"seceon-otm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["use this if you want to run the seceon module of kibana."],"case-insensitive":true}]}]},{"id":"smf","info":{"name":"smf","author":"cn-kali-team","tags":"detect,tech,smf","severity":"info","metadata":{"product":"smf","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.simplemachines.org/about/copyright.php\" title=\"free forum software\" target=\"_blank","<img class=\"floatright\" id=\"smflogo\" src=","document.getelementbyid(\"upshrink\").src = smf_images_url + "],"case-insensitive":true}]}]},{"id":"zfsoft-educational-management-system","info":{"name":"zfsoft-educational-management-system","author":"cn-kali-team","tags":"detect,tech,zfsoft-educational-management-system","severity":"info","metadata":{"product":"zfsoft-educational-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"站点介绍\"","style/base/jw.css"],"condition":"and","case-insensitive":true}]}]},{"id":"osirix-viewer","info":{"name":"osirix-viewer","author":"cn-kali-team","tags":"detect,tech,osirix-viewer","severity":"info","metadata":{"product":"osirix-viewer","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["service provided by <a href=\"https://www.osirix-viewer.com\""],"case-insensitive":true}]}]},{"id":"ce-yun-you","info":{"name":"ce-云邮","author":"cn-kali-team","tags":"detect,tech,ce-云邮","severity":"info","metadata":{"product":"ce-云邮","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/page/help/mailconfig/config/index.html","href=\"http://webmail.zmail300.cn"],"condition":"and","case-insensitive":true}]}]},{"id":"informatics-cms","info":{"name":"informatics-cms","author":"cn-kali-team","tags":"detect,tech,informatics-cms","severity":"info","metadata":{"product":"informatics-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"informatics"],"case-insensitive":true}]}]},{"id":"collaborative-management-platform","info":{"name":"collaborative-management-platform","author":"cn-kali-team","tags":"detect,tech,collaborative-management-platform","severity":"info","metadata":{"product":"collaborative-management-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/activex/sinoccshell.cab","/web/submitlogon2.do","/web/submitlogon2.do ","css/hitalklogin.css","广州协商科技有限公司"],"case-insensitive":true}]}]},{"id":"phpatm","info":{"name":"phpatm","author":"cn-kali-team","tags":"detect,tech,phpatm","severity":"info","metadata":{"product":"phpatm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by php advanced transfer manager","powered by phpatm","src=\"viewer_bottom.php?file="],"case-insensitive":true}]}]},{"id":"xie-zhongoa","info":{"name":"协众oa","author":"cn-kali-team","tags":"detect,tech,协众oa","severity":"info","metadata":{"product":"协众oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: index.php?app=main&func=passport&action=login","set-cookie: cnoaoasessid="],"part":"header","condition":"and","case-insensitive":true}]}]},{"id":"uniview-ezclould","info":{"name":"uniview-ezclould","author":"cn-kali-team","tags":"detect,tech,uniview-ezclould","severity":"info","metadata":{"product":"uniview-ezclould","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"images/pag-logo.png\""],"case-insensitive":true}]}]},{"id":"h3c-web-ying-yong-fang-huo-qiang","info":{"name":"h3c-web应用防火墙","author":"cn-kali-team","tags":"detect,tech,h3c-web应用防火墙","severity":"info","metadata":{"product":"h3c-web应用防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["h3c web应用防火墙"],"case-insensitive":true}]}]},{"id":"nexpose-security-console","info":{"name":"nexpose-security-console","author":"cn-kali-team","tags":"detect,tech,nexpose-security-console","severity":"info","metadata":{"product":"nexpose-security-console","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/nexpose-dark.min.css","/nexpose-features.js","nexposeccpassword"],"case-insensitive":true}]}]},{"id":"openfire","info":{"name":"openfire","author":"cn-kali-team","tags":"detect,tech,openfire","severity":"info","metadata":{"product":"openfire","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>openfire 管理界面</title>","background: transparent url(images/login_logo.gif) no-repeat"],"case-insensitive":true}]}]},{"id":"parature","info":{"name":"parature","author":"cn-kali-team","tags":"detect,tech,parature","severity":"info","metadata":{"product":"parature","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["redirectportalurl('/ics/support/custhandler.asp?","src=\"kbfolder.asp?deptid="],"case-insensitive":true}]}]},{"id":"yonyou-shop","info":{"name":"yonyou-shop","author":"cn-kali-team","tags":"detect,tech,yonyou-shop","severity":"info","metadata":{"product":"yonyou-shop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["$.post(\"/shopfront/shoppingcar/gotoshoppingcartajax.action\",function(data){","url:\"/shophome/ajaxgetcompetemessagelist.action\",","北京用友政务软件股份有限公司"],"case-insensitive":true}]}]},{"id":"isolsoft-support-center","info":{"name":"isolsoft-support-center","author":"cn-kali-team","tags":"detect,tech,isolsoft-support-center","severity":"info","metadata":{"product":"isolsoft-support-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by: support center"],"case-insensitive":true}]}]},{"id":"hejia-oa","info":{"name":"hejia-oa","author":"cn-kali-team","tags":"detect,tech,hejia-oa","severity":"info","metadata":{"product":"hejia-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/templates/everythingisok/index.css\""],"case-insensitive":true}]}]},{"id":"imgallery","info":{"name":"imgallery","author":"cn-kali-team","tags":"detect,tech,imgallery","severity":"info","metadata":{"product":"imgallery","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.imgallery.zor.pl\"><b>imgallery"],"case-insensitive":true}]}]},{"id":"maticsoft-sns","info":{"name":"maticsoft-sns","author":"cn-kali-team","tags":"detect,tech,maticsoft-sns","severity":"info","metadata":{"product":"maticsoft-sns","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/areas/sns/","maticsoft","maticsoftsns"],"case-insensitive":true}]}]},{"id":"xitami","info":{"name":"xitami","author":"cn-kali-team","tags":"detect,tech,xitami","severity":"info","metadata":{"product":"xitami","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: xitami"],"part":"header","case-insensitive":true}]}]},{"id":"mission-control-application-shield","info":{"name":"mission-control-application-shield","author":"cn-kali-team","tags":"detect,tech,mission-control-application-shield","severity":"info","metadata":{"product":"mission-control-application-shield","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"mission control application shield"],"case-insensitive":true}]}]},{"id":"seehealth-health-management-system","info":{"name":"seehealth-health-management-system","author":"cn-kali-team","tags":"detect,tech,seehealth-health-management-system","severity":"info","metadata":{"product":"seehealth-health-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"upvalidatefile.aspx"],"case-insensitive":true}]}]},{"id":"informatica-powercenter","info":{"name":"informatica-powercenter","author":"cn-kali-team","tags":"detect,tech,informatica-powercenter","severity":"info","metadata":{"product":"informatica-powercenter","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/adminconsole/loginsubmit.do"],"case-insensitive":true},{"type":"word","words":["server: informatica"],"part":"header","case-insensitive":true}]}]},{"id":"shunde-cms","info":{"name":"shunde-cms","author":"cn-kali-team","tags":"detect,tech,shunde-cms","severity":"info","metadata":{"product":"shunde-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["for=\"ctl00_cph_l_login_username\">crm帐号"],"case-insensitive":true}]}]},{"id":"eisoo-anyshare","info":{"name":"eisoo-anyshare","author":"cn-kali-team","tags":"detect,tech,eisoo-anyshare","severity":"info","metadata":{"product":"eisoo-anyshare","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["res/libs/webuploader/webuploader.css","src=\"/res/libs/base64.min.js\""],"case-insensitive":true}]}]},{"id":"ip_com-di-er-dai-fang-huo-qiang","info":{"name":"ip_com-第二代防火墙","author":"cn-kali-team","tags":"detect,tech,ip_com-第二代防火墙","severity":"info","metadata":{"product":"ip_com-第二代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["technology, inc.","深圳市和为顺网络技术有限公司\"z?pkq"],"condition":"and","case-insensitive":true}]}]},{"id":"leadsec-vpn","info":{"name":"leadsec-vpn","author":"cn-kali-team","tags":"detect,tech,leadsec-vpn","severity":"info","metadata":{"product":"leadsec-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/js/leadsec.js","src=\"/vpn/user/common/"],"condition":"and","case-insensitive":true}]}]},{"id":"wackopicko","info":{"name":"wackopicko","author":"cn-kali-team","tags":"detect,tech,wackopicko","severity":"info","metadata":{"product":"wackopicko","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1 id=\"title\"><a href=\"/\">wackopicko.com</a></h1>","<h2>welcome to wackopicko</h2>"],"case-insensitive":true}]}]},{"id":"eyou-email-system","info":{"name":"eyou-email-system","author":"cn-kali-team","tags":"detect,tech,eyou-email-system","severity":"info","metadata":{"product":"eyou-email-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["eyoumail","eyouws"],"condition":"and","case-insensitive":true},{"type":"word","words":["/tpl/login/user/images/dbg.png","content=\"亿邮电子邮件系统","eyou 邮件系统","var loginssl = document.form_login.login_ssl.value;"],"case-insensitive":true}]}]},{"id":"ca-siteminder","info":{"name":"ca-siteminder","author":"cn-kali-team","tags":"detect,tech,ca-siteminder","severity":"info","metadata":{"product":"ca-siteminder","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- siteminder encoding"],"case-insensitive":true}]}]},{"id":"tomatocart","info":{"name":"tomatocart","author":"cn-kali-team","tags":"detect,tech,tomatocart","severity":"info","metadata":{"product":"tomatocart","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"tomatocart open source shopping cart solutions\" />","powered by <a href=\"http://www.tomatocart.com\" target=\"_blank\">tomatocart</a>"],"case-insensitive":true}]}]},{"id":"netzone-webcache","info":{"name":"netzone-webcache","author":"cn-kali-team","tags":"detect,tech,netzone-webcache","severity":"info","metadata":{"product":"netzone-webcache","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["广州高度软件有限公司版权所有"],"case-insensitive":true}]}]},{"id":"ruckus-wireless","info":{"name":"ruckus-wireless","author":"cn-kali-team","tags":"detect,tech,ruckus-wireless","severity":"info","metadata":{"product":"ruckus-wireless","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["ed8cf53ef6836184587ee3a987be074a"]},{"type":"word","words":["<title>ruckus wireless admin</title>","alt=\"ruckus wireless\" title="],"case-insensitive":true}]}]},{"id":"burning-board-lite","info":{"name":"burning-board-lite","author":"cn-kali-team","tags":"detect,tech,burning-board-lite","severity":"info","metadata":{"product":"burning-board-lite","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <b><a href=\"http://www.woltlab.de","powered by <b>burning board"],"case-insensitive":true}]}]},{"id":"duomicms","info":{"name":"duomicms","author":"cn-kali-team","tags":"detect,tech,duomicms","severity":"info","metadata":{"product":"duomicms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["duomicms_member","多米"],"condition":"and","case-insensitive":true}]}]},{"id":"fan-wei-e-mobile-yi-dong-guan-li-ping-tai-xiao-xi-fu-wu","info":{"name":"泛微e-mobile 移动管理平台消息服务","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"泛微e-mobile 移动管理平台消息服务","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["ef1091afecc18200b9322cceb5c683fa"]},{"type":"word","words":["<title>emessage 管理界面</title>"],"case-insensitive":true}]}]},{"id":"oracle-fusion-middleware","info":{"name":"oracle-fusion-middleware","author":"cn-kali-team","tags":"detect,tech,oracle-fusion-middleware","severity":"info","metadata":{"product":"oracle-fusion-middleware","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"css/fmw_bottom_area.css"],"case-insensitive":true}]}]},{"id":"remotelyanywhere","info":{"name":"remotelyanywhere","author":"cn-kali-team","tags":"detect,tech,remotelyanywhere","severity":"info","metadata":{"product":"remotelyanywhere","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/img/ralogo.png\" alt=\"remotelyanywhere"],"case-insensitive":true},{"type":"word","words":["server: remotelyanywhere"],"part":"header","case-insensitive":true}]}]},{"id":"pcitc-file-management-system","info":{"name":"pcitc-file-management-system","author":"cn-kali-team","tags":"detect,tech,pcitc-file-management-system","severity":"info","metadata":{"product":"pcitc-file-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["js/scripts/common/easyui/jquery.easyui.min.js"],"case-insensitive":true}]}]},{"id":"vcms","info":{"name":"vcms","author":"cn-kali-team","tags":"detect,tech,vcms","severity":"info","metadata":{"product":"vcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h2>vcms</h2>","<h4>vcms全能网站管理系统</h4>"],"condition":"and","case-insensitive":true}]}]},{"id":"violation-outreach-monitoring-system","info":{"name":"violation-outreach-monitoring-system","author":"cn-kali-team","tags":"detect,tech,violation-outreach-monitoring-system","severity":"info","metadata":{"product":"violation-outreach-monitoring-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<body onload=\"forward_to_logon()\">","window.location='login.action';","欢迎登录违规外联平台"],"case-insensitive":true}]}]},{"id":"dolphinscheduler","info":{"name":"dolphinscheduler","author":"cn-kali-team","tags":"detect,tech,dolphinscheduler","severity":"info","metadata":{"product":"dolphinscheduler","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>dolphinscheduler</title>","let node_env = 'true'"],"case-insensitive":true}]}]},{"id":"axtls-embad-httpd","info":{"name":"axtls-embad-httpd","author":"cn-kali-team","tags":"detect,tech,axtls-embad-httpd","severity":"info","metadata":{"product":"axtls-embad-httpd","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: axhttpd"],"part":"header","case-insensitive":true}]}]},{"id":"cisco-prime-network-registrar","info":{"name":"cisco-prime-network-registrar","author":"cn-kali-team","tags":"detect,tech,cisco-prime-network-registrar","severity":"info","metadata":{"product":"cisco-prime-network-registrar","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["productname=\"network registrar"],"case-insensitive":true}]}]},{"id":"cbss-system","info":{"name":"cbss-system","author":"cn-kali-team","tags":"detect,tech,cbss-system","severity":"info","metadata":{"product":"cbss-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["</a>登录cbss系统</p>","<li>com.cbss.xss.filter.xssfilter.dofilter"],"case-insensitive":true}]}]},{"id":"zhong-ke-wang-wei-fang-huo-qiang","info":{"name":"中科网威-防火墙","author":"cn-kali-team","tags":"detect,tech,中科网威-防火墙","severity":"info","metadata":{"product":"中科网威-防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<input type=\"checkbox\" id=\"authened_type\" name=\"authened_type\"><i class=\"checkbox\"></i>","北京中科网威"],"condition":"and","case-insensitive":true}]}]},{"id":"shen-xin-fu-ying-yong-jiao-fu-guan-li-xi-tong","info":{"name":"深信服应用交付管理系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"深信服应用交付管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>欢迎登录</title>","/report/report.php"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["98128e625a3b98546a206c2170fb5eb3"]}]}]},{"id":"pivotal-crm","info":{"name":"pivotal-crm","author":"cn-kali-team","tags":"detect,tech,pivotal-crm","severity":"info","metadata":{"product":"pivotal-crm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<frame name=\"hidden\" src=\"xmlloader.asp?type=portal","title=\"hidden\" src=\"xmlloader.asp?type=portal"],"case-insensitive":true}]}]},{"id":"ruijie-eg-yi-wang-guan","info":{"name":"ruijie-eg易网关","author":"cn-kali-team","tags":"detect,tech,ruijie-eg易网关","severity":"info","metadata":{"product":"ruijie-eg易网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"eg.css","ruijie"],"condition":"and","case-insensitive":true}]}]},{"id":"flower-celery-monitoring-tool","info":{"name":"flower-celery-monitoring-tool","author":"cn-kali-team","tags":"detect,tech,flower-celery-monitoring-tool","severity":"info","metadata":{"product":"flower-celery-monitoring-tool","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a class=\"brand\" href=\"/\">flower</a>"],"case-insensitive":true}]}]},{"id":"shen-xin-fu-an-quan-gan-zhi-ping-tai","info":{"name":"深信服安全感知平台","author":"cn-kali-team","tags":"detect,tech,深信服安全感知平台","severity":"info","metadata":{"product":"深信服安全感知平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["apps","login.js","安全感知平台"],"condition":"and","case-insensitive":true}]}]},{"id":"apabi-digital-resource-platform","info":{"name":"apabi-digital-resource-platform","author":"cn-kali-team","tags":"detect,tech,apabi-digital-resource-platform","severity":"info","metadata":{"product":"apabi-digital-resource-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<link href=\"http://apabi","default/apabi.css"],"case-insensitive":true}]}]},{"id":"mason","info":{"name":"mason","author":"cn-kali-team","tags":"detect,tech,mason","severity":"info","metadata":{"product":"mason","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-powered-by: html::mason"],"part":"header","case-insensitive":true}]}]},{"id":"emc-unisphere","info":{"name":"emc-unisphere","author":"cn-kali-team","tags":"detect,tech,emc-unisphere","severity":"info","metadata":{"product":"emc-unisphere","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<script src=\"oemmessage.js"],"case-insensitive":true}]}]},{"id":"ji-da-zheng-yuan-shen-fen-ren-zheng-wang-guan","info":{"name":"吉大正元-身份认证网关","author":"cn-kali-team","tags":"detect,tech,吉大正元-身份认证网关","severity":"info","metadata":{"product":"吉大正元-身份认证网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/jit_pnx_portal/","吉大正元身份认证网关"],"condition":"and","case-insensitive":true}]}]},{"id":"phpdealerlocator","info":{"name":"phpdealerlocator","author":"cn-kali-team","tags":"detect,tech,phpdealerlocator","severity":"info","metadata":{"product":"phpdealerlocator","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"pythonselect","for=\"dealer_radiuss_dealer_zip"],"condition":"and","case-insensitive":true}]}]},{"id":"waspd","info":{"name":"waspd","author":"cn-kali-team","tags":"detect,tech,waspd","severity":"info","metadata":{"product":"waspd","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pending waspd activities</font>"],"case-insensitive":true}]}]},{"id":"sun-glassfish","info":{"name":"sun-glassfish","author":"cn-kali-team","tags":"detect,tech,sun-glassfish","severity":"info","metadata":{"product":"sun-glassfish","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["glassfish community","webui/jsf"],"condition":"and","case-insensitive":true}]}]},{"id":"pgadmin","info":{"name":"pgadmin","author":"cn-kali-team","tags":"detect,tech,pgadmin","severity":"info","metadata":{"product":"pgadmin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pgadmin 客户端安装包"],"case-insensitive":true}]}]},{"id":"emerson-environmentalenergymonitoringsystem","info":{"name":"emerson-environmentalenergymonitoringsystem","author":"cn-kali-team","tags":"detect,tech,emerson-environmentalenergymonitoringsystem","severity":"info","metadata":{"product":"emerson-environmentalenergymonitoringsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alert(\"网络断连或者idu-s没有启动."],"case-insensitive":true}]}]},{"id":"polycom-rss-record","info":{"name":"polycom-rss-record","author":"cn-kali-team","tags":"detect,tech,polycom-rss-record","severity":"info","metadata":{"product":"polycom-rss-record","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location.replace(\"/rss/\")"],"case-insensitive":true}]}]},{"id":"vmware-virtualcenter","info":{"name":"vmware-virtualcenter","author":"cn-kali-team","tags":"detect,tech,vmware-virtualcenter","severity":"info","metadata":{"product":"vmware-virtualcenter","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"vmware virtualcenter","content=\"vmware vsphere","the vshield manager requires","url=vcops-vsphere/"],"case-insensitive":true}]}]},{"id":"whmcs","info":{"name":"whmcs","author":"cn-kali-team","tags":"detect,tech,whmcs","severity":"info","metadata":{"product":"whmcs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"welcome_box\">please <a href=\"clientarea.php\" title=\"login\"><strong>login</strong></a> or <a href=\"register.php\" title=\"register\"><strong>register</strong></a></div>","powered by <a href=\"http://www.whmcs.com"],"case-insensitive":true}]}]},{"id":"tencent-exmail","info":{"name":"tencent-exmail","author":"cn-kali-team","tags":"detect,tech,tencent-exmail","severity":"info","metadata":{"product":"tencent-exmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cgi-bin/getinvestigate?flowid=","content=\"登录腾讯企业邮箱"],"case-insensitive":true}]}]},{"id":"iliad-freeboxos","info":{"name":"iliad-freeboxos","author":"cn-kali-team","tags":"detect,tech,iliad-freeboxos","severity":"info","metadata":{"product":"iliad-freeboxos","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["logo_freeboxos"],"case-insensitive":true}]}]},{"id":"trac","info":{"name":"trac","author":"cn-kali-team","tags":"detect,tech,trac","severity":"info","metadata":{"product":"trac","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1>available projects</h1>","powered by trac","wiki/tracguide"],"case-insensitive":true}]}]},{"id":"axis2-web","info":{"name":"axis2-web","author":"cn-kali-team","tags":"detect,tech,axis2-web","severity":"info","metadata":{"product":"axis2-web","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["axis2-web/css/axis-style.css"],"case-insensitive":true}]}]},{"id":"east-simulation-account","info":{"name":"east-simulation-account","author":"cn-kali-team","tags":"detect,tech,east-simulation-account","severity":"info","metadata":{"product":"east-simulation-account","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/scripts/eastsimutility.js\""],"case-insensitive":true}]}]},{"id":"fpoll","info":{"name":"fpoll","author":"cn-kali-team","tags":"detect,tech,fpoll","severity":"info","metadata":{"product":"fpoll","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["admincp/css.css"],"case-insensitive":true}]}]},{"id":"skillsoft-skillport-lms","info":{"name":"skillsoft-skillport-lms","author":"cn-kali-team","tags":"detect,tech,skillsoft-skillport-lms","severity":"info","metadata":{"product":"skillsoft-skillport-lms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<table border=\"0\" width=\"100%\" id=\"logobanner\"><tr width=\"100%\"><td width=\"82%\"><img src=\"https://customer.skillport.com/spcustom/"],"case-insensitive":true}]}]},{"id":"webid","info":{"name":"webid","author":"cn-kali-team","tags":"detect,tech,webid","severity":"info","metadata":{"product":"webid","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta name=\"generator\" content=\"webid\">","powered by <a href=\"http://www.webidsupport.com/\">webid"],"case-insensitive":true}]}]},{"id":"simsweb","info":{"name":"simsweb","author":"cn-kali-team","tags":"detect,tech,simsweb","severity":"info","metadata":{"product":"simsweb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<form onsubmit=\"sendinfo(); return false;\" name=\"logon","index.html\"><font color=\"black\" face=\"arial\">loading simsweb, please wait.....</font></a></h2>","src=\"/simsweb/monitor.js"],"case-insensitive":true}]}]},{"id":"sophos-utm-web-protection","info":{"name":"sophos-utm-web-protection","author":"cn-kali-team","tags":"detect,tech,sophos-utm-web-protection","severity":"info","metadata":{"product":"sophos-utm-web-protection","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by utm web protection"],"case-insensitive":true}]}]},{"id":"integrating-century-epbp-management-platform","info":{"name":"integrating-century-epbp-management-platform","author":"cn-kali-team","tags":"detect,tech,integrating-century-epbp-management-platform","severity":"info","metadata":{"product":"integrating-century-epbp-management-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["match = rmsie.exec(window.navigator.useragent","rmsie = /(msie\\s|trident.*rv:)([\\w.]+)/i"],"case-insensitive":true}]}]},{"id":"enjoyscm-jie-cheng-gong-ying-lian-guan-li-xi-tong","info":{"name":"enjoyscm 捷诚供应链管理系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"enjoyscm 捷诚供应链管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>供应商网上服务厅</title>","content/dist/img/theme.png"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["ddf58a9acbbf8a03b4d8e460f69342ab"]}]}]},{"id":"hadoop-hue","info":{"name":"hadoop-hue","author":"cn-kali-team","tags":"detect,tech,hadoop-hue","severity":"info","metadata":{"product":"hadoop-hue","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hue and the hue logo are trademarks of cloudera, inc.","id=\"jhuenotify"],"condition":"and","case-insensitive":true},{"type":"word","words":["jhuehdfstreeglobals"],"case-insensitive":true}]}]},{"id":"sonarqube","info":{"name":"sonarqube","author":"cn-kali-team","tags":"detect,tech,sonarqube","severity":"info","metadata":{"product":"sonarqube","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"sonarqube"],"case-insensitive":true}]}]},{"id":"hua-yu-an-quan-wang-guan","info":{"name":"华御-安全网关","author":"cn-kali-team","tags":"detect,tech,华御-安全网关","severity":"info","metadata":{"product":"华御-安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["copy_right = {cn : \"\", en ","var opzoon_ver"],"condition":"and","case-insensitive":true}]}]},{"id":"whfst-cms","info":{"name":"whfst-cms","author":"cn-kali-team","tags":"detect,tech,whfst-cms","severity":"info","metadata":{"product":"whfst-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["武汉富思特"],"case-insensitive":true}]}]},{"id":"hfs","info":{"name":"hfs","author":"cn-kali-team","tags":"detect,tech,hfs","severity":"info","metadata":{"product":"hfs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>hfs /</title>"],"case-insensitive":true}]}]},{"id":"quarkmail","info":{"name":"quarkmail","author":"cn-kali-team","tags":"detect,tech,quarkmail","severity":"info","metadata":{"product":"quarkmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<iframe src=\"/cgi-bin/web2cgi/index.cgi\" scrolling=\"no\" frameborder=","window.location.replace(\"/cgi-bin/web2cgi/index.cgi\");"],"case-insensitive":true}]}]},{"id":"message-solution","info":{"name":"message-solution","author":"cn-kali-team","tags":"detect,tech,message-solution","severity":"info","metadata":{"product":"message-solution","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["messagesolution enterprise"],"case-insensitive":true}]}]},{"id":"yapi","info":{"name":"yapi","author":"cn-kali-team","tags":"detect,tech,yapi","severity":"info","metadata":{"product":"yapi","vendor":"ymfe","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["yapi","可视化接口管理平台"],"condition":"and","case-insensitive":true}]}]},{"id":"growforce-email","info":{"name":"growforce-email","author":"cn-kali-team","tags":"detect,tech,growforce-email","severity":"info","metadata":{"product":"growforce-email","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/page/help/mailconfig/config/index.html","href=\"http://webmail.zmail300.cn"],"case-insensitive":true}]}]},{"id":"landray-lan-lingeis-zhi-hui-xie-tong-ping-tai","info":{"name":"landray-蓝凌eis智慧协同平台","author":"cn-kali-team","tags":"detect,tech,landray-蓝凌eis智慧协同平台","severity":"info","metadata":{"product":"landray-蓝凌eis智慧协同平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/scripts/jquery.landray.common.js"],"case-insensitive":true}]}]},{"id":"darkstat","info":{"name":"darkstat","author":"cn-kali-team","tags":"detect,tech,darkstat","severity":"info","metadata":{"product":"darkstat","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: darkstat"],"part":"header","case-insensitive":true}]}]},{"id":"shanshanes-system","info":{"name":"shanshanes-system","author":"cn-kali-team","tags":"detect,tech,shanshanes-system","severity":"info","metadata":{"product":"shanshanes-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/dist/libs/layui/css/layui.css","<title>杉杉储能监控平台</title>","amap.mousetool,amap.districtsearch"],"case-insensitive":true}]}]},{"id":"citadel-servers","info":{"name":"citadel-servers","author":"cn-kali-team","tags":"detect,tech,citadel-servers","severity":"info","metadata":{"product":"citadel-servers","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/styles/webcit.css","<div class=\"boxlabel\">citadel server - powered by"],"case-insensitive":true}]}]},{"id":"etl","info":{"name":"etl","author":"cn-kali-team","tags":"detect,tech,etl","severity":"info","metadata":{"product":"etl","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"header\">登录补天etl系统</div>"],"case-insensitive":true}]}]},{"id":"rui-feng-wang-yun-fang-huo-qiang","info":{"name":"睿峰网云-防火墙","author":"cn-kali-team","tags":"detect,tech,睿峰网云-防火墙","severity":"info","metadata":{"product":"睿峰网云-防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["睿峰网云防火墙"],"case-insensitive":true}]}]},{"id":"marathon","info":{"name":"marathon","author":"cn-kali-team","tags":"detect,tech,marathon","severity":"info","metadata":{"product":"marathon","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"img/marathon-favicon.ico"],"case-insensitive":true}]}]},{"id":"owtware-iconn-end-user-calculation","info":{"name":"owtware-iconn-end-user-calculation","author":"cn-kali-team","tags":"detect,tech,owtware-iconn-end-user-calculation","severity":"info","metadata":{"product":"owtware-iconn-end-user-calculation","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/res/api/owvmapi.js?"],"case-insensitive":true}]}]},{"id":"kafka-center","info":{"name":"kafka-center","author":"cn-kali-team","tags":"detect,tech,kafka-center","severity":"info","metadata":{"product":"kafka-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>kafka center</title>"],"case-insensitive":true}]}]},{"id":"founder-operation-management-and-decision-support-system","info":{"name":"founder-operation-management-and-decision-support-system","author":"cn-kali-team","tags":"detect,tech,founder-operation-management-and-decision-support-system","severity":"info","metadata":{"product":"founder-operation-management-and-decision-support-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/desktop/ui/custom/getimage?img=iphoneview.png\"","src=\"/portal/img/logo.png\""],"case-insensitive":true}]}]},{"id":"wacintaki-poteto-bbs","info":{"name":"wacintaki-poteto-bbs","author":"cn-kali-team","tags":"detect,tech,wacintaki-poteto-bbs","severity":"info","metadata":{"product":"wacintaki-poteto-bbs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.ninechime.com/products/\" title=\"get your own free bbs!\">wacintaki","by <a href=\"http://suteki.nu\">ranmaguy</a> and <a href=\"http://www.cellosoft.com\">marcello</a>"],"case-insensitive":true}]}]},{"id":"muhttpd","info":{"name":"muhttpd","author":"cn-kali-team","tags":"detect,tech,muhttpd","severity":"info","metadata":{"product":"muhttpd","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["e50cc7cc4f8d7f2346d901c35dee3a5f"]},{"type":"word","words":["2017 arris enterprises, llc. all rights reserved."],"case-insensitive":true}]}]},{"id":"tmailer","info":{"name":"tmailer","author":"cn-kali-team","tags":"detect,tech,tmailer","severity":"info","metadata":{"product":"tmailer","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/tmailer/img/logo/favicon.ico"],"case-insensitive":true}]}]},{"id":"adt-iam","info":{"name":"adt-iam","author":"cn-kali-team","tags":"detect,tech,adt-iam","severity":"info","metadata":{"product":"adt-iam","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"tpn,vpn,内网安全,内网控制,主机防护\""],"case-insensitive":true}]}]},{"id":"huawei-vpn","info":{"name":"huawei-vpn","author":"cn-kali-team","tags":"detect,tech,huawei-vpn","severity":"info","metadata":{"product":"huawei-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["oncompleted(hresult,perrorobject, pasynccontext)"],"case-insensitive":true}]}]},{"id":"tp_link-omada-controller","info":{"name":"tp_link-omada-controller","author":"cn-kali-team","tags":"detect,tech,tp_link-omada-controller","severity":"info","metadata":{"product":"tp_link-omada-controller","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"width=1300,initial-scale=1,minimal-ui\""],"case-insensitive":true}]}]},{"id":"bjca","info":{"name":"bjca","author":"cn-kali-team","tags":"detect,tech,bjca","severity":"info","metadata":{"product":"bjca","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<li><a href=\"/install/certapp_bd.exe\">下载证书应用环境</a></li>"],"case-insensitive":true}]}]},{"id":"webbuilder","info":{"name":"webbuilder","author":"cn-kali-team","tags":"detect,tech,webbuilder","severity":"info","metadata":{"product":"webbuilder","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"webbuilder/script/wb.js"],"case-insensitive":true}]}]},{"id":"astaro-command-center","info":{"name":"astaro-command-center","author":"cn-kali-team","tags":"detect,tech,astaro-command-center","severity":"info","metadata":{"product":"astaro-command-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/js/_variables_from_backend.js?","commandcenter"],"case-insensitive":true}]}]},{"id":"qi-an-xin-shu-ju-tuo-min-xi-tong","info":{"name":"奇安信-数据脱敏系统","author":"cn-kali-team","tags":"detect,tech,奇安信-数据脱敏系统","severity":"info","metadata":{"product":"奇安信-数据脱敏系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"#!/home\" class=\"sysname\">360网神数据脱敏系统 "],"case-insensitive":true}]}]},{"id":"sentry-cloud","info":{"name":"sentry-cloud","author":"cn-kali-team","tags":"detect,tech,sentry-cloud","severity":"info","metadata":{"product":"sentry-cloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src: url(/static/fonts/lcdd.eot) format(\"truetype\"), url(/static/fonts/lcdd.ttf) format(\"truetype\");"],"case-insensitive":true}]}]},{"id":"alibaba-anyproxy","info":{"name":"alibaba-anyproxy","author":"cn-kali-team","tags":"detect,tech,alibaba-anyproxy","severity":"info","metadata":{"product":"alibaba-anyproxy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>anyproxy</title>","dist/main.css"],"condition":"and","case-insensitive":true}]}]},{"id":"zxoa","info":{"name":"zxoa","author":"cn-kali-team","tags":"detect,tech,zxoa","severity":"info","metadata":{"product":"zxoa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"button1\" value=\"\" onclick=\"javascript:return checkfrom();\" id=\"button1\" class=\"loginbtn\" />","obj.src = \"createcheckcode.aspx?id\"+strmath;"],"case-insensitive":true}]}]},{"id":"h_ui","info":{"name":"h_ui","author":"cn-kali-team","tags":"detect,tech,h_ui","severity":"info","metadata":{"product":"h_ui","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["h-ui.js","h-ui.min.js"],"condition":"and","case-insensitive":true},{"type":"word","words":["/css/h-ui.min.css","html5shi.js"],"condition":"and","case-insensitive":true},{"type":"word","words":["/css/h-ui.login.css","/h-ui.admin/"],"condition":"and","case-insensitive":true}]}]},{"id":"fex","info":{"name":"fex","author":"cn-kali-team","tags":"detect,tech,fex","severity":"info","metadata":{"product":"fex","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"mailto:[email protected]"],"case-insensitive":true},{"type":"word","words":["server: fexsrv"],"part":"header","case-insensitive":true}]}]},{"id":"ultrastats","info":{"name":"ultrastats","author":"cn-kali-team","tags":"detect,tech,ultrastats","severity":"info","metadata":{"product":"ultrastats","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"./images/main/ultrastatslogo.png\" width=\"300\" height=\"200\" name=\"ultrastats_logo\" align=\"center\">"],"case-insensitive":true}]}]},{"id":"hfish","info":{"name":"hfish","author":"cn-kali-team","tags":"detect,tech,hfish","severity":"info","metadata":{"product":"hfish","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>hfish","href=\"https://github.com/hacklcx/hfish\"","src=\"/static/images/hfish.png\""],"condition":"and","case-insensitive":true}]}]},{"id":"fastadmin-framework","info":{"name":"fastadmin-framework","author":"cn-kali-team","tags":"detect,tech,fastadmin-framework","severity":"info","metadata":{"product":"fastadmin-framework","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["fastadmin","fastadmin.net"],"condition":"and","case-insensitive":true},{"type":"word","words":["<a href=\"/\" class=\"navbar-brand\">fastadmin</a>","copyright © fastadmin.net","fastadmin.net"],"case-insensitive":true}]}]},{"id":"hikvision-cloudvideo","info":{"name":"hikvision-cloudvideo","author":"cn-kali-team","tags":"detect,tech,hikvision-cloudvideo","severity":"info","metadata":{"product":"hikvision-cloudvideo","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["嗨看云视频</p>"],"case-insensitive":true}]}]},{"id":"zope","info":{"name":"zope","author":"cn-kali-team","tags":"detect,tech,zope","severity":"info","metadata":{"product":"zope","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-powered-by: zope"],"part":"header","case-insensitive":true}]}]},{"id":"sitegenius","info":{"name":"sitegenius","author":"cn-kali-team","tags":"detect,tech,sitegenius","severity":"info","metadata":{"product":"sitegenius","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var portalbrowser = window.open('popup.php?page_type='+page_type+'&lang="],"case-insensitive":true}]}]},{"id":"atfuture-system","info":{"name":"atfuture-system","author":"cn-kali-team","tags":"detect,tech,atfuture-system","severity":"info","metadata":{"product":"atfuture-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/content/web/theme/skin01/img/p_login_logo01.png"],"case-insensitive":true}]}]},{"id":"westell-secure","info":{"name":"westell-secure","author":"cn-kali-team","tags":"detect,tech,westell-secure","severity":"info","metadata":{"product":"westell-secure","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: wstl cpe"],"part":"header","case-insensitive":true}]}]},{"id":"qi-an-xin-vpn","info":{"name":"奇安信-vpn","author":"cn-kali-team","tags":"detect,tech,奇安信-vpn","severity":"info","metadata":{"product":"奇安信-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["qianxinvpn","卸载奇安信vpn"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["4cf31d7e53197f79b435b66cc8cb3098"]}]}]},{"id":"aliyun-rds","info":{"name":"aliyun-rds","author":"cn-kali-team","tags":"detect,tech,aliyun-rds","severity":"info","metadata":{"product":"aliyun-rds","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"legend\">rds管理系统</div>"],"case-insensitive":true}]}]},{"id":"getsimple-cms","info":{"name":"getsimple-cms","author":"cn-kali-team","tags":"detect,tech,getsimple-cms","severity":"info","metadata":{"product":"getsimple-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"getsimple","powered by getsimple"],"case-insensitive":true}]}]},{"id":"jloa","info":{"name":"jloa","author":"cn-kali-team","tags":"detect,tech,jloa","severity":"info","metadata":{"product":"jloa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["logintable","selectcss","toptitleimg"],"condition":"and","case-insensitive":true}]}]},{"id":"shen-xin-fuwaf","info":{"name":"深信服waf","author":"cn-kali-team","tags":"detect,tech,深信服waf","severity":"info","metadata":{"product":"深信服waf","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["commonfunction.js","rsa.js"],"condition":"and","case-insensitive":true},{"type":"word","words":["/loginout.php","redirect to..."],"condition":"and","case-insensitive":true}]}]},{"id":"rap2","info":{"name":"rap2","author":"cn-kali-team","tags":"detect,tech,rap2","severity":"info","metadata":{"product":"rap2","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["webpackjsonprap2-dolores"],"case-insensitive":true}]}]},{"id":"netcom-ngfw","info":{"name":"netcom-ngfw","author":"cn-kali-team","tags":"detect,tech,netcom-ngfw","severity":"info","metadata":{"product":"netcom-ngfw","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>网康下一代防火墙</title>","netentsec.css"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["9252bd07dbb6277f7ae898da87dada3a"]}]}]},{"id":"edk","info":{"name":"edk","author":"cn-kali-team","tags":"detect,tech,edk","severity":"info","metadata":{"product":"edk","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- /killlistable.tpl -->"],"case-insensitive":true}]}]},{"id":"tian-rong-xin-vpn","info":{"name":"天融信-vpn","author":"cn-kali-team","tags":"detect,tech,天融信-vpn","severity":"info","metadata":{"product":"天融信-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location.href=\"/vone/pub/pda.html\";","window.location=\"/portal_default/index.html\";</script>"],"condition":"and","case-insensitive":true}]}]},{"id":"an-you-an-quan-you-jian","info":{"name":"安邮-安全邮件","author":"cn-kali-team","tags":"detect,tech,安邮-安全邮件","severity":"info","metadata":{"product":"安邮-安全邮件","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span> 客服邮箱[email protected]</span>","content=\"北京国信安邮科技有限公司"],"condition":"and","case-insensitive":true}]}]},{"id":"lussumo-vanilla","info":{"name":"lussumo-vanilla","author":"cn-kali-team","tags":"detect,tech,lussumo-vanilla","severity":"info","metadata":{"product":"lussumo-vanilla","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-powered-by: lussumo vanilla"],"part":"header","case-insensitive":true}]}]},{"id":"landmark-dus","info":{"name":"landmark-dus","author":"cn-kali-team","tags":"detect,tech,landmark-dus","severity":"info","metadata":{"product":"landmark-dus","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/landmark.admin.web_deploy/","landmark"],"case-insensitive":true}]}]},{"id":"360-xin-tian-qing","info":{"name":"360新天擎","author":"cn-kali-team","tags":"detect,tech,360新天擎","severity":"info","metadata":{"product":"360新天擎","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: /login?refer=%2f","set-cookie: skylar"],"part":"header","condition":"and","case-insensitive":true}]}]},{"id":"ibm-webseal","info":{"name":"ibm-webseal","author":"cn-kali-team","tags":"detect,tech,ibm-webseal","severity":"info","metadata":{"product":"ibm-webseal","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: webseal"],"part":"header","case-insensitive":true}]}]},{"id":"wowza-wowzastreamingengine","info":{"name":"wowza-wowzastreamingengine","author":"cn-kali-team","tags":"detect,tech,wowza-wowzastreamingengine","severity":"info","metadata":{"product":"wowza-wowzastreamingengine","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: wowzastreamingengine"],"part":"header","case-insensitive":true}]}]},{"id":"nstrong-itmaster","info":{"name":"nstrong-itmaster","author":"cn-kali-team","tags":"detect,tech,nstrong-itmaster","severity":"info","metadata":{"product":"nstrong-itmaster","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["netstrong","var base_path = '/stormweb';"],"case-insensitive":true}]}]},{"id":"dingruan-cgm","info":{"name":"dingruan-cgm","author":"cn-kali-team","tags":"detect,tech,dingruan-cgm","severity":"info","metadata":{"product":"dingruan-cgm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id='cgm' style='background-image"],"case-insensitive":true}]}]},{"id":"zhi-yuan-xie-chuang-a6-xie-tong-ban-gong-ruan-jian","info":{"name":"致远协创a6协同办公软件","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远协创a6协同办公软件","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["致远协创a6协同办公软件"],"case-insensitive":true}]}]},{"id":"ibm-tivoli","info":{"name":"ibm-tivoli","author":"cn-kali-team","tags":"detect,tech,ibm-tivoli","severity":"info","metadata":{"product":"ibm-tivoli","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["banner/tivoli/tv_icbanner.html","tivoli netview uses an open source web server"],"case-insensitive":true}]}]},{"id":"siangsoft-filesystem","info":{"name":"siangsoft-filesystem","author":"cn-kali-team","tags":"detect,tech,siangsoft-filesystem","severity":"info","metadata":{"product":"siangsoft-filesystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["$.cookie('sianglng' , null)"],"case-insensitive":true}]}]},{"id":"php-voting-system","info":{"name":"php-voting-system","author":"cn-kali-team","tags":"detect,tech,php-voting-system","severity":"info","metadata":{"product":"php-voting-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"http://www.888072.com","content=\"qq 7000719"],"condition":"and","case-insensitive":true},{"type":"word","words":["content=\"http://www.vote123.cn"],"case-insensitive":true}]}]},{"id":"zhirui","info":{"name":"zhirui","author":"cn-kali-team","tags":"detect,tech,zhirui","severity":"info","metadata":{"product":"zhirui","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"智睿软件","zhirui.js"],"case-insensitive":true}]}]},{"id":"cloodie-his","info":{"name":"cloodie-his","author":"cn-kali-team","tags":"detect,tech,cloodie-his","severity":"info","metadata":{"product":"cloodie-his","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/design/design/cloodie.css","src=\"/design/common/his.logo.white.svg\" alt=\"his logo"],"case-insensitive":true}]}]},{"id":"frp","info":{"name":"frp","author":"cn-kali-team","tags":"detect,tech,frp","severity":"info","metadata":{"product":"frp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>frps dashboard</title>"],"case-insensitive":true}]}]},{"id":"turbomail","info":{"name":"turbomail","author":"cn-kali-team","tags":"detect,tech,turbomail","severity":"info","metadata":{"product":"turbomail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by turbomail","wzcon1 clearfix"],"condition":"and","case-insensitive":true},{"type":"word","words":["<a href=\"http://www.turbomail.org\">powered by turbomail</a>","turbomail管理系统","alt=\"turbomail 电子邮件系统\"/>"],"case-insensitive":true}]}]},{"id":"lezhixing","info":{"name":"lezhixing","author":"cn-kali-team","tags":"detect,tech,lezhixing","severity":"info","metadata":{"product":"lezhixing","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/static/thirdparty/jquery/","var contextpath = \"/datacenter"],"condition":"and","case-insensitive":true},{"type":"word","words":["action=\"/datacenter/authentication/login.do\" method=\"post","location.href=contextpath+\"/login/password/password.jsp"],"case-insensitive":true}]}]},{"id":"dell-openmanage","info":{"name":"dell-openmanage","author":"cn-kali-team","tags":"detect,tech,dell-openmanage","severity":"info","metadata":{"product":"dell-openmanage","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/oem//data/images/logo.gif\"","url=/servlet/omsalogin?msgstatus='"],"condition":"and","case-insensitive":true},{"type":"word","words":["alt=\"openmanage\""],"case-insensitive":true}]}]},{"id":"chenrui-video-security-access-system","info":{"name":"chenrui-video-security-access-system","author":"cn-kali-team","tags":"detect,tech,chenrui-video-security-access-system","severity":"info","metadata":{"product":"chenrui-video-security-access-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location=\"/vmonitor\";"],"case-insensitive":true}]}]},{"id":"rui-jie-rg-ew1200g","info":{"name":"锐捷-rg-ew1200g","author":"cn-kali-team","tags":"detect,tech,锐捷-rg-ew1200g","severity":"info","metadata":{"product":"锐捷-rg-ew1200g","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/js/app","/static/img/title.ico","锐捷"],"condition":"and","case-insensitive":true}]}]},{"id":"bullwark","info":{"name":"bullwark","author":"cn-kali-team","tags":"detect,tech,bullwark","severity":"info","metadata":{"product":"bullwark","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>bullwark momentum series</title>"],"case-insensitive":true}]}]},{"id":"fortinet-ensilo","info":{"name":"fortinet-ensilo","author":"cn-kali-team","tags":"detect,tech,fortinet-ensilo","severity":"info","metadata":{"product":"fortinet-ensilo","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"images/ensilo_logo.png"],"case-insensitive":true}]}]},{"id":"impresspages-cms","info":{"name":"impresspages-cms","author":"cn-kali-team","tags":"detect,tech,impresspages-cms","severity":"info","metadata":{"product":"impresspages-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"impresspages cms"],"case-insensitive":true}]}]},{"id":"ruvar-oa","info":{"name":"ruvar-oa","author":"cn-kali-team","tags":"detect,tech,ruvar-oa","severity":"info","metadata":{"product":"ruvar-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<iframe id=\"ifrm\" width=\"100%\" height=\"100%\" frameborder=\"0\" scrolling=\"no\" src=\"/include/login.aspx"],"case-insensitive":true}]}]},{"id":"shen-xin-fu-xia-yi-dai-fang-huo-qiang-ngaf","info":{"name":"深信服下一代防火墙-ngaf","author":"cn-kali-team","tags":"detect,tech,深信服下一代防火墙-ngaf","severity":"info","metadata":{"product":"深信服下一代防火墙-ngaf","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ngaf","sangfor","login"],"condition":"and","case-insensitive":true}]}]},{"id":"mjniohttpdaemon","info":{"name":"mjniohttpdaemon","author":"cn-kali-team","tags":"detect,tech,mjniohttpdaemon","severity":"info","metadata":{"product":"mjniohttpdaemon","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: mjniohttpdaemon","set-cookie: mjniohttpdsessionid"],"part":"header","case-insensitive":true}]}]},{"id":"webuploader","info":{"name":"webuploader","author":"cn-kali-team","tags":"detect,tech,webuploader","severity":"info","metadata":{"product":"webuploader","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/webuploader.css\" rel=\"stylesheet","/webuploader.js\"></script>","/webuploader.min.js\"></script>"],"case-insensitive":true}]}]},{"id":"zhi-yuan-a8-v5-xie-tong-guan-li-ruan-jian","info":{"name":"致远a8-v5协同管理软件","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远a8-v5协同管理软件","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["https://weixin.seeyon.com/mobilehelp.jsp?random=","a8+集团版"],"condition":"and","case-insensitive":true},{"type":"word","words":["common/js/passwdcheck.js?v=v5_6","/seeyon/common/images/a8/favicon.ico"],"case-insensitive":true}]}]},{"id":"qian-yan-wen-dang-an-quan-guan-li-ruan-jian","info":{"name":"前沿文档安全管理软件","author":"cn-kali-team","tags":"detect,tech,前沿文档安全管理软件","severity":"info","metadata":{"product":"前沿文档安全管理软件","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["前沿文档安全管理软件"],"case-insensitive":true}]}]},{"id":"ruvarhrm","info":{"name":"ruvarhrm","author":"cn-kali-team","tags":"detect,tech,ruvarhrm","severity":"info","metadata":{"product":"ruvarhrm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/ruvarhrm/web_login/login.aspx"],"case-insensitive":true}]}]},{"id":"easted-ecloud","info":{"name":"easted-ecloud","author":"cn-kali-team","tags":"detect,tech,easted-ecloud","severity":"info","metadata":{"product":"easted-ecloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span>easted vserver虚拟数据中心系统</span></a></div>"],"case-insensitive":true}]}]},{"id":"byzoro-xia-yi-dai-fang-huo-qiang","info":{"name":"byzoro-下一代防火墙","author":"cn-kali-team","tags":"detect,tech,byzoro-下一代防火墙","severity":"info","metadata":{"product":"byzoro-下一代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"login_main_text\">下一代防火墙</div>"],"case-insensitive":true}]}]},{"id":"votemanager","info":{"name":"votemanager","author":"cn-kali-team","tags":"detect,tech,votemanager","severity":"info","metadata":{"product":"votemanager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.cdrbp.cn\">微信数字投票","content=\"微平台投票管理系统"],"condition":"and","case-insensitive":true},{"type":"word","words":["content=\"微平台投票系统"],"case-insensitive":true}]}]},{"id":"schneider-citectscada","info":{"name":"schneider-citectscada","author":"cn-kali-team","tags":"detect,tech,schneider-citectscada","severity":"info","metadata":{"product":"schneider-citectscada","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta http-equiv=\"refresh\" content=\"0; url=/citectscada\">","content=\"start services, start group, the start group, automation, industrial, software engineering, scada, plc, rtu, rockwell, rockwell automation, allen-bradley, allen bradley, allenbradley, citect, citectscada, kingfisher"],"case-insensitive":true}]}]},{"id":"lifetype","info":{"name":"lifetype","author":"cn-kali-team","tags":"detect,tech,lifetype","severity":"info","metadata":{"product":"lifetype","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"lifetype","title=\"install lifetype"],"case-insensitive":true}]}]},{"id":"qi-an-xin-tian-yan","info":{"name":"奇安信-天眼","author":"cn-kali-team","tags":"detect,tech,奇安信-天眼","severity":"info","metadata":{"product":"奇安信-天眼","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["360天眼"],"case-insensitive":true}]}]},{"id":"eversec-qi-ye-an-quan-wei-xie-gan-zhi-xi-tong","info":{"name":"eversec-企业安全威胁感知系统","author":"cn-kali-team","tags":"detect,tech,eversec-企业安全威胁感知系统","severity":"info","metadata":{"product":"eversec-企业安全威胁感知系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/j_spring_security_check"],"case-insensitive":true}]}]},{"id":"paloalto-globalprotect","info":{"name":"paloalto-globalprotect","author":"cn-kali-team","tags":"detect,tech,paloalto-globalprotect","severity":"info","metadata":{"product":"paloalto-globalprotect","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["global-protect/login.esp"],"case-insensitive":true}]}]},{"id":"moosefs","info":{"name":"moosefs","author":"cn-kali-team","tags":"detect,tech,moosefs","severity":"info","metadata":{"product":"moosefs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mfs.cgi","under-goal files"],"condition":"and","case-insensitive":true}]}]},{"id":"cisco-nexus-data-broker","info":{"name":"cisco-nexus-data-broker","author":"cn-kali-team","tags":"detect,tech,cisco-nexus-data-broker","severity":"info","metadata":{"product":"cisco-nexus-data-broker","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location.href = '/monitor';"],"case-insensitive":true}]}]},{"id":"ideawebserver","info":{"name":"ideawebserver","author":"cn-kali-team","tags":"detect,tech,ideawebserver","severity":"info","metadata":{"product":"ideawebserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: ideawebserver"],"part":"header","case-insensitive":true}]}]},{"id":"huawei-jump-server","info":{"name":"huawei-jump-server","author":"cn-kali-team","tags":"detect,tech,huawei-jump-server","severity":"info","metadata":{"product":"huawei-jump-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["event_onusbkeychange=onusbkeychange","id=mtokenplugin","value=pluginloaded"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["1f2d27250647de902d396b75d9a2b0cf"]}]}]},{"id":"an-wang-ke-ji-zhi-neng-lu-you-xi-tong","info":{"name":"安网科技-智能路由系统","author":"cn-kali-team","tags":"detect,tech,安网科技-智能路由系统","severity":"info","metadata":{"product":"安网科技-智能路由系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>安网科技-智能路由系统</title>","var save_time=72;//小时数"],"condition":"and","case-insensitive":true}]}]},{"id":"mongodb","info":{"name":"mongodb","author":"cn-kali-team","tags":"detect,tech,mongodb","severity":"info","metadata":{"product":"mongodb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["it looks like you are trying to access mongodb over http on the native driver port."],"case-insensitive":true}]}]},{"id":"yonyou-uclient","info":{"name":"yonyou-uclient","author":"cn-kali-team","tags":"detect,tech,yonyou-uclient","severity":"info","metadata":{"product":"yonyou-uclient","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http-equiv=refresh content=0;url=index.jsp"],"case-insensitive":true}]}]},{"id":"novell-groupwise","info":{"name":"novell-groupwise","author":"cn-kali-team","tags":"detect,tech,novell-groupwise","severity":"info","metadata":{"product":"novell-groupwise","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- start novell services"],"case-insensitive":true},{"type":"word","words":["set-cookie: njscn="],"part":"header","case-insensitive":true}]}]},{"id":"parallels-plesk-panel","info":{"name":"parallels-plesk-panel","author":"cn-kali-team","tags":"detect,tech,parallels-plesk-panel","severity":"info","metadata":{"product":"parallels-plesk-panel","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"./img/panel-logo.png\" alt=\"parallels plesk panel\"></a>","parallels ip holdings gmbh"],"case-insensitive":true}]}]},{"id":"oss","info":{"name":"oss","author":"cn-kali-team","tags":"detect,tech,oss","severity":"info","metadata":{"product":"oss","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/uf/login/login.jsp\" >"],"case-insensitive":true}]}]},{"id":"phocas","info":{"name":"phocas","author":"cn-kali-team","tags":"detect,tech,phocas","severity":"info","metadata":{"product":"phocas","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"https://www.phocassoftware.com\""],"case-insensitive":true}]}]},{"id":"novell-netware","info":{"name":"novell-netware","author":"cn-kali-team","tags":"detect,tech,novell-netware","severity":"info","metadata":{"product":"novell-netware","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["code=\"nwshealth.class"],"case-insensitive":true},{"type":"word","words":["server: netware http stack"],"part":"header","case-insensitive":true}]}]},{"id":"he-zheng-ruan-jian--wang-zhan-qun-nei-rong-guan-li-xi-tong-hzcms","info":{"name":"合正软件-网站群内容管理系统-hzcms","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"合正软件-网站群内容管理系统-hzcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["produced by cms 网站群内容管理系统"],"case-insensitive":true}]}]},{"id":"special-device-testing-risk-assessment-system","info":{"name":"special-device-testing-risk-assessment-system","author":"cn-kali-team","tags":"detect,tech,special-device-testing-risk-assessment-system","severity":"info","metadata":{"product":"special-device-testing-risk-assessment-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var unitid = getpagerequestvalue(\"unitid\")"],"case-insensitive":true}]}]},{"id":"eticket","info":{"name":"eticket","author":"cn-kali-team","tags":"detect,tech,eticket","severity":"info","metadata":{"product":"eticket","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/eticket/eticket.css","<a href=\"http://www.eticketsupport.com\" target=\"_blank\">","powered by eticket"],"case-insensitive":true}]}]},{"id":"accellion-secure-file-transfer","info":{"name":"accellion-secure-file-transfer","author":"cn-kali-team","tags":"detect,tech,accellion-secure-file-transfer","severity":"info","metadata":{"product":"accellion-secure-file-transfer","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["secured by accellion"],"case-insensitive":true}]}]},{"id":"vts-cms","info":{"name":"vts-cms","author":"cn-kali-team","tags":"detect,tech,vts-cms","severity":"info","metadata":{"product":"vts-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["errmag"],"case-insensitive":true}]}]},{"id":"suremail","info":{"name":"suremail","author":"cn-kali-team","tags":"detect,tech,suremail","severity":"info","metadata":{"product":"suremail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span> 客服邮箱:[email protected]</span>","content=\"北京国信安邮科技有限公司"],"case-insensitive":true}]}]},{"id":"onethink","info":{"name":"onethink","author":"cn-kali-team","tags":"detect,tech,onethink","severity":"info","metadata":{"product":"onethink","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onethink管理平台","onethink.css"],"case-insensitive":true}]}]},{"id":"ahnlab-trusguard-ssl-vpn","info":{"name":"ahnlab-trusguard-ssl-vpn","author":"cn-kali-team","tags":"detect,tech,ahnlab-trusguard-ssl-vpn","severity":"info","metadata":{"product":"ahnlab-trusguard-ssl-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["trusguard ssl vpn client"],"case-insensitive":true}]}]},{"id":"cerberus-helpdesk","info":{"name":"cerberus-helpdesk","author":"cn-kali-team","tags":"detect,tech,cerberus-helpdesk","severity":"info","metadata":{"product":"cerberus-helpdesk","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- if you have your own stylesheet for html elements, you can remove the cerberus-html.css link"],"case-insensitive":true}]}]},{"id":"piaware-skyview","info":{"name":"piaware-skyview","author":"cn-kali-team","tags":"detect,tech,piaware-skyview","severity":"info","metadata":{"product":"piaware-skyview","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"piaware skyview\""],"case-insensitive":true}]}]},{"id":"utt-device","info":{"name":"utt-device","author":"cn-kali-team","tags":"detect,tech,utt-device","severity":"info","metadata":{"product":"utt-device","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"utt-inline-block\" src=\"./images/login_btmlogo.png\""],"case-insensitive":true}]}]},{"id":"bentley-systems-projectwise","info":{"name":"bentley-systems-projectwise","author":"cn-kali-team","tags":"detect,tech,bentley-systems-projectwise","severity":"info","metadata":{"product":"bentley-systems-projectwise","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"projectwise.ico"],"case-insensitive":true}]}]},{"id":"bluepacific-network-monitoring-system","info":{"name":"bluepacific-network-monitoring-system","author":"cn-kali-team","tags":"detect,tech,bluepacific-network-monitoring-system","severity":"info","metadata":{"product":"bluepacific-network-monitoring-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/biradarserver/web/"],"case-insensitive":true}]}]},{"id":"teradata-parallel","info":{"name":"teradata-parallel","author":"cn-kali-team","tags":"detect,tech,teradata-parallel","severity":"info","metadata":{"product":"teradata-parallel","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var currentmode ='fittowindowonload"],"case-insensitive":true}]}]},{"id":"phplist","info":{"name":"phplist","author":"cn-kali-team","tags":"detect,tech,phplist","severity":"info","metadata":{"product":"phplist","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["© <a href=\"http://phplist.com\" target","content=\"michiel dethmers - http://www.phplist.com","content=\"phplist version"],"case-insensitive":true}]}]},{"id":"discuz","info":{"name":"discuz","author":"cn-kali-team","tags":"detect,tech,discuz","severity":"info","metadata":{"product":"discuz","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"discuz!","discuz_uid"],"condition":"and","case-insensitive":true},{"type":"word","words":["discuz_uid","portal.php?mod="],"condition":"and","case-insensitive":true},{"type":"word","words":["content=\"discuz","href=\"/forum.php?","id=\"discuz_tips","powered by <strong><a href=\"http://www.discuz.net"],"case-insensitive":true}]}]},{"id":"qax-useso","info":{"name":"qax-useso","author":"cn-kali-team","tags":"detect,tech,qax-useso","severity":"info","metadata":{"product":"qax-useso","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["libs.useso.com"],"case-insensitive":true}]}]},{"id":"coreshop","info":{"name":"coreshop","author":"cn-kali-team","tags":"detect,tech,coreshop","severity":"info","metadata":{"product":"coreshop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["ac08a66b033430e3034e395cc9f04533"]},{"type":"word","words":["coreshop"],"case-insensitive":true}]}]},{"id":"rmihttpserver","info":{"name":"rmihttpserver","author":"cn-kali-team","tags":"detect,tech,rmihttpserver","severity":"info","metadata":{"product":"rmihttpserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cloudclient httpserver is running..."],"case-insensitive":true}]}]},{"id":"timestamp-server","info":{"name":"timestamp-server","author":"cn-kali-team","tags":"detect,tech,timestamp-server","severity":"info","metadata":{"product":"timestamp-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["北京数字认证股份有限公司"],"case-insensitive":true}]}]},{"id":"an-heng-xin-xi-ming-yu-zong-he-ri-zhi-shen-ji","info":{"name":"安恒信息-明御综合日志审计","author":"cn-kali-team","tags":"detect,tech,安恒信息-明御综合日志审计","severity":"info","metadata":{"product":"安恒信息-明御综合日志审计","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["明御","综合日志审计分析平台"],"condition":"and","case-insensitive":true}]}]},{"id":"hanwei-mobile-platform","info":{"name":"hanwei-mobile-platform","author":"cn-kali-team","tags":"detect,tech,hanwei-mobile-platform","severity":"info","metadata":{"product":"hanwei-mobile-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"images/zshlogo.jpg\" />","信任汉威的开发证书"],"case-insensitive":true}]}]},{"id":"ai-ban-gong-oa","info":{"name":"爱办公-oa","author":"cn-kali-team","tags":"detect,tech,爱办公-oa","severity":"info","metadata":{"product":"爱办公-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"https://www.ioa.cn/official/download.html\" target=\"_blank\">爱办公app</a>","id=\"foot_version\">厦门容能科技有限公司"],"condition":"and","case-insensitive":true}]}]},{"id":"263-hrm","info":{"name":"263-hrm","author":"cn-kali-team","tags":"detect,tech,263-hrm","severity":"info","metadata":{"product":"263-hrm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<p align=\"center\">请使用263em登陆!</p>"],"case-insensitive":true}]}]},{"id":"power-cpms","info":{"name":"power-cpms","author":"cn-kali-team","tags":"detect,tech,power-cpms","severity":"info","metadata":{"product":"power-cpms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["post(\"/ssosaml/saml2signonhandler.ashx\")"],"case-insensitive":true}]}]},{"id":"dts-operation-platform","info":{"name":"dts-operation-platform","author":"cn-kali-team","tags":"detect,tech,dts-operation-platform","severity":"info","metadata":{"product":"dts-operation-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.appname = 'alidts';"],"case-insensitive":true}]}]},{"id":"micool-management-system","info":{"name":"micool-management-system","author":"cn-kali-team","tags":"detect,tech,micool-management-system","severity":"info","metadata":{"product":"micool-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["bplay.php?play=","name=\"keywords\" content=\"电影,视频大全,在线高清电影,付费电影,免费电影,剧集,电影,在线观看,vip高清电影直播\"","米酷影视 版权所有"],"case-insensitive":true}]}]},{"id":"niushop","info":{"name":"niushop","author":"cn-kali-team","tags":"detect,tech,niushop","severity":"info","metadata":{"product":"niushop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["4b320a972023a99c21bffa7267ba6546"]},{"type":"word","words":["niushop"],"case-insensitive":true}]}]},{"id":"cl-http","info":{"name":"cl-http","author":"cn-kali-team","tags":"detect,tech,cl-http","severity":"info","metadata":{"product":"cl-http","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: cl-http"],"part":"header","case-insensitive":true}]}]},{"id":"anmai-system","info":{"name":"anmai-system","author":"cn-kali-team","tags":"detect,tech,anmai-system","severity":"info","metadata":{"product":"anmai-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" id=\"lblname\">版权所有:上海安脉计算机科技有限公司","<font color=\"#000000\">上海安脉计算机科技有限公司</font>","id=\"lblname1\">版权所有:上海安脉计算机科技有限公司"],"case-insensitive":true}]}]},{"id":"ecash-system","info":{"name":"ecash-system","author":"cn-kali-team","tags":"detect,tech,ecash-system","severity":"info","metadata":{"product":"ecash-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<br>欢迎使用e-cash系统"],"case-insensitive":true}]}]},{"id":"ntopng","info":{"name":"ntopng","author":"cn-kali-team","tags":"detect,tech,ntopng","severity":"info","metadata":{"product":"ntopng","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=http://www.ntop.org><img src=\"/img/logo.png\"></a>","<font color=lightgray>generated by ntopng","href=\"/css/ntopng.css"],"case-insensitive":true}]}]},{"id":"sweetrice","info":{"name":"sweetrice","author":"cn-kali-team","tags":"detect,tech,sweetrice","severity":"info","metadata":{"product":"sweetrice","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"sweetrice","powered by <a href=\"http://www.basic-cms.org\">basic cms sweetrice</a>"],"case-insensitive":true}]}]},{"id":"0example","info":{"name":"0example","author":"cn-kali-team","tags":"detect,tech,0example","severity":"info","metadata":{"product":"0example","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>example domain</title>"],"case-insensitive":true}]}]},{"id":"drrui-cloud-office-system","info":{"name":"drrui-cloud-office-system","author":"cn-kali-team","tags":"detect,tech,drrui-cloud-office-system","severity":"info","metadata":{"product":"drrui-cloud-office-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/studentsign/tologin.di","/user/toupdatepasswordpage.di"],"case-insensitive":true}]}]},{"id":"sundray-qi-ye-fang-huo-qiang","info":{"name":"sundray-企业防火墙","author":"cn-kali-team","tags":"detect,tech,sundray-企业防火墙","severity":"info","metadata":{"product":"sundray-企业防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["help = decodeuricomponent(version_info_ch)"],"case-insensitive":true}]}]},{"id":"zizhujianzhan","info":{"name":"zizhujianzhan","author":"cn-kali-team","tags":"detect,tech,zizhujianzhan","severity":"info","metadata":{"product":"zizhujianzhan","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"模板系统xinnet","href=\"msnim:[email protected]"],"case-insensitive":true}]}]},{"id":"tian-xing-wang-an-shi-pin-tu-xiang-an-quan-jian-kong-jie-ru-xi-tong","info":{"name":"天行网安-视频图像安全监控接入系统","author":"cn-kali-team","tags":"detect,tech,天行网安-视频图像安全监控接入系统","severity":"info","metadata":{"product":"天行网安-视频图像安全监控接入系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta http-equiv=\"refresh\" content=\"0;url=/usercertloginaction.action\" />","天行视频图像安全监控接入系统"],"condition":"and","case-insensitive":true}]}]},{"id":"heading-e-commerce-platform","info":{"name":"heading-e-commerce-platform","author":"cn-kali-team","tags":"detect,tech,heading-e-commerce-platform","severity":"info","metadata":{"product":"heading-e-commerce-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location.replace('/bin/hdnet.dll/login')"],"case-insensitive":true}]}]},{"id":"hui-dun-an-quan-shi-pin-he-xin-an-quan-wang-guan","info":{"name":"慧盾安全-视频核心安全网关","author":"cn-kali-team","tags":"detect,tech,慧盾安全-视频核心安全网关","severity":"info","metadata":{"product":"慧盾安全-视频核心安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"view-login\"","title').text('视频会议安全系统"],"condition":"and","case-insensitive":true}]}]},{"id":"infosec-utrust","info":{"name":"infosec-utrust","author":"cn-kali-team","tags":"detect,tech,infosec-utrust","severity":"info","metadata":{"product":"infosec-utrust","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["china utrust infortech co,.ltd"],"case-insensitive":true}]}]},{"id":"openrefine","info":{"name":"openrefine","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"openrefine","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>openrefine</title>"],"case-insensitive":true}]}]},{"id":"hai-kang-wei-shi-liu-mei-ti-guan-li-fu-wu-qi","info":{"name":"海康威视流媒体管理服务器","author":"cn-kali-team","tags":"detect,tech,海康威视流媒体管理服务器","severity":"info","metadata":{"product":"海康威视流媒体管理服务器","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mshtml","login","流媒体管理服务器"],"condition":"and","case-insensitive":true}]}]},{"id":"tuo-er-si-sso","info":{"name":"拓尔思sso","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"拓尔思sso","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: /ids/"],"part":"header","case-insensitive":true},{"type":"word","words":["/ids/admin/js/oslib"],"case-insensitive":true}]}]},{"id":"zhong-xin-jin-dun-fang-huo-qiang","info":{"name":"中新金盾防火墙","author":"cn-kali-team","tags":"detect,tech,中新金盾防火墙","severity":"info","metadata":{"product":"中新金盾防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>中新金盾防火墙</title>","zxfw"],"condition":"and","case-insensitive":true}]}]},{"id":"tbk-dvr","info":{"name":"tbk-dvr","author":"cn-kali-team","tags":"detect,tech,tbk-dvr","severity":"info","metadata":{"product":"tbk-dvr","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class='log-dvr-logo'>"],"case-insensitive":true}]}]},{"id":"neusoft-neteye-fang-huo-qiang","info":{"name":"neusoft-neteye防火墙","author":"cn-kali-team","tags":"detect,tech,neusoft-neteye防火墙","severity":"info","metadata":{"product":"neusoft-neteye防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"login_form\" action=\"/fwm4/fwm.cgi/usrlgin\" ","neteye防火墙系统"],"condition":"and","case-insensitive":true}]}]},{"id":"mechat-irc","info":{"name":"mechat-irc","author":"cn-kali-team","tags":"detect,tech,mechat-irc","severity":"info","metadata":{"product":"mechat-irc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["obj.reserve = strreserve"],"case-insensitive":true}]}]},{"id":"zhong-dian-fu-fu-an-quan-ji-xian-guan-li","info":{"name":"中电福富-安全基线管理","author":"cn-kali-team","tags":"detect,tech,中电福富-安全基线管理","severity":"info","metadata":{"product":"中电福富-安全基线管理","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["align=\"center\">福富软件"],"case-insensitive":true}]}]},{"id":"hp-system-management","info":{"name":"hp-system-management","author":"cn-kali-team","tags":"detect,tech,hp-system-management","severity":"info","metadata":{"product":"hp-system-management","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: compaqhttpserver","set-cookie: compaq-hmmd"],"part":"header","case-insensitive":true}]}]},{"id":"lian-ruan-ke-ji-it-an-quan-yun-wei-guan-li-xi-tong","info":{"name":"联软科技-it安全运维管理系统","author":"cn-kali-team","tags":"detect,tech,联软科技-it安全运维管理系统","severity":"info","metadata":{"product":"联软科技-it安全运维管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/manager/logincontroller.htm?act=login","联软it安全运维管理系统"],"condition":"and","case-insensitive":true}]}]},{"id":"nettalk-webserver","info":{"name":"nettalk-webserver","author":"cn-kali-team","tags":"detect,tech,nettalk-webserver","severity":"info","metadata":{"product":"nettalk-webserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: nettalk-webserver"],"part":"header","case-insensitive":true}]}]},{"id":"webtrust-cert","info":{"name":"webtrust-cert","author":"cn-kali-team","tags":"detect,tech,webtrust-cert","severity":"info","metadata":{"product":"webtrust-cert","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["https://cert.webtrust.org/viewseal"],"case-insensitive":true}]}]},{"id":"huawei-ivs","info":{"name":"huawei-ivs","author":"cn-kali-team","tags":"detect,tech,huawei-ivs","severity":"info","metadata":{"product":"huawei-ivs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var iever = scriptenginemajorversion()"],"case-insensitive":true}]}]},{"id":"superv-meeting","info":{"name":"superv-meeting","author":"cn-kali-team","tags":"detect,tech,superv-meeting","severity":"info","metadata":{"product":"superv-meeting","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"ctl00_topcontrol1_lblsitedescription\""],"case-insensitive":true}]}]},{"id":"byzoro-an-quan-wang-guan","info":{"name":"byzoro-安全网关","author":"cn-kali-team","tags":"detect,tech,byzoro-安全网关","severity":"info","metadata":{"product":"byzoro-安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" patrolflow 多业务安全网关","patrolflow"],"condition":"and","case-insensitive":true}]}]},{"id":"yong-you-fe-xie-zuo-ban-gong-ping-tai","info":{"name":"用友-fe协作办公平台","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"用友-fe协作办公平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["v_hedden","v_show"],"condition":"and","case-insensitive":true}]}]},{"id":"dpfax","info":{"name":"dpfax","author":"cn-kali-team","tags":"detect,tech,dpfax","severity":"info","metadata":{"product":"dpfax","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"images/dpfax-big.png\" border=\"0\" alt=\"dpfax","content=\"dpfax - minifaxserver "],"case-insensitive":true}]}]},{"id":"cms4j","info":{"name":"cms4j","author":"cn-kali-team","tags":"detect,tech,cms4j","severity":"info","metadata":{"product":"cms4j","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/cms4jadmin/login.jsp","method=\"post\" name=\"cms4jsearchform\" id=\"cms4jsearchform"],"case-insensitive":true}]}]},{"id":"neo4j-browser","info":{"name":"neo4j-browser","author":"cn-kali-team","tags":"detect,tech,neo4j-browser","severity":"info","metadata":{"product":"neo4j-browser","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["neo4j://","neo4j_edition","neo4j_version"],"condition":"and","case-insensitive":true}]}]},{"id":"goonie-internet-public-ppinion-monitoring-system","info":{"name":"goonie-internet-public-ppinion-monitoring-system","author":"cn-kali-team","tags":"detect,tech,goonie-internet-public-ppinion-monitoring-system","severity":"info","metadata":{"product":"goonie-internet-public-ppinion-monitoring-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alert(\"菜单层数量和内容层数量不一样!\")","网络舆情监控系统"],"case-insensitive":true}]}]},{"id":"videosoon","info":{"name":"videosoon","author":"cn-kali-team","tags":"detect,tech,videosoon","severity":"info","metadata":{"product":"videosoon","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"skin/anysoondefault/anystyles.css","power by linksoon - videosoon"],"case-insensitive":true}]}]},{"id":"waterssslvpn","info":{"name":"waterssslvpn","author":"cn-kali-team","tags":"detect,tech,waterssslvpn","severity":"info","metadata":{"product":"waterssslvpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["welcome.cgi?p=logo&signinid=url_default"],"case-insensitive":true}]}]},{"id":"tian-rong-xin-shu-ju-an-quan-guan-li-xi-tong","info":{"name":"天融信-数据安全管理系统","author":"cn-kali-team","tags":"detect,tech,天融信-数据安全管理系统","severity":"info","metadata":{"product":"天融信-数据安全管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["天融信数据安全管理系统"],"case-insensitive":true}]}]},{"id":"sangfor-edr","info":{"name":"sangfor-edr","author":"cn-kali-team","tags":"detect,tech,sangfor-edr","severity":"info","metadata":{"product":"sangfor-edr","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["datalayer','gtm-tl7g2lw'","windows_download_name: \"/download_installer_win.php\","],"case-insensitive":true}]}]},{"id":"gerpgo-erp","info":{"name":"gerpgo-erp","author":"cn-kali-team","tags":"detect,tech,gerpgo-erp","severity":"info","metadata":{"product":"gerpgo-erp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["static/style/images/tou.png\") no-repeat"],"case-insensitive":true}]}]},{"id":"findersoft-b9erp","info":{"name":"findersoft-b9erp","author":"cn-kali-team","tags":"detect,tech,findersoft-b9erp","severity":"info","metadata":{"product":"findersoft-b9erp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"dbnameddl\""],"case-insensitive":true}]}]},{"id":"phpnow","info":{"name":"phpnow","author":"cn-kali-team","tags":"detect,tech,phpnow","severity":"info","metadata":{"product":"phpnow","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["by <a href=\"http://phpnow.org\">phpnow.org","content=\"[email protected]","href=\"http://phpnow.org/go.php?id=1005\">"],"case-insensitive":true}]}]},{"id":"yiyu-opms","info":{"name":"yiyu-opms","author":"cn-kali-team","tags":"detect,tech,yiyu-opms","severity":"info","metadata":{"product":"yiyu-opms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["opms","opms管理系统,织蝶-企业应用系统为您的企业保驾护航"],"condition":"and","case-insensitive":true}]}]},{"id":"codiad","info":{"name":"codiad","author":"cn-kali-team","tags":"detect,tech,codiad","severity":"info","metadata":{"product":"codiad","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["codimd","hackmd"],"condition":"and","case-insensitive":true}]}]},{"id":"mailsite-express","info":{"name":"mailsite-express","author":"cn-kali-team","tags":"detect,tech,mailsite-express","severity":"info","metadata":{"product":"mailsite-express","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<b>mailsite <em>express"],"case-insensitive":true}]}]},{"id":"xmall","info":{"name":"xmall","author":"cn-kali-team","tags":"detect,tech,xmall","severity":"info","metadata":{"product":"xmall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["xmadmin.exirck.cn"],"case-insensitive":true}]}]},{"id":"amaze-ui","info":{"name":"amaze-ui","author":"cn-kali-team","tags":"detect,tech,amaze-ui","severity":"info","metadata":{"product":"amaze-ui","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["amazeui.css","amazeui.js","amazeui.min.js"],"case-insensitive":true}]}]},{"id":"colasoft-tsa","info":{"name":"colasoft-tsa","author":"cn-kali-team","tags":"detect,tech,colasoft-tsa","severity":"info","metadata":{"product":"colasoft-tsa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["data-i18n=\"[html]username\">#username </td>","nfr=\"true\""],"case-insensitive":true}]}]},{"id":"php168cms","info":{"name":"php168cms","author":"cn-kali-team","tags":"detect,tech,php168cms","severity":"info","metadata":{"product":"php168cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var system = 'cms"],"case-insensitive":true}]}]},{"id":"elitius","info":{"name":"elitius","author":"cn-kali-team","tags":"detect,tech,elitius","severity":"info","metadata":{"product":"elitius","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"elitius","target=\"_blank\" title=\"affiliate"],"case-insensitive":true}]}]},{"id":"lian-ruan-zhun-ru","info":{"name":"联软准入","author":"cn-kali-team","tags":"detect,tech,联软准入","severity":"info","metadata":{"product":"联软准入","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["leagsoft","redirect","网络准入"],"condition":"and","case-insensitive":true}]}]},{"id":"document-security-management-system","info":{"name":"document-security-management-system","author":"cn-kali-team","tags":"detect,tech,document-security-management-system","severity":"info","metadata":{"product":"document-security-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/drm/login.do\"","href=\"/drm/template/css/login.css\"","src=\"/drm/encjs/barrett.js\""],"case-insensitive":true}]}]},{"id":"agoracgi","info":{"name":"agoracgi","author":"cn-kali-team","tags":"detect,tech,agoracgi","severity":"info","metadata":{"product":"agoracgi","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/agora.cgi?product=","/store/agora.cgi"],"condition":"and","case-insensitive":true}]}]},{"id":"mibew-messenger","info":{"name":"mibew-messenger","author":"cn-kali-team","tags":"detect,tech,mibew-messenger","severity":"info","metadata":{"product":"mibew-messenger","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"empty_inner","class=\"flink\">mibew messenger"],"case-insensitive":true}]}]},{"id":"udesk","info":{"name":"udesk","author":"cn-kali-team","tags":"detect,tech,udesk","severity":"info","metadata":{"product":"udesk","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["assets-cli.udesk.cn/im_client/js/udeskapi.js","udesk.cn/im_client/?web_plugin_id="],"case-insensitive":true}]}]},{"id":"google-talk-chatback","info":{"name":"google-talk-chatback","author":"cn-kali-team","tags":"detect,tech,google-talk-chatback","severity":"info","metadata":{"product":"google-talk-chatback","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["www.google.com/talk/service/"],"case-insensitive":true}]}]},{"id":"dell-idrac","info":{"name":"dell-idrac","author":"cn-kali-team","tags":"detect,tech,dell-idrac","severity":"info","metadata":{"product":"dell-idrac","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>dell remote management controller</title>"],"case-insensitive":true}]}]},{"id":"willfar-interface-management-tool","info":{"name":"willfar-interface-management-tool","author":"cn-kali-team","tags":"detect,tech,willfar-interface-management-tool","severity":"info","metadata":{"product":"willfar-interface-management-tool","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"接口应用管理工具\"","the wasion software foundation"],"case-insensitive":true}]}]},{"id":"dayrui-poscms","info":{"name":"dayrui-poscms","author":"cn-kali-team","tags":"detect,tech,dayrui-poscms","severity":"info","metadata":{"product":"dayrui-poscms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/statics/admin/global/plugins/font-awesome/css/font-awesome.min.css"],"case-insensitive":true}]}]},{"id":"edoc","info":{"name":"edoc","author":"cn-kali-team","tags":"detect,tech,edoc","severity":"info","metadata":{"product":"edoc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["b6ff5fb80eb1412c57eb24b6df8148ec"]}]}]},{"id":"good10000-tios","info":{"name":"good10000-tios","author":"cn-kali-team","tags":"detect,tech,good10000-tios","severity":"info","metadata":{"product":"good10000-tios","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["value=\"https://mail.sinopec.com/owa/\"","北京万佳信科技有限公司"],"case-insensitive":true}]}]},{"id":"axgate-sslvpn","info":{"name":"axgate-sslvpn","author":"cn-kali-team","tags":"detect,tech,axgate-sslvpn","severity":"info","metadata":{"product":"axgate-sslvpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"axgate\""],"case-insensitive":true}]}]},{"id":"siteengine","info":{"name":"siteengine","author":"cn-kali-team","tags":"detect,tech,siteengine","severity":"info","metadata":{"product":"siteengine","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"boka siteengine"],"case-insensitive":true}]}]},{"id":"sangfor-sip","info":{"name":"sangfor-sip","author":"cn-kali-team","tags":"detect,tech,sangfor-sip","severity":"info","metadata":{"product":"sangfor-sip","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/apps/secvisual/static/js/runtime.js?","url: '../auth_manage/auth_manage/on_login'","window.sessionstorage.removeitem('serialcheckobj')"],"case-insensitive":true}]}]},{"id":"hanming-video-conferencing","info":{"name":"hanming-video-conferencing","author":"cn-kali-team","tags":"detect,tech,hanming-video-conferencing","severity":"info","metadata":{"product":"hanming-video-conferencing","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/resources/fmweb/other/js/login.js","class=\"win_introduce"],"case-insensitive":true}]}]},{"id":"showdoc","info":{"name":"showdoc","author":"cn-kali-team","tags":"detect,tech,showdoc","severity":"info","metadata":{"product":"showdoc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=本网站基于开源版showdoc搭建"],"case-insensitive":true}]}]},{"id":"basic-php-events-lister","info":{"name":"basic-php-events-lister","author":"cn-kali-team","tags":"detect,tech,basic-php-events-lister","severity":"info","metadata":{"product":"basic-php-events-lister","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by: <a href=\"http://www.mevin.com/\">"],"case-insensitive":true}]}]},{"id":"tuling-code-filing-system","info":{"name":"tuling-code-filing-system","author":"cn-kali-team","tags":"detect,tech,tuling-code-filing-system","severity":"info","metadata":{"product":"tuling-code-filing-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["编码申报系统"],"case-insensitive":true}]}]},{"id":"silverstripe","info":{"name":"silverstripe","author":"cn-kali-team","tags":"detect,tech,silverstripe","severity":"info","metadata":{"product":"silverstripe","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"silverstripe/","framework/javascript/htmleditorfield.js"],"case-insensitive":true}]}]},{"id":"netposa-system","info":{"name":"netposa-system","author":"cn-kali-team","tags":"detect,tech,netposa-system","severity":"info","metadata":{"product":"netposa-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["netposa"],"case-insensitive":true}]}]},{"id":"manage-system","info":{"name":"manage-system","author":"cn-kali-team","tags":"detect,tech,manage-system","severity":"info","metadata":{"product":"manage-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"基于vue2 + element ui 的后台管理系统解决方案"],"case-insensitive":true}]}]},{"id":"esotalk","info":{"name":"esotalk","author":"cn-kali-team","tags":"detect,tech,esotalk","severity":"info","metadata":{"product":"esotalk","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/js/esotalk.js","generated by esotalk","powered by esotalk"],"case-insensitive":true}]}]},{"id":"jianhengxinan-jh-las","info":{"name":"jianhengxinan-jh-las","author":"cn-kali-team","tags":"detect,tech,jianhengxinan-jh-las","severity":"info","metadata":{"product":"jianhengxinan-jh-las","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jh-la3600","建恒信安日志审计系统"],"case-insensitive":true}]}]},{"id":"espcms","info":{"name":"espcms","author":"cn-kali-team","tags":"detect,tech,espcms","severity":"info","metadata":{"product":"espcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/templates/default/style/tempates_div.css","infolist_fff","powered by espcms"],"case-insensitive":true}]}]},{"id":"das-intellitech-c3","info":{"name":"das-intellitech-c3","author":"cn-kali-team","tags":"detect,tech,das-intellitech-c3","severity":"info","metadata":{"product":"das-intellitech-c3","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location.href=\"single/empmain2.aspx"],"case-insensitive":true}]}]},{"id":"nagios-xi","info":{"name":"nagios-xi","author":"cn-kali-team","tags":"detect,tech,nagios-xi","severity":"info","metadata":{"product":"nagios-xi","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/nagiosxi/images/favicon.ico","click the link below to get started using nagios xi."],"case-insensitive":true}]}]},{"id":"esafenet-dlp","info":{"name":"esafenet-dlp","author":"cn-kali-team","tags":"detect,tech,esafenet-dlp","severity":"info","metadata":{"product":"esafenet-dlp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cdgserver3"],"case-insensitive":true}]}]},{"id":"yonyou-ism","info":{"name":"yonyou-ism","author":"cn-kali-team","tags":"detect,tech,yonyou-ism","severity":"info","metadata":{"product":"yonyou-ism","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sheight*window.screen.deviceydpi"],"case-insensitive":true}]}]},{"id":"blogenginenet","info":{"name":"blogenginenet","author":"cn-kali-team","tags":"detect,tech,blogenginenet","severity":"info","metadata":{"product":"blogenginenet","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http://www.dotnetblogengine.net","pics/blogengine.ico"],"case-insensitive":true}]}]},{"id":"yonyou-turbocrm","info":{"name":"yonyou-turbocrm","author":"cn-kali-team","tags":"detect,tech,yonyou-turbocrm","severity":"info","metadata":{"product":"yonyou-turbocrm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["crm","loginsys_osv","用友"],"condition":"and","case-insensitive":true},{"type":"word","words":["turboui.js"],"case-insensitive":true}]}]},{"id":"multiabnle-m18","info":{"name":"multiabnle-m18","author":"cn-kali-team","tags":"detect,tech,multiabnle-m18","severity":"info","metadata":{"product":"multiabnle-m18","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<label>打开m18 app, 扫描二维码</label>"],"case-insensitive":true}]}]},{"id":"sangfor-ssl-vpn","info":{"name":"sangfor-ssl-vpn","author":"cn-kali-team","tags":"detect,tech,sangfor-ssl-vpn","severity":"info","metadata":{"product":"sangfor-ssl-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/por/login_psw.csp","/portal\",right:0}];"],"condition":"and","case-insensitive":true}]}]},{"id":"fanwe","info":{"name":"fanwe","author":"cn-kali-team","tags":"detect,tech,fanwe","severity":"info","metadata":{"product":"fanwe","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["app/tpl/fanwe_1/images/lazy_loading.gif","index.php?ctl=article_cate"],"case-insensitive":true}]}]},{"id":"ocs-inventory-ng","info":{"name":"ocs-inventory-ng","author":"cn-kali-team","tags":"detect,tech,ocs-inventory-ng","severity":"info","metadata":{"product":"ocs-inventory-ng","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["css/ocsreports.css"],"case-insensitive":true}]}]},{"id":"pexip","info":{"name":"pexip","author":"cn-kali-team","tags":"detect,tech,pexip","severity":"info","metadata":{"product":"pexip","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h2>pexip infinity</h2>","<h2>会议平台</h2>","pex-app","pexip infinity"],"case-insensitive":true}]}]},{"id":"vmware-vcenter","info":{"name":"vmware-vcenter","author":"cn-kali-team","tags":"detect,tech,vmware-vcenter","severity":"info","metadata":{"product":"vmware-vcenter","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/converter/vmware-converter-client.exe","/vmw_nsx_logo-black-triangle-500w.png","content=\"vmware vcenter"],"case-insensitive":true}]}]},{"id":"mambo-cms","info":{"name":"mambo-cms","author":"cn-kali-team","tags":"detect,tech,mambo-cms","severity":"info","metadata":{"product":"mambo-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"mambo","content=\"mambo"],"case-insensitive":true}]}]},{"id":"jeewms","info":{"name":"jeewms","author":"cn-kali-team","tags":"detect,tech,jeewms","severity":"info","metadata":{"product":"jeewms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jeewms"],"case-insensitive":true}]}]},{"id":"squarespace","info":{"name":"squarespace","author":"cn-kali-team","tags":"detect,tech,squarespace","severity":"info","metadata":{"product":"squarespace","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["new squarespace.fixedpositiontip(\"logout successful\", \"you have been successfully logged out.\", { xmargin: 15, ymargin: 15, icon: \"/universal/images/helptip-info.png\", orientation: \"upper-right\", viewportfixed: true, autohide: 1800 }).show();"],"case-insensitive":true}]}]},{"id":"opengoss-wlan","info":{"name":"opengoss-wlan","author":"cn-kali-team","tags":"detect,tech,opengoss-wlan","severity":"info","metadata":{"product":"opengoss-wlan","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/stylesheets/themes/wifi2/ui.theme.css","content=\"wlan综合网管系统\""],"case-insensitive":true}]}]},{"id":"windows-business-server","info":{"name":"windows-business-server","author":"cn-kali-team","tags":"detect,tech,windows-business-server","severity":"info","metadata":{"product":"windows-business-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/remote\">remote web workplace","src=\"images/sbslogo.gif"],"case-insensitive":true}]}]},{"id":"zi-guang-dang-an-guan-li-xi-tong","info":{"name":"紫光档案管理系统","author":"cn-kali-team","tags":"detect,tech,紫光档案管理系统","severity":"info","metadata":{"product":"紫光档案管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["3e2ee25dc73811fe2a697deefe447017"]},{"type":"word","words":["紫光档案管理系统"],"case-insensitive":true}]}]},{"id":"han-de-srm-yun-ping-tai","info":{"name":"汉得srm云平台","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"汉得srm云平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/component/font-awesome-3.2.1/css/font-awesome-ie7.min.css","first_login_alter_pwd.screen"],"condition":"and","case-insensitive":true},{"type":"word","words":["<title>汉得srm云平台</title>"],"case-insensitive":true}]}]},{"id":"wowza-media-server","info":{"name":"wowza-media-server","author":"cn-kali-team","tags":"detect,tech,wowza-media-server","severity":"info","metadata":{"product":"wowza-media-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<html><head><title>wowza media server"],"case-insensitive":true}]}]},{"id":"web-wiz-rich-text-editor","info":{"name":"web-wiz-rich-text-editor","author":"cn-kali-team","tags":"detect,tech,web-wiz-rich-text-editor","severity":"info","metadata":{"product":"web-wiz-rich-text-editor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.richtexteditor.org\""],"case-insensitive":true}]}]},{"id":"secusys-tc348nt-an-quan-fang-wen-mo-kuai","info":{"name":"secusys-tc348nt安全访问模块","author":"cn-kali-team","tags":"detect,tech,secusys-tc348nt安全访问模块","severity":"info","metadata":{"product":"secusys-tc348nt安全访问模块","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tc348nt pannel"],"case-insensitive":true}]}]},{"id":"guang-lian-da-oa","info":{"name":"广联达oa","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"广联达oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: /services/identification/login.ashx?returnurl=%2f"],"part":"header","case-insensitive":true},{"type":"word","words":["gtptdt.aspx"],"case-insensitive":true}]}]},{"id":"neusoft-uniportal","info":{"name":"neusoft-uniportal","author":"cn-kali-team","tags":"detect,tech,neusoft-uniportal","severity":"info","metadata":{"product":"neusoft-uniportal","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ecdomain/unieap/ria/unieap/themes/earth/common/unieap.css"],"case-insensitive":true}]}]},{"id":"ecshop","info":{"name":"ecshop","author":"cn-kali-team","tags":"detect,tech,ecshop","severity":"info","metadata":{"product":"ecshop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"ecshop","id=\"ecs_cartinfo\""],"case-insensitive":true},{"type":"word","words":["set-cookie: ecs_id="],"part":"header","case-insensitive":true}]}]},{"id":"ziguanghuayu-attendance-management-system","info":{"name":"ziguanghuayu-attendance-management-system","author":"cn-kali-team","tags":"detect,tech,ziguanghuayu-attendance-management-system","severity":"info","metadata":{"product":"ziguanghuayu-attendance-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["广州紫光华宇信息技术有限公司"],"case-insensitive":true}]}]},{"id":"juniper-vpn","info":{"name":"juniper-vpn","author":"cn-kali-team","tags":"detect,tech,juniper-vpn","severity":"info","metadata":{"product":"juniper-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["juniper networks vpn","junos pulse secure access service"],"condition":"and","case-insensitive":true}]}]},{"id":"vehiclemonitoringcloudplatform","info":{"name":"vehiclemonitoringcloudplatform","author":"cn-kali-team","tags":"detect,tech,vehiclemonitoringcloudplatform","severity":"info","metadata":{"product":"vehiclemonitoringcloudplatform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["gps-web\"></iframe>"],"case-insensitive":true}]}]},{"id":"zipkin","info":{"name":"zipkin","author":"cn-kali-team","tags":"detect,tech,zipkin","severity":"info","metadata":{"product":"zipkin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<base href=\"/zipkin/\">"],"case-insensitive":true}]}]},{"id":"pcextreme","info":{"name":"pcextreme","author":"cn-kali-team","tags":"detect,tech,pcextreme","severity":"info","metadata":{"product":"pcextreme","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["deze server is eigendom van <a"],"case-insensitive":true}]}]},{"id":"fan-ruan-bao-biao","info":{"name":"帆软报表","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"帆软报表","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["=fs","reportserver"],"condition":"and","case-insensitive":true},{"type":"word","words":["content=\"finereport--web reporting tool\"","finereport/decision"],"case-insensitive":true}]}]},{"id":"serv-u-ftp","info":{"name":"serv-u-ftp","author":"cn-kali-team","tags":"detect,tech,serv-u-ftp","severity":"info","metadata":{"product":"serv-u-ftp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"serv-u ftp server"],"case-insensitive":true}]}]},{"id":"laravel-framework","info":{"name":"laravel-framework","author":"cn-kali-team","tags":"detect,tech,laravel-framework","severity":"info","metadata":{"product":"laravel-framework","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["set-cookie: laravel_session"],"part":"header","case-insensitive":true}]}]},{"id":"bad-debt-management-system","info":{"name":"bad-debt-management-system","author":"cn-kali-team","tags":"detect,tech,bad-debt-management-system","severity":"info","metadata":{"product":"bad-debt-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["登录密码错误次数超过5次,帐号被锁定。请联系省坏账系统管理员,或发邮件解锁"],"case-insensitive":true}]}]},{"id":"chinatelecom-guestsupportsystem","info":{"name":"chinatelecom-guestsupportsystem","author":"cn-kali-team","tags":"detect,tech,chinatelecom-guestsupportsystem","severity":"info","metadata":{"product":"chinatelecom-guestsupportsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"nhmis.css\"","var requiredfieldvalidator2 = document.all "],"case-insensitive":true}]}]},{"id":"phabricator","info":{"name":"phabricator","author":"cn-kali-team","tags":"detect,tech,phabricator","severity":"info","metadata":{"product":"phabricator","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["phabricator-application-launch-container","res/phabricator"],"case-insensitive":true}]}]},{"id":"phpinfo","info":{"name":"phpinfo","author":"cn-kali-team","tags":"detect,tech,phpinfo","severity":"info","metadata":{"product":"phpinfo","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>phpinfo","virtual directory support"],"condition":"and","case-insensitive":true}]}]},{"id":"qinzhe-excel","info":{"name":"qinzhe-excel","author":"cn-kali-team","tags":"detect,tech,qinzhe-excel","severity":"info","metadata":{"product":"qinzhe-excel","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"chkworkbyreplacer\" type=\"checkbox\"","如果能访问到qinzhe网站上的图片,说明网络是通的,显示新闻"],"case-insensitive":true}]}]},{"id":"tian-mai-ke-ji-wang-luo-shi-pin-jian-kong-xi-tong","info":{"name":"天迈科技网络视频监控系统","author":"cn-kali-team","tags":"detect,tech,天迈科技网络视频监控系统","severity":"info","metadata":{"product":"天迈科技网络视频监控系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jsessionid","天迈科技","网络视频监控系统"],"condition":"and","case-insensitive":true}]}]},{"id":"pigcms","info":{"name":"pigcms","author":"cn-kali-team","tags":"detect,tech,pigcms","severity":"info","metadata":{"product":"pigcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-powered-by: pigcms.com"],"part":"header","case-insensitive":true}]}]},{"id":"jstorm","info":{"name":"jstorm","author":"cn-kali-team","tags":"detect,tech,jstorm","severity":"info","metadata":{"product":"jstorm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"jstorm"],"case-insensitive":true}]}]},{"id":"e-fax","info":{"name":"e-fax","author":"cn-kali-team","tags":"detect,tech,e-fax","severity":"info","metadata":{"product":"e-fax","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"e-fax "],"case-insensitive":true}]}]},{"id":"onminutes-crm","info":{"name":"onminutes-crm","author":"cn-kali-team","tags":"detect,tech,onminutes-crm","severity":"info","metadata":{"product":"onminutes-crm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"extras\" id=\"password_extras\">","crm"],"condition":"and","case-insensitive":true}]}]},{"id":"dptech-umc","info":{"name":"dptech-umc","author":"cn-kali-team","tags":"detect,tech,dptech-umc","severity":"info","metadata":{"product":"dptech-umc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onsubmit=\"return sys_submit(this)"],"case-insensitive":true}]}]},{"id":"etcd-io","info":{"name":"etcd-io","author":"cn-kali-team","tags":"detect,tech,etcd-io","severity":"info","metadata":{"product":"etcd-io","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/version"],"matchers":[{"type":"word","words":["etcdcluster","etcdserver"],"condition":"and","case-insensitive":true}]}]},{"id":"yichao-system","info":{"name":"yichao-system","author":"cn-kali-team","tags":"detect,tech,yichao-system","severity":"info","metadata":{"product":"yichao-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"amy/webos/jpmanager.js\""],"case-insensitive":true}]}]},{"id":"pansoft-financial-system","info":{"name":"pansoft-financial-system","author":"cn-kali-team","tags":"detect,tech,pansoft-financial-system","severity":"info","metadata":{"product":"pansoft-financial-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pansoftplugins/multithreading/pancalc.js","src=\"/login/img/loading.gif\""],"case-insensitive":true}]}]},{"id":"ciuiscrm","info":{"name":"ciuiscrm","author":"cn-kali-team","tags":"detect,tech,ciuiscrm","severity":"info","metadata":{"product":"ciuiscrm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"ciuis-body-content\">"],"case-insensitive":true}]}]},{"id":"zhong-yuan-qi-liniaudit-bao-lei-ji","info":{"name":"中远麒麟iaudit堡垒机","author":"cn-kali-team","tags":"detect,tech,中远麒麟iaudit堡垒机","severity":"info","metadata":{"product":"中远麒麟iaudit堡垒机","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["(atype==\"fingersecauth\"||atype==\"localfingersecauth\")","www.tosec.com.cn/doc"],"condition":"and","case-insensitive":true}]}]},{"id":"hispider-router","info":{"name":"hispider-router","author":"cn-kali-team","tags":"detect,tech,hispider-router","severity":"info","metadata":{"product":"hispider-router","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"login.pl\" method=\"post\" onsubmit=\"encryptpasswd()"],"case-insensitive":true}]}]},{"id":"profense-firewall","info":{"name":"profense-firewall","author":"cn-kali-team","tags":"detect,tech,profense-firewall","severity":"info","metadata":{"product":"profense-firewall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: profense"],"part":"header","case-insensitive":true}]}]},{"id":"ming-fei-mcms","info":{"name":"铭飞mcms","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"铭飞mcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/mcms/search.do\" method=","static/plugins/ms/1.0.0/ms.js","铭飞mcms","/mdiy/formdata/save.do"],"case-insensitive":true}]}]},{"id":"phpbb","info":{"name":"phpbb","author":"cn-kali-team","tags":"detect,tech,phpbb","severity":"info","metadata":{"product":"phpbb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["phpbb","phpbb group\" />"],"condition":"and","case-insensitive":true},{"type":"word","words":["http://www.longluntan.com/zh/phpbb/","start quick hack - phpbb statistics mod"],"case-insensitive":true},{"type":"word","words":["set-cookie: phpbb3_"],"part":"header","case-insensitive":true}]}]},{"id":"huawei-secoway","info":{"name":"huawei-secoway","author":"cn-kali-team","tags":"detect,tech,huawei-secoway","severity":"info","metadata":{"product":"huawei-secoway","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sweb-lib/plat/login/login_new.js","sweb-lib/resource/"],"condition":"and","case-insensitive":true}]}]},{"id":"e-learning","info":{"name":"e-learning","author":"cn-kali-team","tags":"detect,tech,e-learning","severity":"info","metadata":{"product":"e-learning","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["method=\"post\" action=\"/eln3_asp/login.do"],"case-insensitive":true}]}]},{"id":"pollutionsourcemonitoringdataexchangeplatform","info":{"name":"pollutionsourcemonitoringdataexchangeplatform","author":"cn-kali-team","tags":"detect,tech,pollutionsourcemonitoringdataexchangeplatform","severity":"info","metadata":{"product":"pollutionsourcemonitoringdataexchangeplatform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location.href = '/syncmodule/synchome/index';"],"case-insensitive":true}]}]},{"id":"sangfor-tamper-resistance","info":{"name":"sangfor-tamper-resistance","author":"cn-kali-team","tags":"detect,tech,sangfor-tamper-resistance","severity":"info","metadata":{"product":"sangfor-tamper-resistance","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<li style=\"color:#999999;margin-left:6px;list-style:circle inside;\">如忘记密码,请与防火墙管理员联系</li>","href=\"tamper/style/control.css\""],"case-insensitive":true}]}]},{"id":"ajenti-server-admin-panel","info":{"name":"ajenti-server-admin-panel","author":"cn-kali-team","tags":"detect,tech,ajenti-server-admin-panel","severity":"info","metadata":{"product":"ajenti-server-admin-panel","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/ajenti:auth\"","src=\"/ajenti:static/"],"condition":"and","case-insensitive":true}]}]},{"id":"jiu-si-xie-tong-ban-gong-xi-tong","info":{"name":"九思协同办公系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"九思协同办公系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: /jsoa/login.jsp"],"part":"header","case-insensitive":true},{"type":"favicon","hash":["fc171c32d6d99f006b1ade860753a9db"]},{"type":"word","words":["location.href=\"/jsoa/login.jsp\";"],"case-insensitive":true}]}]},{"id":"mas-mobile-agent-serve","info":{"name":"mas-mobile-agent-serve","author":"cn-kali-team","tags":"detect,tech,mas-mobile-agent-serve","severity":"info","metadata":{"product":"mas-mobile-agent-serve","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action='/mas_security_check'>","if(!isnotnull(document.forms[0].filepath.value, \"证书文件\"))"],"case-insensitive":true}]}]},{"id":"jie-si-an-quan-lie-ying-zhu-ji-an-quan-xiang-ying-xi-tong","info":{"name":"杰思安全-猎鹰主机安全响应系统","author":"cn-kali-team","tags":"detect,tech,杰思安全-猎鹰主机安全响应系统","severity":"info","metadata":{"product":"杰思安全-猎鹰主机安全响应系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["majorsec"],"case-insensitive":true}]}]},{"id":"juhe-uams","info":{"name":"juhe-uams","author":"cn-kali-team","tags":"detect,tech,juhe-uams","severity":"info","metadata":{"product":"juhe-uams","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"login.aspx\" id=\"ctl00\"","background-color: #4a93be;"],"case-insensitive":true}]}]},{"id":"bangyong-pm2","info":{"name":"bangyong-pm2","author":"cn-kali-team","tags":"detect,tech,bangyong-pm2","severity":"info","metadata":{"product":"bangyong-pm2","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pm2项目管理系统bs版增强工具.zip"],"case-insensitive":true}]}]},{"id":"subrion-cms","info":{"name":"subrion-cms","author":"cn-kali-team","tags":"detect,tech,subrion-cms","severity":"info","metadata":{"product":"subrion-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"subrion cms","href=\"http://www.subrion.com"],"case-insensitive":true}]}]},{"id":"ostd-cloud","info":{"name":"ostd-cloud","author":"cn-kali-team","tags":"detect,tech,ostd-cloud","severity":"info","metadata":{"product":"ostd-cloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"sys-title-right\">智联云服务"],"case-insensitive":true}]}]},{"id":"facemeeting-meeting","info":{"name":"facemeeting-meeting","author":"cn-kali-team","tags":"detect,tech,facemeeting-meeting","severity":"info","metadata":{"product":"facemeeting-meeting","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"subnav\">飞视美</div>"],"case-insensitive":true}]}]},{"id":"glossword","info":{"name":"glossword","author":"cn-kali-team","tags":"detect,tech,glossword","severity":"info","metadata":{"product":"glossword","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"glossword"],"case-insensitive":true}]}]},{"id":"jit-web-connector","info":{"name":"jit-web-connector","author":"cn-kali-team","tags":"detect,tech,jit-web-connector","severity":"info","metadata":{"product":"jit-web-connector","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location.href='/cgi-bin/cgiproxy.exe?action=start';"],"case-insensitive":true}]}]},{"id":"sandu-oa","info":{"name":"sandu-oa","author":"cn-kali-team","tags":"detect,tech,sandu-oa","severity":"info","metadata":{"product":"sandu-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["青岛叁度信息技术有限公司"],"case-insensitive":true}]}]},{"id":"expressjs","info":{"name":"expressjs","author":"cn-kali-team","tags":"detect,tech,expressjs","severity":"info","metadata":{"product":"expressjs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<p>welcome to express</p>"],"case-insensitive":true},{"type":"word","words":["x-powered-by: express"],"part":"header","case-insensitive":true}]}]},{"id":"bowen-providence-car-loading-reservation-system","info":{"name":"bowen-providence-car-loading-reservation-system","author":"cn-kali-team","tags":"detect,tech,bowen-providence-car-loading-reservation-system","severity":"info","metadata":{"product":"bowen-providence-car-loading-reservation-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/public/base/js/plugins/crypto/rsa.js"],"case-insensitive":true}]}]},{"id":"couchbase","info":{"name":"couchbase","author":"cn-kali-team","tags":"detect,tech,couchbase","severity":"info","metadata":{"product":"couchbase","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: couchbase"],"part":"header","case-insensitive":true}]}]},{"id":"filemakerpro","info":{"name":"filemakerpro","author":"cn-kali-team","tags":"detect,tech,filemakerpro","severity":"info","metadata":{"product":"filemakerpro","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: filemakerpro"],"part":"header","case-insensitive":true}]}]},{"id":"richinfo-richmail","info":{"name":"richinfo-richmail","author":"cn-kali-team","tags":"detect,tech,richinfo-richmail","severity":"info","metadata":{"product":"richinfo-richmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"richmail","richmail"],"condition":"and","case-insensitive":true}]}]},{"id":"hai-xia-xin-xi-hei-dun-yun-wei-an-quan-wang-guan","info":{"name":"海峡信息-黑盾运维安全网关","author":"cn-kali-team","tags":"detect,tech,海峡信息-黑盾运维安全网关","severity":"info","metadata":{"product":"海峡信息-黑盾运维安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["黑盾运维安全网关(hd-sgs/v4.0)"],"case-insensitive":true}]}]},{"id":"siteserver","info":{"name":"siteserver","author":"cn-kali-team","tags":"detect,tech,siteserver","severity":"info","metadata":{"product":"siteserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http://www.siteserver.cn","powered by"],"condition":"and","case-insensitive":true},{"type":"word","words":["siteserver","t_系统首页模板"],"condition":"and","case-insensitive":true},{"type":"word","words":["sitefiles","siteserver cms"],"case-insensitive":true}]}]},{"id":"cachecloud","info":{"name":"cachecloud","author":"cn-kali-team","tags":"detect,tech,cachecloud","severity":"info","metadata":{"product":"cachecloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alert(\"系统不存在该用户名,请确认该用户申请了cachecloud权限!\");"],"case-insensitive":true}]}]},{"id":"sequoiadb","info":{"name":"sequoiadb-","author":"cn-kali-team","tags":"detect,tech,sequoiadb-","severity":"info","metadata":{"product":"sequoiadb-","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"btn btn-default\" onclick=\"updateconnect();\">"],"case-insensitive":true}]}]},{"id":"news","info":{"name":"news","author":"cn-kali-team","tags":"detect,tech,news","severity":"info","metadata":{"product":"news","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img id=\"createcheckcode\" src=\"login/picturecheckcode\" name=\"check_code\" ng-click=\"reloadcheckcode()","ng-disabled=\"!loginform.$valid\""],"case-insensitive":true}]}]},{"id":"baidu-subaidu","info":{"name":"baidu-subaidu","author":"cn-kali-team","tags":"detect,tech,baidu-subaidu","severity":"info","metadata":{"product":"baidu-subaidu","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"yunjiasu_link"],"case-insensitive":true}]}]},{"id":"chanjet-tplus","info":{"name":"chanjet-tplus","author":"cn-kali-team","tags":"detect,tech,chanjet-tplus","severity":"info","metadata":{"product":"chanjet-tplus","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["><script>location='/tplus/';</script></body>"],"case-insensitive":true}]}]},{"id":"hitachi-maintenance-utility","info":{"name":"hitachi-maintenance-utility","author":"cn-kali-team","tags":"detect,tech,hitachi-maintenance-utility","severity":"info","metadata":{"product":"hitachi-maintenance-utility","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["__gwt_historyframe"],"case-insensitive":true}]}]},{"id":"preamsolutions-inspection-and-modification-information-platform","info":{"name":"preamsolutions-inspection-and-modification-information-platform","author":"cn-kali-team","tags":"detect,tech,preamsolutions-inspection-and-modification-information-platform","severity":"info","metadata":{"product":"preamsolutions-inspection-and-modification-information-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/gqjx/loginmgr.do?method=dologin"],"case-insensitive":true}]}]},{"id":"pcpin-chat","info":{"name":"pcpin-chat","author":"cn-kali-team","tags":"detect,tech,pcpin-chat","severity":"info","metadata":{"product":"pcpin-chat","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onclick=\"document.loginform.register.value=0; document.loginform.lostpassword.value=0","title=\"powered by pcpin chat","window.appname_='pcpin_chat'"],"case-insensitive":true}]}]},{"id":"alibaba-group-tlog","info":{"name":"alibaba-group-tlog","author":"cn-kali-team","tags":"detect,tech,alibaba-group-tlog","severity":"info","metadata":{"product":"alibaba-group-tlog","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"tlog 实时数据处理"],"case-insensitive":true}]}]},{"id":"yong-you-u8+oa-ji-chu-ban","info":{"name":"用友u8+oa基础版","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"用友u8+oa基础版","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["b730edbe9bc850ae9f35dce11edd2c2d"]},{"type":"word","words":["用友u8-oa"],"case-insensitive":true}]}]},{"id":"rui-cheng-oa","info":{"name":"rui-cheng-oa","author":"cn-kali-team","tags":"detect,tech,rui-cheng-oa","severity":"info","metadata":{"product":"rui-cheng-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["杭州瑞成信息技术有限公司"],"case-insensitive":true}]}]},{"id":"citec-system","info":{"name":"citec-system","author":"cn-kali-team","tags":"detect,tech,citec-system","severity":"info","metadata":{"product":"citec-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["正在使用腾讯qq帐号登录消防联网系统"],"case-insensitive":true}]}]},{"id":"processmaker","info":{"name":"processmaker","author":"cn-kali-team","tags":"detect,tech,processmaker","severity":"info","metadata":{"product":"processmaker","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"powered by processmaker","href=\"http://www.processmaker.com\" alt=\"processmaker","processmaker ver"],"case-insensitive":true}]}]},{"id":"whir-flexoffice","info":{"name":"whir-flexoffice","author":"cn-kali-team","tags":"detect,tech,whir-flexoffice","severity":"info","metadata":{"product":"whir-flexoffice","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var flexofficepath=\"\\/flexoffice\""],"case-insensitive":true}]}]},{"id":"firehose_service_monitoring","info":{"name":"firehose_service_monitoring","author":"cn-kali-team","tags":"detect,tech,firehose_service_monitoring","severity":"info","metadata":{"product":"firehose_service_monitoring","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1>firehose_service_monitoring status</h1>"],"case-insensitive":true}]}]},{"id":"ruijie-router-nbr-lu-you-qi","info":{"name":"ruijie-router-nbr 路由器","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"ruijie-router-nbr 路由器","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["web_monitor_config.htm","锐捷网络"],"condition":"and","case-insensitive":true},{"type":"word","words":["nbr路由器","support.ruijie.com.cn"],"condition":"and","case-insensitive":true},{"type":"word","words":["support.ruijie.com.cn","<p>系统负荷过高,导致网络拥塞,建议降低系统负荷或重启路由器"],"condition":"and","case-insensitive":true},{"type":"word","words":["<title>锐捷网络</title>","href=/static/img/title.ico"],"condition":"and","case-insensitive":true},{"type":"word","words":["<title>锐捷网络</title>","index.data?opt=err"],"condition":"and","case-insensitive":true},{"type":"word","words":["<title>锐捷网络</title>","/luci-static/ruijie/images/favicon.ico"],"condition":"and","case-insensitive":true},{"type":"word","words":["<title>302 moved</title>","relogin.htm?_t="],"condition":"and","case-insensitive":true},{"type":"word","words":["<title>锐捷网络</title>","mailto:[email protected]"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["a45883b12d753bc87aff5bddbef16ab3"]},{"type":"word","words":["class=\"line resource\" id=\"nbr_1\"","<title>锐捷网络 --nbr路由器--登录界面</title>","ruijie - nbr"],"case-insensitive":true}]}]},{"id":"feng-yuan-xin-ke-ji-fang-huo-qiang","info":{"name":"丰源芯科技-防火墙","author":"cn-kali-team","tags":"detect,tech,丰源芯科技-防火墙","severity":"info","metadata":{"product":"丰源芯科技-防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title> technology, inc.</title>","深圳市丰源芯科技产业控股有限公司"],"condition":"and","case-insensitive":true}]}]},{"id":"cari-system","info":{"name":"cari-system","author":"cn-kali-team","tags":"detect,tech,cari-system","severity":"info","metadata":{"product":"cari-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/cariweb/images/images-new"],"case-insensitive":true}]}]},{"id":"nowayer-ftp","info":{"name":"nowayer-ftp","author":"cn-kali-team","tags":"detect,tech,nowayer-ftp","severity":"info","metadata":{"product":"nowayer-ftp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"nowayer\""],"case-insensitive":true}]}]},{"id":"monitoring-center","info":{"name":"monitoring-center","author":"cn-kali-team","tags":"detect,tech,monitoring-center","severity":"info","metadata":{"product":"monitoring-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"鹰眼盒子监控中心"],"case-insensitive":true}]}]},{"id":"webray-situation-awareness","info":{"name":"webray-situation-awareness","author":"cn-kali-team","tags":"detect,tech,webray-situation-awareness","severity":"info","metadata":{"product":"webray-situation-awareness","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"disclaimer\" style=\"color: #ffffff\">《盛邦安全网站监控预警平台服务协议》</a>"],"case-insensitive":true}]}]},{"id":"vmedia-multimedia-publishing-platform","info":{"name":"vmedia-multimedia-publishing-platform","author":"cn-kali-team","tags":"detect,tech,vmedia-multimedia-publishing-platform","severity":"info","metadata":{"product":"vmedia-multimedia-publishing-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"video_00\"","function toggle(targetid)"],"case-insensitive":true}]}]},{"id":"huawei-fusioncompute","info":{"name":"huawei-fusioncompute","author":"cn-kali-team","tags":"detect,tech,huawei-fusioncompute","severity":"info","metadata":{"product":"huawei-fusioncompute","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/omsportal/","resources/themes/images/logo/favicon.ico"],"case-insensitive":true}]}]},{"id":"falcon","info":{"name":"falcon","author":"cn-kali-team","tags":"detect,tech,falcon","severity":"info","metadata":{"product":"falcon","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h3 class=\"font-bold\">opsplatform</h3>","textarea class=\"form-control endpoints"],"case-insensitive":true}]}]},{"id":"dcn-fang-huo-qiang","info":{"name":"dcn-防火墙","author":"cn-kali-team","tags":"detect,tech,dcn-防火墙","severity":"info","metadata":{"product":"dcn-防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dcfos web management"],"case-insensitive":true}]}]},{"id":"yonbip","info":{"name":"用友BIP","author":"jlkl","tags":"detect,tech,yonbip","severity":"info","metadata":{"product":"yonbip","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["yonbip","数字化工作台","用友bip","iuap-apcom-workbench/"],"case-insensitive":true}]}]},{"id":"cloudwise-dodp","info":{"name":"cloudwise-dodp","author":"cn-kali-team","tags":"detect,tech,cloudwise-dodp","severity":"info","metadata":{"product":"cloudwise-dodp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/public/vendor/monaco/vs/loader.js"],"case-insensitive":true}]}]},{"id":"phpmoneybooks","info":{"name":"phpmoneybooks","author":"cn-kali-team","tags":"detect,tech,phpmoneybooks","severity":"info","metadata":{"product":"phpmoneybooks","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href='http://phpmoneybooks.com'>phpmoneybooks"],"case-insensitive":true}]}]},{"id":"wen-wang-yi-lian-wen-wang-wei-shi-an-quan-lu-you-qi","info":{"name":"文网亿联-文网卫士安全路由器","author":"cn-kali-team","tags":"detect,tech,文网亿联-文网卫士安全路由器","severity":"info","metadata":{"product":"文网亿联-文网卫士安全路由器","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["文网卫士安全路由器"],"case-insensitive":true}]}]},{"id":"softnext-spam","info":{"name":"softnext-spam","author":"cn-kali-team","tags":"detect,tech,softnext-spam","severity":"info","metadata":{"product":"softnext-spam","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["snspam/spam_request/","snspam/start_page.asp","spam_request/spam_requestact.asp"],"case-insensitive":true}]}]},{"id":"adobe-robohelp","info":{"name":"adobe-robohelp","author":"cn-kali-team","tags":"detect,tech,adobe-robohelp","severity":"info","metadata":{"product":"adobe-robohelp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["generator\" content=\"adobe robohelp"],"case-insensitive":true}]}]},{"id":"automatedlogiccorporation-webctrl","info":{"name":"automatedlogiccorporation-webctrl","author":"cn-kali-team","tags":"detect,tech,automatedlogiccorporation-webctrl","severity":"info","metadata":{"product":"automatedlogiccorporation-webctrl","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/_common/lvl5/about/eula.jsp\""],"case-insensitive":true}]}]},{"id":"webissues","info":{"name":"webissues","author":"cn-kali-team","tags":"detect,tech,webissues","severity":"info","metadata":{"product":"webissues","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"header-right\">webissues","<div><input type=\"hidden\" name=\"__formid\" id=\"field-login-__formid\" value=\"login\" />"],"case-insensitive":true}]}]},{"id":"suyaxing-campus-management-system","info":{"name":"suyaxing-campus-management-system","author":"cn-kali-team","tags":"detect,tech,suyaxing-campus-management-system","severity":"info","metadata":{"product":"suyaxing-campus-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/ws2004/public/"],"case-insensitive":true}]}]},{"id":"security-intelligent-management-platform","info":{"name":"security-intelligent-management-platform","author":"cn-kali-team","tags":"detect,tech,security-intelligent-management-platform","severity":"info","metadata":{"product":"security-intelligent-management-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["nanjing rickyinfo technology"],"case-insensitive":true}]}]},{"id":"opencti","info":{"name":"opencti","author":"cn-kali-team","tags":"detect,tech,opencti","severity":"info","metadata":{"product":"opencti","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["webpackjsonpopencti-front"],"case-insensitive":true}]}]},{"id":"zhong-ke-bo-hua-wang-long-fang-huo-qiang","info":{"name":"中科博华-网龙防火墙","author":"cn-kali-team","tags":"detect,tech,中科博华-网龙防火墙","severity":"info","metadata":{"product":"中科博华-网龙防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["博华网龙防火墙"],"case-insensitive":true}]}]},{"id":"min-xun-ke-ji-spammark-you-jian-xin-xi-an-quan-wang-guan","info":{"name":"敏讯科技-spammark邮件信息安全网关","author":"cn-kali-team","tags":"detect,tech,敏讯科技-spammark邮件信息安全网关","severity":"info","metadata":{"product":"敏讯科技-spammark邮件信息安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cgi-bin/spammark?empty=1","spammark邮件信息安全网关"],"condition":"and","case-insensitive":true}]}]},{"id":"landray-oa-xi-tong","info":{"name":"landray-oa系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"landray-oa系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["j_acegi_security_check","lui_login_message_div"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["302464c3f6207d57240649926cfc7bd4"]}]}]},{"id":"wang-shen-fang-huo-qiang","info":{"name":"网神防火墙","author":"cn-kali-team","tags":"detect,tech,网神防火墙","severity":"info","metadata":{"product":"网神防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["3600防火墙","网神secgate"],"condition":"and","case-insensitive":true},{"type":"word","words":["resources/image/logo_header.png","网神防火墙系统"],"condition":"and","case-insensitive":true}]}]},{"id":"modsecurity","info":{"name":"modsecurity","author":"cn-kali-team","tags":"detect,tech,modsecurity","severity":"info","metadata":{"product":"modsecurity","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["this error was generated by mod_security"],"case-insensitive":true}]}]},{"id":"zhong-tie-xin-an-ke-bo-an-quan-ge-li-yu-xin-xi-dan-xiang-dao-ru-xi-tong","info":{"name":"中铁信安-科博安全隔离与信息单向导入系统","author":"cn-kali-team","tags":"detect,tech,中铁信安-科博安全隔离与信息单向导入系统","severity":"info","metadata":{"product":"中铁信安-科博安全隔离与信息单向导入系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["科博安全隔离与信息交换系统","科博安全隔离与信息单向导入系统</span>"],"condition":"and","case-insensitive":true}]}]},{"id":"yuneasy-ipcalling","info":{"name":"yuneasy-ipcalling","author":"cn-kali-team","tags":"detect,tech,yuneasy-ipcalling","severity":"info","metadata":{"product":"yuneasy-ipcalling","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["云翌ip呼叫中心</span>"],"case-insensitive":true}]}]},{"id":"emerson-xweb-evo","info":{"name":"emerson-xweb-evo","author":"cn-kali-team","tags":"detect,tech,emerson-xweb-evo","severity":"info","metadata":{"product":"emerson-xweb-evo","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/css/images/logo_xweb_alpha.png\"","src=\"img/xweb-logo.png\""],"case-insensitive":true}]}]},{"id":"qizhi-fortress-aircraft","info":{"name":"qizhi-fortress-aircraft","author":"cn-kali-team","tags":"detect,tech,qizhi-fortress-aircraft","severity":"info","metadata":{"product":"qizhi-fortress-aircraft","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["//xfpverifyexec.jsp;"],"case-insensitive":true}]}]},{"id":"hao-feng-tong-xun-zhi-neng-fang-huo-qiang","info":{"name":"皓峰通讯-智能防火墙","author":"cn-kali-team","tags":"detect,tech,皓峰通讯-智能防火墙","severity":"info","metadata":{"product":"皓峰通讯-智能防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" <body bgcolor=#ddeeff onload=\"document.all.user.focus()\">","皓峰防火墙"],"condition":"and","case-insensitive":true}]}]},{"id":"thinkmail","info":{"name":"thinkmail","author":"cn-kali-team","tags":"detect,tech,thinkmail","severity":"info","metadata":{"product":"thinkmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/resource/se/common/jquery.js","/webmail\"+\"/common/validatecode.do","app_download\":\"\",\"thinkmail官网","href='http://www.thinkcloud.cn' target='_blank'>thinkcloud</a>.all right reserved</div>"],"case-insensitive":true}]}]},{"id":"mechat-online-service","info":{"name":"mechat-online-service","author":"cn-kali-team","tags":"detect,tech,mechat-online-service","severity":"info","metadata":{"product":"mechat-online-service","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/meiqia.js"],"case-insensitive":true}]}]},{"id":"pineapp","info":{"name":"pineapp","author":"cn-kali-team","tags":"detect,tech,pineapp","severity":"info","metadata":{"product":"pineapp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/admin/css/images/pineapp.ico"],"case-insensitive":true}]}]},{"id":"ecology-fan-weie-mobile","info":{"name":"ecology泛微e-mobile","author":"cn-kali-team","tags":"detect,tech,ecology泛微e-mobile","severity":"info","metadata":{"product":"ecology泛微e-mobile","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["e-mobile","weaver"],"condition":"and","case-insensitive":true},{"type":"word","words":["/images/[email protected]","action=\"/verifylogin.do"],"condition":"and","case-insensitive":true},{"type":"word","words":["content=\"weaver e-mobile\"","e-mobile ","window.apiprifix = \"/emp\";"],"case-insensitive":true}]}]},{"id":"3dcart","info":{"name":"3dcart","author":"cn-kali-team","tags":"detect,tech,3dcart","severity":"info","metadata":{"product":"3dcart","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by 3dcart"],"case-insensitive":true},{"type":"word","words":["x-powered-by: 3dcart"],"part":"header","case-insensitive":true}]}]},{"id":"semaphore","info":{"name":"semaphore","author":"cn-kali-team","tags":"detect,tech,semaphore","severity":"info","metadata":{"product":"semaphore","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"powered by semaphore\"","www.smartlogic.com"],"case-insensitive":true}]}]},{"id":"phpweb","info":{"name":"phpweb","author":"cn-kali-team","tags":"detect,tech,phpweb","severity":"info","metadata":{"product":"phpweb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pdv_pagename"],"case-insensitive":true}]}]},{"id":"dokmee-ecm","info":{"name":"dokmee ecm","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"dokmee ecm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>dokmee ecm</title>"],"case-insensitive":true}]}]},{"id":"entrance-guard-system","info":{"name":"entrance-guard-system","author":"cn-kali-team","tags":"detect,tech,entrance-guard-system","severity":"info","metadata":{"product":"entrance-guard-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/media/images/zkeco16.ico"],"case-insensitive":true}]}]},{"id":"ethproxy","info":{"name":"ethproxy","author":"cn-kali-team","tags":"detect,tech,ethproxy","severity":"info","metadata":{"product":"ethproxy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: ethproxy"],"part":"header","case-insensitive":true}]}]},{"id":"iguard-security-system","info":{"name":"iguard-security-system","author":"cn-kali-team","tags":"detect,tech,iguard-security-system","severity":"info","metadata":{"product":"iguard-security-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"lucky-tech iguard"],"case-insensitive":true}]}]},{"id":"jeecms","info":{"name":"jeecms","author":"cn-kali-team","tags":"detect,tech,jeecms","severity":"info","metadata":{"product":"jeecms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<script src=\"/r/cms/www/","<script src=\"/u/cms/www/","www.jeecms.com"],"case-insensitive":true}]}]},{"id":"ctop-oa","info":{"name":"ctop-oa","author":"cn-kali-team","tags":"detect,tech,ctop-oa","severity":"info","metadata":{"product":"ctop-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/ctop/index.jsp","/software/jinstall.exe","src=\"images/ctop_logo.gif","src=\"images/logo-ctop.gif"],"case-insensitive":true}]}]},{"id":"kerio-connect","info":{"name":"kerio-connect","author":"cn-kali-team","tags":"detect,tech,kerio-connect","severity":"info","metadata":{"product":"kerio-connect","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: kerio connect"],"part":"header","case-insensitive":true}]}]},{"id":"nucleus-cms","info":{"name":"nucleus-cms","author":"cn-kali-team","tags":"detect,tech,nucleus-cms","severity":"info","metadata":{"product":"nucleus-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["nucleus_lf_name","target=\"_blank\">nucleus cms","title=\"nucleus\" href=\"http://nucleuscms.org/"],"case-insensitive":true}]}]},{"id":"6kbbs","info":{"name":"6kbbs","author":"cn-kali-team","tags":"detect,tech,6kbbs","severity":"info","metadata":{"product":"6kbbs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["generator\" content=\"6kbbs","powered by 6kbbs"],"case-insensitive":true}]}]},{"id":"yong-zhongdcs","info":{"name":"永中dcs","author":"cn-kali-team","tags":"detect,tech,永中dcs","severity":"info","metadata":{"product":"永中dcs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>永中文档在线预览dcs</title>"],"case-insensitive":true}]}]},{"id":"jxt-consulting","info":{"name":"jxt-consulting","author":"cn-kali-team","tags":"detect,tech,jxt-consulting","severity":"info","metadata":{"product":"jxt-consulting","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"jxt-popup-wrapper","powered by jxt consulting"],"case-insensitive":true}]}]},{"id":"activeuc","info":{"name":"网动统一通信平台(ActiveUC)","author":"jlkl","tags":"detect,tech,activeuc","severity":"info","metadata":{"product":"activeuc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["path=/acenter"],"part":"header","case-insensitive":true}]}]},{"id":"h3c-secpath-fang-huo-qiang","info":{"name":"h3c-secpath防火墙","author":"cn-kali-team","tags":"detect,tech,h3c-secpath防火墙","severity":"info","metadata":{"product":"h3c-secpath防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["h3c secpath series"],"case-insensitive":true}]}]},{"id":"open-realty","info":{"name":"open-realty","author":"cn-kali-team","tags":"detect,tech,open-realty","severity":"info","metadata":{"product":"open-realty","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"open-realty","href=\"http://www.open-realty.org\" title=\"powered by open-realty"],"case-insensitive":true}]}]},{"id":"lanmp","info":{"name":"lanmp","author":"cn-kali-team","tags":"detect,tech,lanmp","severity":"info","metadata":{"product":"lanmp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<strong>恭喜","lanmp","wdlinux.cn","本页可删除"],"condition":"and","case-insensitive":true}]}]},{"id":"ppvod-videosystem","info":{"name":"ppvod-videosystem","author":"cn-kali-team","tags":"detect,tech,ppvod-videosystem","severity":"info","metadata":{"product":"ppvod-videosystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ppvod copyright"],"case-insensitive":true}]}]},{"id":"dell-openmanage-switch-administrator","info":{"name":"dell-openmanage-switch-administrator","author":"cn-kali-team","tags":"detect,tech,dell-openmanage-switch-administrator","severity":"info","metadata":{"product":"dell-openmanage-switch-administrator","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["progressgraphicnone","window.top.location.href = \"dell_login.html"],"case-insensitive":true}]}]},{"id":"nsfocus-xia-yi-dai-fang-huo-qiang","info":{"name":"nsfocus-下一代防火墙","author":"cn-kali-team","tags":"detect,tech,nsfocus-下一代防火墙","severity":"info","metadata":{"product":"nsfocus-下一代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/login_logo_nf_zh_cn.png","nsfocus nf"],"condition":"and","case-insensitive":true}]}]},{"id":"codesys-webvisu","info":{"name":"codesys-webvisu","author":"cn-kali-team","tags":"detect,tech,codesys-webvisu","severity":"info","metadata":{"product":"codesys-webvisu","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<param name=\"startvisu\" value=\"plc_visu\">"],"case-insensitive":true}]}]},{"id":"ultrapower-identity","info":{"name":"ultrapower-identity","author":"cn-kali-team","tags":"detect,tech,ultrapower-identity","severity":"info","metadata":{"product":"ultrapower-identity","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<li><p>欢迎进入身份与安全管控系统</p></li>"],"case-insensitive":true}]}]},{"id":"cmstuan","info":{"name":"cmstuan","author":"cn-kali-team","tags":"detect,tech,cmstuan","severity":"info","metadata":{"product":"cmstuan","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"开源团主机管理系统"],"case-insensitive":true}]}]},{"id":"yi-sai-tong--dian-zi-wen-dang-an-quan-guan-li-xi-tong","info":{"name":"亿赛通-电子文档安全管理系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"亿赛通-电子文档安全管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cdgserver3"],"case-insensitive":true}]}]},{"id":"libwww-perl-daemon","info":{"name":"libwww-perl-daemon","author":"cn-kali-team","tags":"detect,tech,libwww-perl-daemon","severity":"info","metadata":{"product":"libwww-perl-daemon","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: libwww-perl-daemon"],"part":"header","case-insensitive":true}]}]},{"id":"distributed-regtech-collaboration-platform","info":{"name":"distributed-regtech-collaboration-platform","author":"cn-kali-team","tags":"detect,tech,distributed-regtech-collaboration-platform","severity":"info","metadata":{"product":"distributed-regtech-collaboration-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span class=\"blue bolder\">drc</span>"],"case-insensitive":true}]}]},{"id":"cups","info":{"name":"cups","author":"cn-kali-team","tags":"detect,tech,cups","severity":"info","metadata":{"product":"cups","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: cups"],"part":"header","case-insensitive":true}]}]},{"id":"apex-livebpm","info":{"name":"apex-livebpm","author":"cn-kali-team","tags":"detect,tech,apex-livebpm","severity":"info","metadata":{"product":"apex-livebpm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/plug-in/login/fixed/css/login.css\""],"case-insensitive":true}]}]},{"id":"shi-hua-ying-ke-ssl-vpn-yuan-cheng-jie-ru-xi-tong","info":{"name":"石化盈科-ssl-vpn-远程接入系统","author":"cn-kali-team","tags":"detect,tech,石化盈科-ssl-vpn-远程接入系统","severity":"info","metadata":{"product":"石化盈科-ssl-vpn-远程接入系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"new_style/placeholderfriend.js"],"case-insensitive":true}]}]},{"id":"dvwa","info":{"name":"dvwa","author":"cn-kali-team","tags":"detect,tech,dvwa","severity":"info","metadata":{"product":"dvwa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dvwa/css/login.css","dvwa/images/login_logo.png"],"case-insensitive":true}]}]},{"id":"telerik-sitefinity","info":{"name":"telerik-sitefinity","author":"cn-kali-team","tags":"detect,tech,telerik-sitefinity","severity":"info","metadata":{"product":"telerik-sitefinity","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"sitefinity","telerik.web.ui.webresource.axd"],"case-insensitive":true}]}]},{"id":"wosign-ssl-cert","info":{"name":"wosign-ssl-cert","author":"cn-kali-team","tags":"detect,tech,wosign-ssl-cert","severity":"info","metadata":{"product":"wosign-ssl-cert","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["https://seal.wosign.com/signature","https://seal.wosign.com/tws.js"],"case-insensitive":true}]}]},{"id":"u-reader-digital-library","info":{"name":"u-reader-digital-library","author":"cn-kali-team","tags":"detect,tech,u-reader-digital-library","severity":"info","metadata":{"product":"u-reader-digital-library","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"login-show-title\">dynomedia inc.</p>","content=\"ureader"],"case-insensitive":true}]}]},{"id":"fe-oa","info":{"name":"fe-oa","author":"cn-kali-team","tags":"detect,tech,fe-oa","severity":"info","metadata":{"product":"fe-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["js39/flyrise.stopbackspace.js"],"case-insensitive":true}]}]},{"id":"yonyou-intelligentplant","info":{"name":"yonyou-intelligentplant","author":"cn-kali-team","tags":"detect,tech,yonyou-intelligentplant","severity":"info","metadata":{"product":"yonyou-intelligentplant","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/modules/core/client/views/sidemenu.client.view.html"],"case-insensitive":true}]}]},{"id":"h5s-video-platform","info":{"name":"h5s-video-platform","author":"cn-kali-team","tags":"detect,tech,h5s-video-platform","severity":"info","metadata":{"product":"h5s-video-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["71d350f81224c181b2fc5851fc61b0ba"]},{"type":"word","words":["h5s视频平台|web"],"case-insensitive":true}]}]},{"id":"ibm-cics-transaction-server","info":{"name":"ibm-cics-transaction-server","author":"cn-kali-team","tags":"detect,tech,ibm-cics-transaction-server","severity":"info","metadata":{"product":"ibm-cics-transaction-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: ibm_cics_transaction_server"],"part":"header","case-insensitive":true}]}]},{"id":"ikuai8-cloud","info":{"name":"ikuai8-cloud","author":"cn-kali-team","tags":"detect,tech,ikuai8-cloud","severity":"info","metadata":{"product":"ikuai8-cloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["c1af9e622eae1dcb95ef44f996bf6228"]},{"type":"word","words":["<strong>we're sorry but ikuai cloud platform doesn't "],"case-insensitive":true}]}]},{"id":"kaijiang-oa","info":{"name":"kaijiang-oa","author":"cn-kali-team","tags":"detect,tech,kaijiang-oa","severity":"info","metadata":{"product":"kaijiang-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/kjoa/sheep/login/login.js"],"case-insensitive":true}]}]},{"id":"kingdee-eas","info":{"name":"kingdee-eas","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"kingdee-eas","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["eas系统登录","logging_kingdee.gif"],"condition":"and","case-insensitive":true},{"type":"word","words":["eas系统登录","金蝶"],"condition":"and","case-insensitive":true}]}]},{"id":"hw99-checking","info":{"name":"hw99-checking","author":"cn-kali-team","tags":"detect,tech,hw99-checking","severity":"info","metadata":{"product":"hw99-checking","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/hwface/script/logincheck.js"],"case-insensitive":true}]}]},{"id":"zhengdazhongri-education","info":{"name":"zhengdazhongri-education","author":"cn-kali-team","tags":"detect,tech,zhengdazhongri-education","severity":"info","metadata":{"product":"zhengdazhongri-education","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["lb_hint","onclick=\"safecodeclick\" src=\"safecode.aspx"],"condition":"and","case-insensitive":true},{"type":"word","words":["images/lgline.gif"],"case-insensitive":true}]}]},{"id":"euesoft-hr","info":{"name":"euesoft-hr","author":"cn-kali-team","tags":"detect,tech,euesoft-hr","severity":"info","metadata":{"product":"euesoft-hr","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["link.description = \"亿华软件\""],"case-insensitive":true}]}]},{"id":"zhi-yuan-a6-v5-xie-tong-guan-li-ruan-jian-.a6u8-v12.5","info":{"name":"致远a6-v5协同管理软件.a6u8 v12.5","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远a6-v5协同管理软件.a6u8 v12.5","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/seeyon/common/images/a6/faviconu8.ico"],"case-insensitive":true}]}]},{"id":"traderencrm","info":{"name":"traderencrm","author":"cn-kali-team","tags":"detect,tech,traderencrm","severity":"info","metadata":{"product":"traderencrm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["emlsoft"],"case-insensitive":true}]}]},{"id":"tengweioa","info":{"name":"tengweioa","author":"cn-kali-team","tags":"detect,tech,tengweioa","severity":"info","metadata":{"product":"tengweioa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/_common/scripts/global.js","/valcode.aspx"],"case-insensitive":true}]}]},{"id":"315soft-filesystem","info":{"name":"315soft-filesystem","author":"cn-kali-team","tags":"detect,tech,315soft-filesystem","severity":"info","metadata":{"product":"315soft-filesystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[">多可电子档案管理系统</div"],"case-insensitive":true}]}]},{"id":"netscape-fasttrack","info":{"name":"netscape-fasttrack","author":"cn-kali-team","tags":"detect,tech,netscape-fasttrack","severity":"info","metadata":{"product":"netscape-fasttrack","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: netscape-fasttrack"],"part":"header","case-insensitive":true}]}]},{"id":"valueapex-eamic","info":{"name":"valueapex-eamic","author":"cn-kali-team","tags":"detect,tech,valueapex-eamic","severity":"info","metadata":{"product":"valueapex-eamic","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["log into my eamic® account"],"case-insensitive":true}]}]},{"id":"goldencis-nacp","info":{"name":"goldencis-nacp","author":"cn-kali-team","tags":"detect,tech,goldencis-nacp","severity":"info","metadata":{"product":"goldencis-nacp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"tit_b\"> 通过管理员分配的密码使用紧急入口。</div>"],"case-insensitive":true}]}]},{"id":"xenforo","info":{"name":"xenforo","author":"cn-kali-team","tags":"detect,tech,xenforo","severity":"info","metadata":{"product":"xenforo","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["default/xenforo/bell.png"],"case-insensitive":true}]}]},{"id":"contentxxl","info":{"name":"contentxxl","author":"cn-kali-team","tags":"detect,tech,contentxxl","severity":"info","metadata":{"product":"contentxxl","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"contentxxl"],"case-insensitive":true}]}]},{"id":"anecms","info":{"name":"anecms","author":"cn-kali-team","tags":"detect,tech,anecms","severity":"info","metadata":{"product":"anecms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"erwin aligam - [email protected]"],"case-insensitive":true}]}]},{"id":"gzsa-intranet-security","info":{"name":"gzsa-intranet-security","author":"cn-kali-team","tags":"detect,tech,gzsa-intranet-security","severity":"info","metadata":{"product":"gzsa-intranet-security","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["gzsa. all rights reserved</span>"],"case-insensitive":true}]}]},{"id":"chinatelecomequipmentwebconfigurationsystem","info":{"name":"chinatelecomequipmentwebconfigurationsystem","author":"cn-kali-team","tags":"detect,tech,chinatelecomequipmentwebconfigurationsystem","severity":"info","metadata":{"product":"chinatelecomequipmentwebconfigurationsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["设备web配置</font"],"case-insensitive":true}]}]},{"id":"xheditor","info":{"name":"xheditor","author":"cn-kali-team","tags":"detect,tech,xheditor","severity":"info","metadata":{"product":"xheditor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[".xheditor(","class=\"xheditor","xheditor_lang/zh-cn.js"],"case-insensitive":true}]}]},{"id":"kenna-system","info":{"name":"kenna-system","author":"cn-kali-team","tags":"detect,tech,kenna-system","severity":"info","metadata":{"product":"kenna-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"kenna sessions new\"","href=\"/favicon.ico?kenna\""],"case-insensitive":true}]}]},{"id":"taocms","info":{"name":"taocms","author":"cn-kali-team","tags":"detect,tech,taocms","severity":"info","metadata":{"product":"taocms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/taocms/code/calendar.js\"","template/taocms"],"case-insensitive":true}]}]},{"id":"hikvision-an-quan-wang-guan","info":{"name":"hikvision-安全网关","author":"cn-kali-team","tags":"detect,tech,hikvision-安全网关","severity":"info","metadata":{"product":"hikvision-安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"./webui/js/jquerylib/jquery-1.7.2.min.js\"","安全接入网关"],"condition":"and","case-insensitive":true}]}]},{"id":"clipshare","info":{"name":"clipshare","author":"cn-kali-team","tags":"detect,tech,clipshare","severity":"info","metadata":{"product":"clipshare","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!--!!!!!!!!!!!!!!!!!!!!!!!!! processing script","powered by <a href=\"http://www.clip-share.com"],"case-insensitive":true}]}]},{"id":"meetingplaza","info":{"name":"meetingplaza","author":"cn-kali-team","tags":"detect,tech,meetingplaza","severity":"info","metadata":{"product":"meetingplaza","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["meetingplaza http tunneling"],"case-insensitive":true}]}]},{"id":"263-enterprise-mailbox","info":{"name":"263-enterprise-mailbox","author":"cn-kali-team","tags":"detect,tech,263-enterprise-mailbox","severity":"info","metadata":{"product":"263-enterprise-mailbox","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["net263.wm.custom_login.homepage_init","src=\"/custom_login/js/net263_wm_util.js"],"case-insensitive":true}]}]},{"id":"ngi-gxd5-pacs","info":{"name":"ngi-gxd5-pacs","author":"cn-kali-team","tags":"detect,tech,ngi-gxd5-pacs","severity":"info","metadata":{"product":"ngi-gxd5-pacs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"passwordwrapper\" class=\"fieldwrapper\">"],"case-insensitive":true}]}]},{"id":"storm","info":{"name":"storm","author":"cn-kali-team","tags":"detect,tech,storm","severity":"info","metadata":{"product":"storm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["stormtimestr"],"case-insensitive":true}]}]},{"id":"phpmywind","info":{"name":"phpmywind","author":"cn-kali-team","tags":"detect,tech,phpmywind","severity":"info","metadata":{"product":"phpmywind","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"phpmywind","phpmywind.com all rights reserved"],"case-insensitive":true}]}]},{"id":"wygk-product","info":{"name":"wygk-product","author":"cn-kali-team","tags":"detect,tech,wygk-product","severity":"info","metadata":{"product":"wygk-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"mailto:[email protected]","href=\"wrzcnet.ico","url = 'wrzcnet_vote.asp?stype=view';"],"case-insensitive":true}]}]},{"id":"fengyunqifei-firim","info":{"name":"fengyunqifei-firim","author":"cn-kali-team","tags":"detect,tech,fengyunqifei-firim","severity":"info","metadata":{"product":"fengyunqifei-firim","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"android/com.apsp.xnmdm-signed.apk\""],"case-insensitive":true}]}]},{"id":"advantech-webaccess","info":{"name":"advantech-webaccess","author":"cn-kali-team","tags":"detect,tech,advantech-webaccess","severity":"info","metadata":{"product":"advantech-webaccess","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/broadweb/bwuconfig.asp","/broadweb/webaccessclientsetup.exe","/bw_templete1.dwt"],"case-insensitive":true}]}]},{"id":"wang-shen-vpn","info":{"name":"网神-vpn","author":"cn-kali-team","tags":"detect,tech,网神-vpn","severity":"info","metadata":{"product":"网神-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["admin/js/virtual_keyboard.js","src=\"images/login_logo.gif\""],"condition":"and","case-insensitive":true}]}]},{"id":"pg-real-estate-solution","info":{"name":"pg-real-estate-solution","author":"cn-kali-team","tags":"detect,tech,pg-real-estate-solution","severity":"info","metadata":{"product":"pg-real-estate-solution","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[">pg real estate solution - real estate web site design"],"case-insensitive":true}]}]},{"id":"sonicwall-ssl-vpn","info":{"name":"sonicwall-ssl-vpn","author":"cn-kali-team","tags":"detect,tech,sonicwall-ssl-vpn","severity":"info","metadata":{"product":"sonicwall-ssl-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["javascript/aventail.js"],"case-insensitive":true}]}]},{"id":"wang-kang-ke-ji-ns-asg-an-quan-wang-guan","info":{"name":"网康科技-ns-asg安全网关","author":"cn-kali-team","tags":"detect,tech,网康科技-ns-asg安全网关","severity":"info","metadata":{"product":"网康科技-ns-asg安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["400-678-3600","client/thickbox.css"],"condition":"and","case-insensitive":true}]}]},{"id":"lie-mu-lu","info":{"name":"列目录","author":"cn-kali-team","tags":"detect,tech,列目录","severity":"info","metadata":{"product":"列目录","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1>index of /","<title>index of /"],"condition":"and","case-insensitive":true},{"type":"word","words":["<h1>directory listing for /","<title>directory listing for /"],"condition":"and","case-insensitive":true}]}]},{"id":"kj65n-mei-kuang-yuan-cheng-jian-kong-an-quan-yu-jing-xi-tong","info":{"name":"kj65n煤矿远程监控安全预警系统","author":"cn-kali-team","tags":"detect,tech,kj65n煤矿远程监控安全预警系统","severity":"info","metadata":{"product":"kj65n煤矿远程监控安全预警系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["images/login/top002.gif","worlddesktop/webform1.aspx"],"condition":"and","case-insensitive":true}]}]},{"id":"information-security-integrated-management-platform","info":{"name":"information-security-integrated-management-platform","author":"cn-kali-team","tags":"detect,tech,information-security-integrated-management-platform","severity":"info","metadata":{"product":"information-security-integrated-management-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["[email protected]"],"case-insensitive":true}]}]},{"id":"youhua-iemos_cw","info":{"name":"youhua-iemos_cw","author":"cn-kali-team","tags":"detect,tech,youhua-iemos_cw","severity":"info","metadata":{"product":"youhua-iemos_cw","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var id = document.getelementbyid(\"txtyhmm\").value"],"case-insensitive":true}]}]},{"id":"fei-yu-xing-xia-yi-dai-fang-huo-qiang-an-quan-wang-guan","info":{"name":"飞鱼星-下一代防火墙安全网关","author":"cn-kali-team","tags":"detect,tech,飞鱼星-下一代防火墙安全网关","severity":"info","metadata":{"product":"飞鱼星-下一代防火墙安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/css/cover_admin.css\"","下一代防火墙安全网关"],"condition":"and","case-insensitive":true}]}]},{"id":"ocss","info":{"name":"ocss","author":"cn-kali-team","tags":"detect,tech,ocss","severity":"info","metadata":{"product":"ocss","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<option value=\"age_sys\">代理商内部员工</option>","content=\"爱施德移动渠道管理系统","爱施德 aisidi.com"],"case-insensitive":true}]}]},{"id":"symantec-thawte_ssl_cert","info":{"name":"symantec-thawte_ssl_cert","author":"cn-kali-team","tags":"detect,tech,symantec-thawte_ssl_cert","severity":"info","metadata":{"product":"symantec-thawte_ssl_cert","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["https://seal.thawte.com/getthawteseal"],"case-insensitive":true}]}]},{"id":"netwin-surgemail","info":{"name":"netwin-surgemail","author":"cn-kali-team","tags":"detect,tech,netwin-surgemail","severity":"info","metadata":{"product":"netwin-surgemail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/about_mail.htm\">about surgemail","surgemail welcome page"],"condition":"and","case-insensitive":true}]}]},{"id":"ibm-merge-pacs","info":{"name":"ibm-merge-pacs","author":"cn-kali-team","tags":"detect,tech,ibm-merge-pacs","severity":"info","metadata":{"product":"ibm-merge-pacs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<option value=\"merge pacs\">merge pacs</option>"],"case-insensitive":true}]}]},{"id":"cloudera-manager","info":{"name":"cloudera-manager","author":"cn-kali-team","tags":"detect,tech,cloudera-manager","severity":"info","metadata":{"product":"cloudera-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var loginpageurl = \"/cmf/login\";"],"case-insensitive":true},{"type":"word","words":["set-cookie: cloudera_manager_sessionid="],"part":"header","case-insensitive":true}]}]},{"id":"communigate-pro","info":{"name":"communigate-pro","author":"cn-kali-team","tags":"detect,tech,communigate-pro","severity":"info","metadata":{"product":"communigate-pro","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: communigatepro"],"part":"header","case-insensitive":true}]}]},{"id":"spark-jobs","info":{"name":"spark-jobs","author":"cn-kali-team","tags":"detect,tech,spark-jobs","severity":"info","metadata":{"product":"spark-jobs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/jobs/job?id=","spark jobs"],"case-insensitive":true}]}]},{"id":"an-heng-xin-xi-ming-yu-yun-wei-shen-ji-yu-feng-xian-kong-zhi-xi-tong","info":{"name":"安恒信息-明御运维审计与风险控制系统","author":"cn-kali-team","tags":"detect,tech,安恒信息-明御运维审计与风险控制系统","severity":"info","metadata":{"product":"安恒信息-明御运维审计与风险控制系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["明御运维审计"],"case-insensitive":true}]}]},{"id":"clearwell-e-discovery","info":{"name":"clearwell-e-discovery","author":"cn-kali-team","tags":"detect,tech,clearwell-e-discovery","severity":"info","metadata":{"product":"clearwell-e-discovery","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: clearwell"],"part":"header","case-insensitive":true}]}]},{"id":"salien-performance-management-platform","info":{"name":"salien-performance-management-platform","author":"cn-kali-team","tags":"detect,tech,salien-performance-management-platform","severity":"info","metadata":{"product":"salien-performance-management-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"copyright 2010 www.salien.com.cn\"","href=\"images/login/cbgl/favicon.ico\""],"case-insensitive":true}]}]},{"id":"sheca-cert","info":{"name":"sheca-cert","author":"cn-kali-team","tags":"detect,tech,sheca-cert","severity":"info","metadata":{"product":"sheca-cert","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<li class=\"in\" id=\"cert_li\">","content: \"获取一证通信息异常。请检查数字证书是否正常运行"],"case-insensitive":true}]}]},{"id":"centerm","info":{"name":"centerm","author":"cn-kali-team","tags":"detect,tech,centerm","severity":"info","metadata":{"product":"centerm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["new ct.extapp.aboutsystemwindow()"],"case-insensitive":true}]}]},{"id":"shopnc","info":{"name":"shopnc","author":"cn-kali-team","tags":"detect,tech,shopnc","severity":"info","metadata":{"product":"shopnc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"shopnc","copyright 2007-2014 shopnc inc","powered by shopnc"],"case-insensitive":true}]}]},{"id":"ektron-cms","info":{"name":"ektron-cms","author":"cn-kali-team","tags":"detect,tech,ektron-cms","severity":"info","metadata":{"product":"ektron-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/java/ektron.js"],"case-insensitive":true}]}]},{"id":"edusoho-open-source-web-classroom","info":{"name":"edusoho-open-source-web-classroom-","author":"cn-kali-team","tags":"detect,tech,edusoho-open-source-web-classroom-","severity":"info","metadata":{"product":"edusoho-open-source-web-classroom-","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by edusoho"],"case-insensitive":true}]}]},{"id":"smartthumbs","info":{"name":"smartthumbs","author":"cn-kali-team","tags":"detect,tech,smartthumbs","severity":"info","metadata":{"product":"smartthumbs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by<a href=\"http://www.smart-scripts.com\">smart thumbs</a>"],"case-insensitive":true}]}]},{"id":"typecho","info":{"name":"typecho","author":"cn-kali-team","tags":"detect,tech,typecho","severity":"info","metadata":{"product":"typecho","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["typecho","usr/themes"],"condition":"and","case-insensitive":true}]}]},{"id":"tian-rong-xintopapp_lb-fu-zai-jun-heng-xi-tong","info":{"name":"天融信topapp_lb负载均衡系统","author":"cn-kali-team","tags":"detect,tech,天融信topapp_lb负载均衡系统","severity":"info","metadata":{"product":"天融信topapp_lb负载均衡系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>天融信 topapp</title>"],"case-insensitive":true}]}]},{"id":"sap-sybase","info":{"name":"sap-sybase","author":"cn-kali-team","tags":"detect,tech,sap-sybase","severity":"info","metadata":{"product":"sap-sybase","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: adaptiveserveranywhere"],"part":"header","case-insensitive":true}]}]},{"id":"topsec-firewall","info":{"name":"topsec-firewall","author":"cn-kali-team","tags":"detect,tech,topsec-firewall","severity":"info","metadata":{"product":"topsec-firewall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["topsec","image/aaa.png","username"],"condition":"and","case-insensitive":true}]}]},{"id":"samphpweb","info":{"name":"samphpweb","author":"cn-kali-team","tags":"detect,tech,samphpweb","severity":"info","metadata":{"product":"samphpweb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta http-equiv=\"refresh\" content=\"0;url=playing.html\">","copyright spacial audio solutions","href=\"http://www.spacialaudio.com/products/sambroadcaster/\"","songinfo.php"],"case-insensitive":true}]}]},{"id":"tiger-ip-connect","info":{"name":"tiger-ip-connect","author":"cn-kali-team","tags":"detect,tech,tiger-ip-connect","severity":"info","metadata":{"product":"tiger-ip-connect","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/include/tiger.css","<link rel=\"stylesheet\" href=\"/include/firedigit.css\">","<link rel=\"stylesheet\" href=\"/include/tms.css\">"],"case-insensitive":true}]}]},{"id":"fan-ruan-shu-ju-jue-ce-xi-tong","info":{"name":"帆软数据决策系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"帆软数据决策系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["webroot/decision/file?path="],"case-insensitive":true}]}]},{"id":"ibm-http-server","info":{"name":"ibm-http-server","author":"cn-kali-team","tags":"detect,tech,ibm-http-server","severity":"info","metadata":{"product":"ibm-http-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ibm http server","support"],"condition":"and","case-insensitive":true}]}]},{"id":"dell-navisphere-express","info":{"name":"dell-navisphere-express","author":"cn-kali-team","tags":"detect,tech,dell-navisphere-express","severity":"info","metadata":{"product":"dell-navisphere-express","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["parent.main.location = urlnonst + \"?nst=\" + top.menu.securitytoken"],"case-insensitive":true}]}]},{"id":"quest-password-manager","info":{"name":"quest-password-manager","author":"cn-kali-team","tags":"detect,tech,quest-password-manager","severity":"info","metadata":{"product":"quest-password-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"ctl00_ctl00_ctl00_ctl00_body","id=\"ctl00_ctl00_ctl00_ctl00_contentplaceholder_pleasewait_content","id=\"ginapageexpiration","style=\"display:none\" id=\"account_notfilled.textbox"],"case-insensitive":true}]}]},{"id":"novell-open-enterprise-server","info":{"name":"novell-open-enterprise-server","author":"cn-kali-team","tags":"detect,tech,novell-open-enterprise-server","severity":"info","metadata":{"product":"novell-open-enterprise-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- this is all just a super-duper redirect to the welcome page","href=\"http://www.novell.com/products/openenterpriseserver"],"case-insensitive":true}]}]},{"id":"oracle-primerva","info":{"name":"oracle-primerva","author":"cn-kali-team","tags":"detect,tech,oracle-primerva","severity":"info","metadata":{"product":"oracle-primerva","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"introareabuildid","com.primavera.detectplugin.detectpluginapplet.class","primavera systems, inc"],"case-insensitive":true}]}]},{"id":"365webcall","info":{"name":"365webcall","author":"cn-kali-team","tags":"detect,tech,365webcall","severity":"info","metadata":{"product":"365webcall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src='http://www.365webcall.com/imme1.aspx?"],"case-insensitive":true}]}]},{"id":"ipguard-system","info":{"name":"ipguard-system","author":"cn-kali-team","tags":"detect,tech,ipguard-system","severity":"info","metadata":{"product":"ipguard-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onchange=\"is_empty('#txtusername','#lblemptyname')"],"case-insensitive":true}]}]},{"id":"citrix-receiver","info":{"name":"citrix-receiver","author":"cn-kali-team","tags":"detect,tech,citrix-receiver","severity":"info","metadata":{"product":"citrix-receiver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["logonbelt-topshadow","upgradeavailable-already-installed-separator bar-separator"],"condition":"and","case-insensitive":true},{"type":"word","words":["href=\"clients/html5client/src/receiverthirdpartynotices.html\""],"case-insensitive":true}]}]},{"id":"pageadmin","info":{"name":"pageadmin","author":"cn-kali-team","tags":"detect,tech,pageadmin","severity":"info","metadata":{"product":"pageadmin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/e/images/favicon.ico","content=\"pageadmin cms\""],"case-insensitive":true}]}]},{"id":"panasonic-maintenance-utility","info":{"name":"panasonic-maintenance-utility","author":"cn-kali-team","tags":"detect,tech,panasonic-maintenance-utility","severity":"info","metadata":{"product":"panasonic-maintenance-utility","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["panasonic_logo.gif"],"case-insensitive":true}]}]},{"id":"kleeja","info":{"name":"kleeja","author":"cn-kali-team","tags":"detect,tech,kleeja","severity":"info","metadata":{"product":"kleeja","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by kleeja"],"case-insensitive":true}]}]},{"id":"group-office","info":{"name":"group-office","author":"cn-kali-team","tags":"detect,tech,group-office","severity":"info","metadata":{"product":"group-office","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["\"theme\":\"group-office\",","powered by group-office"],"case-insensitive":true}]}]},{"id":"exponent-cms","info":{"name":"exponent-cms","author":"cn-kali-team","tags":"detect,tech,exponent-cms","severity":"info","metadata":{"product":"exponent-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"exponent content management system","powered by exponent cms"],"case-insensitive":true}]}]},{"id":"koala-web-server","info":{"name":"koala-web-server","author":"cn-kali-team","tags":"detect,tech,koala-web-server","severity":"info","metadata":{"product":"koala-web-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: koala web server"],"part":"header","case-insensitive":true}]}]},{"id":"tomcat-monitor-uses-wadl","info":{"name":"tomcat-monitor-uses-wadl","author":"cn-kali-team","tags":"detect,tech,tomcat-monitor-uses-wadl","severity":"info","metadata":{"product":"tomcat-monitor-uses-wadl","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tomcat monitor uses wadl to describe services it can offer"],"case-insensitive":true}]}]},{"id":"trend-smart-protection-server","info":{"name":"trend-smart-protection-server","author":"cn-kali-team","tags":"detect,tech,trend-smart-protection-server","severity":"info","metadata":{"product":"trend-smart-protection-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["lastrow_right","redirect_reason"],"case-insensitive":true}]}]},{"id":"hp-sitescope","info":{"name":"hp-sitescope","author":"cn-kali-team","tags":"detect,tech,hp-sitescope","severity":"info","metadata":{"product":"hp-sitescope","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sitescope login"],"case-insensitive":true}]}]},{"id":"hitachi-virtual-storage-platform","info":{"name":"hitachi-virtual-storage-platform","author":"cn-kali-team","tags":"detect,tech,hitachi-virtual-storage-platform","severity":"info","metadata":{"product":"hitachi-virtual-storage-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/cgismryset/smryset.cgi/clk\""],"case-insensitive":true}]}]},{"id":"zyxel-vmg","info":{"name":"zyxel-vmg","author":"cn-kali-team","tags":"detect,tech,zyxel-vmg","severity":"info","metadata":{"product":"zyxel-vmg","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[".::welcome to the web-based configurator::.","zyxelhelp.js"],"condition":"and","case-insensitive":true}]}]},{"id":"he-xin-xia-yi-dai-yun-zhuo-mianvesystem","info":{"name":"和信下一代云桌面vesystem","author":"cn-kali-team","tags":"detect,tech,和信下一代云桌面vesystem","severity":"info","metadata":{"product":"和信下一代云桌面vesystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["url=/vesystem"],"case-insensitive":true}]}]},{"id":"kentico-cms","info":{"name":"kentico-cms","author":"cn-kali-team","tags":"detect,tech,kentico-cms","severity":"info","metadata":{"product":"kentico-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cmspages/getresource.ashx","content=\"kentico cms"],"condition":"and","case-insensitive":true},{"type":"word","words":["kentico"],"case-insensitive":true}]}]},{"id":"telinxinxi-527meeting","info":{"name":"telinxinxi-527meeting","author":"cn-kali-team","tags":"detect,tech,telinxinxi-527meeting","severity":"info","metadata":{"product":"telinxinxi-527meeting","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" content=\"轻会议\"","527meeting"],"case-insensitive":true}]}]},{"id":"gordano-messaging-suite","info":{"name":"gordano-messaging-suite","author":"cn-kali-team","tags":"detect,tech,gordano-messaging-suite","severity":"info","metadata":{"product":"gordano-messaging-suite","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: gordano"],"part":"header","case-insensitive":true}]}]},{"id":"lc000-system","info":{"name":"lc000-system","author":"cn-kali-team","tags":"detect,tech,lc000-system","severity":"info","metadata":{"product":"lc000-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>secondary_nodes</title>"],"case-insensitive":true}]}]},{"id":"gitbook","info":{"name":"gitbook","author":"cn-kali-team","tags":"detect,tech,gitbook","severity":"info","metadata":{"product":"gitbook","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["gitbook"],"case-insensitive":true}]}]},{"id":"agilebpm","info":{"name":"agilebpm","author":"cn-kali-team","tags":"detect,tech,agilebpm","severity":"info","metadata":{"product":"agilebpm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"logo-element\">agile-bpm","class=\"logo-element\">bpm"],"case-insensitive":true}]}]},{"id":"videosurveillancemanagementplatform","info":{"name":"videosurveillancemanagementplatform","author":"cn-kali-team","tags":"detect,tech,videosurveillancemanagementplatform","severity":"info","metadata":{"product":"videosurveillancemanagementplatform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" <span>平台采用最新图像化展现技术"],"case-insensitive":true}]}]},{"id":"tian-qing-han-mavpn","info":{"name":"天清汉马vpn","author":"cn-kali-team","tags":"detect,tech,天清汉马vpn","severity":"info","metadata":{"product":"天清汉马vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/vpn/common/js/leadsec.js","/vpn/user/common/custom/auth_home.css"],"condition":"and","case-insensitive":true}]}]},{"id":"manageengine-admanager-plus","info":{"name":"manageengine-admanager-plus","author":"cn-kali-team","tags":"detect,tech,manageengine-admanager-plus","severity":"info","metadata":{"product":"manageengine-admanager-plus","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>manageengine - admanager plus</title>"],"case-insensitive":true}]}]},{"id":"puridiom","info":{"name":"puridiom","author":"cn-kali-team","tags":"detect,tech,puridiom","severity":"info","metadata":{"product":"puridiom","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"/puridiom/system/header.jsp","src=\"/puridiom/system/processing.jsp"],"case-insensitive":true}]}]},{"id":"smartcommunityintegratedmanagementcloudplatform","info":{"name":"smartcommunityintegratedmanagementcloudplatform","author":"cn-kali-team","tags":"detect,tech,smartcommunityintegratedmanagementcloudplatform","severity":"info","metadata":{"product":"smartcommunityintegratedmanagementcloudplatform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"container_huanlegendtext\""],"case-insensitive":true}]}]},{"id":"phpstudy","info":{"name":"phpstudy","author":"cn-kali-team","tags":"detect,tech,phpstudy","severity":"info","metadata":{"product":"phpstudy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["406165e1c4ec82ac49847ca8e7810bae"]},{"type":"word","words":["<title>404 错误 - phpstudy</title>","<title>phpstudy 探针 2","<title>站点创建成功-phpstudy for"],"case-insensitive":true},{"type":"word","words":["server: xpserver"],"part":"header","case-insensitive":true}]}]},{"id":"kedacom-dvr-jie-ru-wang-guan","info":{"name":"kedacom-dvr接入网关","author":"cn-kali-team","tags":"detect,tech,kedacom-dvr接入网关","severity":"info","metadata":{"product":"kedacom-dvr接入网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src='images/ind_log_kedacom.png')","苏州科达科技有限公司"],"condition":"and","case-insensitive":true}]}]},{"id":"weisha-learningsystem","info":{"name":"weisha-learningsystem","author":"cn-kali-team","tags":"detect,tech,weisha-learningsystem","severity":"info","metadata":{"product":"weisha-learningsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/utility/corescripts/widget.js"],"case-insensitive":true}]}]},{"id":"qax-secfox","info":{"name":"qax-secfox","author":"cn-kali-team","tags":"detect,tech,qax-secfox","severity":"info","metadata":{"product":"qax-secfox","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=mtokenplugin width=0 height=0 style=\"position: absolute;left: 0px; top: 0px\"","type=application/x-xtx-axhost"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["f3147f50cfd23455cb5fdf0dcd890dac"]}]}]},{"id":"browsercms","info":{"name":"browsercms","author":"cn-kali-team","tags":"detect,tech,browsercms","severity":"info","metadata":{"product":"browsercms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"browsercms","powered by browsercms"],"case-insensitive":true}]}]},{"id":"cisco-webex","info":{"name":"cisco-webex","author":"cn-kali-team","tags":"detect,tech,cisco-webex","severity":"info","metadata":{"product":"cisco-webex","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"cisco webex meetings server\""],"case-insensitive":true}]}]},{"id":"dejavu","info":{"name":"dejavu","author":"cn-kali-team","tags":"detect,tech,dejavu","severity":"info","metadata":{"product":"dejavu","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dejavu, the missing web ui for elasticsearch"],"case-insensitive":true}]}]},{"id":"cicro","info":{"name":"cicro","author":"cn-kali-team","tags":"detect,tech,cicro","severity":"info","metadata":{"product":"cicro","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cicro","content=\"cicro","cws"],"condition":"and","case-insensitive":true},{"type":"word","words":["index.files/cicro_userdefine.css"],"case-insensitive":true}]}]},{"id":"aws-elastic-beanstalk","info":{"name":"aws-elastic-beanstalk","author":"cn-kali-team","tags":"detect,tech,aws-elastic-beanstalk","severity":"info","metadata":{"product":"aws-elastic-beanstalk","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h2>what's next?</h2>","aws.amazon.com/elasticbeanstalk"],"case-insensitive":true}]}]},{"id":"mihalism-multi-host","info":{"name":"mihalism-multi-host","author":"cn-kali-team","tags":"detect,tech,mihalism-multi-host","severity":"info","metadata":{"product":"mihalism-multi-host","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"mihalism multi host","http://www.mihalism.com/product/mmh/\">mihalism multi host","powered by mihalism multi host"],"case-insensitive":true}]}]},{"id":"modlogan","info":{"name":"modlogan","author":"cn-kali-team","tags":"detect,tech,modlogan","severity":"info","metadata":{"product":"modlogan","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[">modlogan","modlogan.css"],"case-insensitive":true}]}]},{"id":"gong-kong-an-quan-yin-huan-zhi-li-xiang-mu-xi-tong","info":{"name":"工控安全隐患治理项目系统","author":"cn-kali-team","tags":"detect,tech,工控安全隐患治理项目系统","severity":"info","metadata":{"product":"工控安全隐患治理项目系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"qyxt.html\""],"case-insensitive":true}]}]},{"id":"ruijie-eweb-wang-guan-xi-tong","info":{"name":"ruijie-eweb网管系统","author":"cn-kali-team","tags":"detect,tech,ruijie-eweb网管系统","severity":"info","metadata":{"product":"ruijie-eweb网管系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>锐捷网络-eweb网管系统</title>"],"case-insensitive":true}]}]},{"id":"uniview-ezstation","info":{"name":"uniview-ezstation","author":"cn-kali-team","tags":"detect,tech,uniview-ezstation","severity":"info","metadata":{"product":"uniview-ezstation","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1>welcome to ezstation vc server"],"case-insensitive":true}]}]},{"id":"hanna-drawing-service","info":{"name":"hanna-drawing-service","author":"cn-kali-team","tags":"detect,tech,hanna-drawing-service","severity":"info","metadata":{"product":"hanna-drawing-service","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hanna图纸服务"],"case-insensitive":true}]}]},{"id":"dian-diagnostics","info":{"name":"dian-diagnostics","author":"cn-kali-team","tags":"detect,tech,dian-diagnostics","severity":"info","metadata":{"product":"dian-diagnostics","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/resources/pages/img/logo.svg\"","浙江迪安诊断技术股份有限公司"],"case-insensitive":true}]}]},{"id":"nsfocus-wang-zhan-an-quan-jian-ce-xi-tong","info":{"name":"nsfocus-网站安全监测系统","author":"cn-kali-team","tags":"detect,tech,nsfocus-网站安全监测系统","severity":"info","metadata":{"product":"nsfocus-网站安全监测系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["nsfocus.png","stylesheet/nsfocus"],"condition":"and","case-insensitive":true}]}]},{"id":"vrv-im","info":{"name":"vrv-im","author":"cn-kali-team","tags":"detect,tech,vrv-im","severity":"info","metadata":{"product":"vrv-im","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h3>连豆豆pc客户端 </h3>","class=\"loginusername\" value=\"\" placeholder=\"连豆豆账号/邮箱/手机号","class=\"wj-text wj-title\">下载信源豆豆</p>","href=\"http://im.vrv.cn/server-securitycenter/password/goretrieval.vrv"],"case-insensitive":true}]}]},{"id":"business-paperless-system","info":{"name":"business-paperless-system","author":"cn-kali-team","tags":"detect,tech,business-paperless-system","severity":"info","metadata":{"product":"business-paperless-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["//获取营业台席pc机 ip地址 mac地址"],"case-insensitive":true}]}]},{"id":"icall-cms","info":{"name":"icall-cms","author":"cn-kali-team","tags":"detect,tech,icall-cms","severity":"info","metadata":{"product":"icall-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var img_obj = document.getelementbyid('showing');"],"case-insensitive":true}]}]},{"id":"acunetix-wvs","info":{"name":"acunetix-wvs","author":"cn-kali-team","tags":"detect,tech,acunetix-wvs","severity":"info","metadata":{"product":"acunetix-wvs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<acx-root>","<title>acunetix"],"condition":"and","case-insensitive":true}]}]},{"id":"zhong-ke-wang-wei-4a-yun-wei-bao-lei-ji-xi-tong","info":{"name":"中科网威-4a运维堡垒机系统","author":"cn-kali-team","tags":"detect,tech,中科网威-4a运维堡垒机系统","severity":"info","metadata":{"product":"中科网威-4a运维堡垒机系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["zk.appname='中科网威4a运维堡垒机系统'"],"case-insensitive":true}]}]},{"id":"cirrusgate-system","info":{"name":"cirrusgate-system","author":"cn-kali-team","tags":"detect,tech,cirrusgate-system","severity":"info","metadata":{"product":"cirrusgate-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location.href = \"/dlp/admin/user/login.action\""],"case-insensitive":true}]}]},{"id":"blazix","info":{"name":"blazix","author":"cn-kali-team","tags":"detect,tech,blazix","severity":"info","metadata":{"product":"blazix","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: blazix java server"],"part":"header","case-insensitive":true}]}]},{"id":"beichuang-book-retrieval-system","info":{"name":"beichuang-book-retrieval-system","author":"cn-kali-team","tags":"detect,tech,beichuang-book-retrieval-system","severity":"info","metadata":{"product":"beichuang-book-retrieval-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["opac_two"],"case-insensitive":true}]}]},{"id":"wang-xin-yun-she-bei","info":{"name":"网心云设备","author":"cn-kali-team","tags":"detect,tech,网心云设备","severity":"info","metadata":{"product":"网心云设备","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["favicon.png","网心云设备"],"condition":"and","case-insensitive":true}]}]},{"id":"zhi-yuan-a6-m-xie-tong-guan-li-ruan-jian","info":{"name":"致远a6-m协同管理软件","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远a6-m协同管理软件","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/yyoa/seeyonoa/common/js/jquery/jquery.js","辅助程序安装"],"condition":"and","case-insensitive":true},{"type":"word","words":["seeyonoa/ui/images/login/a6_s_name.png","辅助安装程序"],"condition":"and","case-insensitive":true},{"type":"word","words":["致远a6-m协同管理软件","辅助安装程序"],"condition":"and","case-insensitive":true}]}]},{"id":"neusoft-neteye-bitsaver","info":{"name":"neusoft-neteye-bitsaver","author":"cn-kali-team","tags":"detect,tech,neusoft-neteye-bitsaver","severity":"info","metadata":{"product":"neusoft-neteye-bitsaver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/ntars/loginaction.do","href=\"/ntars/css/"],"case-insensitive":true}]}]},{"id":"qingyuan-management-system","info":{"name":"qingyuan-management-system","author":"cn-kali-team","tags":"detect,tech,qingyuan-management-system","severity":"info","metadata":{"product":"qingyuan-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["-moz-background-size","class=\"u_logo fa fa-user\""],"condition":"and","case-insensitive":true}]}]},{"id":"hjtcloud","info":{"name":"hjtcloud","author":"cn-kali-team","tags":"detect,tech,hjtcloud","severity":"info","metadata":{"product":"hjtcloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["\"/him/api/rest/v1.0/node/role\""],"case-insensitive":true}]}]},{"id":"thinkox","info":{"name":"thinkox","author":"cn-kali-team","tags":"detect,tech,thinkox","severity":"info","metadata":{"product":"thinkox","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by thinkox"],"case-insensitive":true}]}]},{"id":"tu-chuang-ruan-jian-tu-shu-guan-zhan-qun-guan-li-xi-tong","info":{"name":"图创软件-图书馆站群管理系统","author":"cn-kali-team","tags":"detect,tech,图创软件-图书馆站群管理系统","severity":"info","metadata":{"product":"图创软件-图书馆站群管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/interlib/common/"],"case-insensitive":true}]}]},{"id":"n2ws","info":{"name":"n2ws","author":"cn-kali-team","tags":"detect,tech,n2ws","severity":"info","metadata":{"product":"n2ws","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["static/style/cpm_style.css"],"case-insensitive":true}]}]},{"id":"kingdee","info":{"name":"kingdee","author":"cn-kali-team","tags":"detect,tech,kingdee","severity":"info","metadata":{"product":"kingdee","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["kingdee.entryrole","loginkdlogo"],"condition":"and","case-insensitive":true},{"type":"word","words":["/eassso/common","class=\"kd-div-loading-ct\"","eassessionid","logo-kingdee.png","var formidafterlogin = '\"bos_mainconsolesutra\"","金蝶国际软件集团有限公司版权所有"],"case-insensitive":true}]}]},{"id":"laravel-admin","info":{"name":"laravel-admin","author":"cn-kali-team","tags":"detect,tech,laravel-admin","severity":"info","metadata":{"product":"laravel-admin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["vendor/laravel-admin/","欢迎登录laravel-admin</p>"],"case-insensitive":true}]}]},{"id":"yunkemail","info":{"name":"yunkemail","author":"cn-kali-team","tags":"detect,tech,yunkemail","severity":"info","metadata":{"product":"yunkemail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/alimail/error/browserlog","content=\"阿里企业邮箱"],"case-insensitive":true}]}]},{"id":"cnpower-oa","info":{"name":"cnpower-oa","author":"cn-kali-team","tags":"detect,tech,cnpower-oa","severity":"info","metadata":{"product":"cnpower-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/oaapp/webobjects/oaapp.woa"],"case-insensitive":true}]}]},{"id":"hikvision-ivms","info":{"name":"hikvision-ivms","author":"cn-kali-team","tags":"detect,tech,hikvision-ivms","severity":"info","metadata":{"product":"hikvision-ivms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!--警示提示处-->","<h1 class=\"logo\">安防综合管理平台</h1>","serviceip","杭州海康威视系统技术有限公司 版权所有"],"case-insensitive":true}]}]},{"id":"hetongkj","info":{"name":"hetongkj","author":"cn-kali-team","tags":"detect,tech,hetongkj","severity":"info","metadata":{"product":"hetongkj","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/web/mainmenu/images/favicon.ico\">"],"case-insensitive":true}]}]},{"id":"a-li-ba-baotter-manager","info":{"name":"阿里巴巴otter-manager","author":"cn-kali-team","tags":"detect,tech,阿里巴巴otter-manager","severity":"info","metadata":{"product":"阿里巴巴otter-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["otter manager","channellist"],"condition":"and","case-insensitive":true}]}]},{"id":"zknet-attendance-management","info":{"name":"zknet-attendance-management","author":"cn-kali-team","tags":"detect,tech,zknet-attendance-management","severity":"info","metadata":{"product":"zknet-attendance-management","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["zknet","zksoftware inc."],"condition":"and","case-insensitive":true},{"type":"word","words":["onclick=\"showstate(gettext('forgotten password')) ","web考勤管理系统"],"case-insensitive":true}]}]},{"id":"dnp-firewall","info":{"name":"dnp-firewall","author":"cn-kali-team","tags":"detect,tech,dnp-firewall","severity":"info","metadata":{"product":"dnp-firewall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<form name=dnp_firewall","dnp_firewall_redirect","name=\"dnp_firewall_redirect"],"case-insensitive":true}]}]},{"id":"mshift","info":{"name":"mshift","author":"cn-kali-team","tags":"detect,tech,mshift","severity":"info","metadata":{"product":"mshift","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by mshift®"],"case-insensitive":true}]}]},{"id":"tuo-er-si-mas","info":{"name":"拓尔思-mas","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"拓尔思-mas","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-mas-server: ","location: /mas/"],"part":"header","case-insensitive":true},{"type":"favicon","hash":["ea5d31497e6f1304cdf4f4660a9b86df"]}]}]},{"id":"ren-zi-xing-net110-wang-luo-an-quan-shen-ji-xi-tong","info":{"name":"任子行-net110网络安全审计系统","author":"cn-kali-team","tags":"detect,tech,任子行-net110网络安全审计系统","severity":"info","metadata":{"product":"任子行-net110网络安全审计系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["net110网络安全审计系统","simplemodal.1.4.1.min.js"],"condition":"and","case-insensitive":true}]}]},{"id":"web-crossing-server","info":{"name":"web-crossing-server","author":"cn-kali-team","tags":"detect,tech,web-crossing-server","severity":"info","metadata":{"product":"web-crossing-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: web crossing"],"part":"header","case-insensitive":true}]}]},{"id":"ruan-jiao-huan-fang-huo-qiang","info":{"name":"软交换防火墙","author":"cn-kali-team","tags":"detect,tech,软交换防火墙","severity":"info","metadata":{"product":"软交换防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"secretkey\" id=\"secretkey\"","name=\"token_code\"placeholder=\"令牌口令\""],"condition":"and","case-insensitive":true}]}]},{"id":"php-server-monitor","info":{"name":"php-server-monitor","author":"cn-kali-team","tags":"detect,tech,php-server-monitor","severity":"info","metadata":{"product":"php-server-monitor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.phpservermonitor.org/","target=\"_blank\">php server monitor"],"case-insensitive":true}]}]},{"id":"quest-dr","info":{"name":"quest-dr","author":"cn-kali-team","tags":"detect,tech,quest-dr","severity":"info","metadata":{"product":"quest-dr","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cui-login-screen","quest software"],"case-insensitive":true}]}]},{"id":"renwoxing-crm","info":{"name":"renwoxing-crm","author":"cn-kali-team","tags":"detect,tech,renwoxing-crm","severity":"info","metadata":{"product":"renwoxing-crm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/resources/imgs/defaultannex/loginpictures/"],"case-insensitive":true}]}]},{"id":"pansoft-management-system","info":{"name":"pansoft-management-system","author":"cn-kali-team","tags":"detect,tech,pansoft-management-system","severity":"info","metadata":{"product":"pansoft-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["directlink = \"eafc.application\";"],"case-insensitive":true}]}]},{"id":"sangfor-osm","info":{"name":"sangfor-osm","author":"cn-kali-team","tags":"detect,tech,sangfor-osm","severity":"info","metadata":{"product":"sangfor-osm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location.href=\"https://\"+window.location.host+\"/fort/login"],"case-insensitive":true}]}]},{"id":"dtcloud","info":{"name":"dtcloud","author":"cn-kali-team","tags":"detect,tech,dtcloud","severity":"info","metadata":{"product":"dtcloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["49fe0618acdcd7c9dc443faca20d7bd9"]},{"type":"word","words":["dtcloud"],"case-insensitive":true}]}]},{"id":"leadsec-soc","info":{"name":"leadsec-soc","author":"cn-kali-team","tags":"detect,tech,leadsec-soc","severity":"info","metadata":{"product":"leadsec-soc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/leadsec-soc","action=\"/leadsec-soc/signin"],"condition":"and","case-insensitive":true}]}]},{"id":"vmwareview","info":{"name":"vmwareview","author":"cn-kali-team","tags":"detect,tech,vmwareview","severity":"info","metadata":{"product":"vmwareview","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>vmware view portal</title>"],"case-insensitive":true}]}]},{"id":"censura","info":{"name":"censura","author":"cn-kali-team","tags":"detect,tech,censura","severity":"info","metadata":{"product":"censura","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by: <a href=\"http://www.censura.info"],"case-insensitive":true}]}]},{"id":"anta-asg","info":{"name":"anta-asg","author":"cn-kali-team","tags":"detect,tech,anta-asg","severity":"info","metadata":{"product":"anta-asg","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["setcookie(\"asglanguage\",document.form1.planguage.value)"],"case-insensitive":true}]}]},{"id":"yuanian-accounting-software","info":{"name":"yuanian-accounting-software","author":"cn-kali-team","tags":"detect,tech,yuanian-accounting-software","severity":"info","metadata":{"product":"yuanian-accounting-software","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/image/logo/yuannian.gif","yuannian.css"],"case-insensitive":true}]}]},{"id":"nsfocus-bao-lei-ji","info":{"name":"nsfocus-堡垒机","author":"cn-kali-team","tags":"detect,tech,nsfocus-堡垒机","severity":"info","metadata":{"product":"nsfocus-堡垒机","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/login_logo_sas_h_zh_cn.png"],"case-insensitive":true}]}]},{"id":"house5","info":{"name":"house5","author":"cn-kali-team","tags":"detect,tech,house5","severity":"info","metadata":{"product":"house5","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/house5-style1/"],"case-insensitive":true}]}]},{"id":"ralph","info":{"name":"ralph","author":"cn-kali-team","tags":"detect,tech,ralph","severity":"info","metadata":{"product":"ralph","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ralph <strong>3</strong>"],"case-insensitive":true}]}]},{"id":"management-platform","info":{"name":"management-platform","author":"cn-kali-team","tags":"detect,tech,management-platform","severity":"info","metadata":{"product":"management-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["casloginview","i-verfiy"],"condition":"and","case-insensitive":true},{"type":"word","words":["北京天源迪科信息技术有限公司"],"case-insensitive":true}]}]},{"id":"54-customer-service","info":{"name":"54-customer-service","author":"cn-kali-team","tags":"detect,tech,54-customer-service","severity":"info","metadata":{"product":"54-customer-service","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"http://code.54kefu.net/"],"case-insensitive":true}]}]},{"id":"check-point-vpn","info":{"name":"check-point-vpn","author":"cn-kali-team","tags":"detect,tech,check-point-vpn","severity":"info","metadata":{"product":"check-point-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"/sslvpn/login/images/companylogo.png","check point software technologies"],"condition":"and","case-insensitive":true}]}]},{"id":"office-web-apps","info":{"name":"office-web-apps","author":"cn-kali-team","tags":"detect,tech,office-web-apps","severity":"info","metadata":{"product":"office-web-apps","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var generatedviewurlelementid"],"case-insensitive":true}]}]},{"id":"learun-system","info":{"name":"learun-system","author":"cn-kali-team","tags":"detect,tech,learun-system","severity":"info","metadata":{"product":"learun-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"力软敏捷开发框架,是一个web可视化开发平台"],"case-insensitive":true}]}]},{"id":"join-cheer-general-financial-system","info":{"name":"join-cheer-general-financial-system","author":"cn-kali-team","tags":"detect,tech,join-cheer-general-financial-system","severity":"info","metadata":{"product":"join-cheer-general-financial-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/netrep/intf","/netrep/message2/"],"condition":"and","case-insensitive":true},{"type":"word","words":["<meta http-equiv=\"refresh\" content=\"0\";url=\"../netrep\">","北京久其软件股份有限公司 版权所有"],"case-insensitive":true}]}]},{"id":"ibm-lotus-sametime","info":{"name":"ibm-lotus-sametime","author":"cn-kali-team","tags":"detect,tech,ibm-lotus-sametime","severity":"info","metadata":{"product":"ibm-lotus-sametime","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"sametimemeetingsbuttontransparent\"","href=\"sametime/meetingcenter-moz.css\"","sametime/themes/images/blank.gif","src=\"sametime/avtest.js\""],"case-insensitive":true}]}]},{"id":"pear","info":{"name":"pear","author":"cn-kali-team","tags":"detect,tech,pear","severity":"info","metadata":{"product":"pear","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"webbased pear package manager","installed packages, channel pear"],"case-insensitive":true}]}]},{"id":"yonyou-nc-cloud","info":{"name":"yonyou-nc-cloud","author":"cn-kali-team","tags":"detect,tech,yonyou-nc-cloud","severity":"info","metadata":{"product":"yonyou-nc-cloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta http-equiv=refresh content=0;url=nccloud>"],"case-insensitive":true}]}]},{"id":"qian-xing-oa-qi-ye-zhi-neng-ban-gong-zi-dong-hua-xi-tong","info":{"name":"乾星-oa企业智能办公自动化系统","author":"cn-kali-team","tags":"detect,tech,乾星-oa企业智能办公自动化系统","severity":"info","metadata":{"product":"乾星-oa企业智能办公自动化系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["input name=\"s1\" type=image"],"case-insensitive":true}]}]},{"id":"spammark-you-jian-xin-xi-an-quan-wang-guan","info":{"name":"spammark邮件信息安全网关","author":"cn-kali-team","tags":"detect,tech,spammark邮件信息安全网关","severity":"info","metadata":{"product":"spammark邮件信息安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/spammark?noframes=1","href=\"spammark16.ico\""],"case-insensitive":true}]}]},{"id":"raritan-an-quan-wang-guan","info":{"name":"raritan-安全网关","author":"cn-kali-team","tags":"detect,tech,raritan-安全网关","severity":"info","metadata":{"product":"raritan-安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["raritan cc-sg","src=\"images/ccsg logo.gif"],"condition":"and","case-insensitive":true}]}]},{"id":"onekeyadmin","info":{"name":"onekeyadmin","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"onekeyadmin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onekeyadmin","/admin/css/onekey.min.cs"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["507fcbebf363f4327fcb49294a864c24"]}]}]},{"id":"minibb","info":{"name":"minibb","author":"cn-kali-team","tags":"detect,tech,minibb","severity":"info","metadata":{"product":"minibb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!--minibb copyright link","powered by <a href=\"http://www.minibb."],"case-insensitive":true}]}]},{"id":"ultimus-bpm","info":{"name":"ultimus-bpm","author":"cn-kali-team","tags":"detect,tech,ultimus-bpm","severity":"info","metadata":{"product":"ultimus-bpm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["url=iportal/login.aspx"],"case-insensitive":true}]}]},{"id":"hu-wei-shen-wang-zhan-an-quan-xi-tong","info":{"name":"护卫神-网站安全系统","author":"cn-kali-team","tags":"detect,tech,护卫神-网站安全系统","severity":"info","metadata":{"product":"护卫神-网站安全系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["护卫神.网站安全系统"],"case-insensitive":true}]}]},{"id":"cogent-datahub","info":{"name":"cogent-datahub","author":"cn-kali-team","tags":"detect,tech,cogent-datahub","severity":"info","metadata":{"product":"cogent-datahub","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/images/cogent.gif"],"case-insensitive":true}]}]},{"id":"hibernating-rhinos-ravendb","info":{"name":"hibernating-rhinos-ravendb","author":"cn-kali-team","tags":"detect,tech,hibernating-rhinos-ravendb","severity":"info","metadata":{"product":"hibernating-rhinos-ravendb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"ravendb\""],"case-insensitive":true}]}]},{"id":"trunkey-icpsystem","info":{"name":"trunkey-icpsystem","author":"cn-kali-team","tags":"detect,tech,trunkey-icpsystem","severity":"info","metadata":{"product":"trunkey-icpsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.trunkey.com/\""],"case-insensitive":true}]}]},{"id":"ipeer","info":{"name":"ipeer","author":"cn-kali-team","tags":"detect,tech,ipeer","severity":"info","metadata":{"product":"ipeer","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/css/ipeer.css","powered by ipeer"],"case-insensitive":true}]}]},{"id":"w3-total-cache","info":{"name":"w3-total-cache","author":"cn-kali-team","tags":"detect,tech,w3-total-cache","severity":"info","metadata":{"product":"w3-total-cache","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- performance optimized by w3 total cache. learn more: http://www.w3-edge.com/wordpress-plugins/"],"case-insensitive":true}]}]},{"id":"bh-bh5000c","info":{"name":"bh-bh5000c","author":"cn-kali-team","tags":"detect,tech,bh-bh5000c","severity":"info","metadata":{"product":"bh-bh5000c","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["bhclientcer:\"/modules/web/common/data/bhclient.cer"],"case-insensitive":true}]}]},{"id":"teradata-aster","info":{"name":"teradata-aster","author":"cn-kali-team","tags":"detect,tech,teradata-aster","severity":"info","metadata":{"product":"teradata-aster","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["images/teradata_aster_logo.png"],"case-insensitive":true}]}]},{"id":"alstom-system","info":{"name":"alstom-system","author":"cn-kali-team","tags":"detect,tech,alstom-system","severity":"info","metadata":{"product":"alstom-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"technology_communion.asp"],"case-insensitive":true}]}]},{"id":"evercookie","info":{"name":"evercookie","author":"cn-kali-team","tags":"detect,tech,evercookie","severity":"info","metadata":{"product":"evercookie","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["evercookie.js","var ec = new evercookie();"],"case-insensitive":true}]}]},{"id":"hycas-system","info":{"name":"hycas-system","author":"cn-kali-team","tags":"detect,tech,hycas-system","severity":"info","metadata":{"product":"hycas-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/images/hyscm.jpg"],"case-insensitive":true}]}]},{"id":"everything","info":{"name":"everything","author":"cn-kali-team","tags":"detect,tech,everything","severity":"info","metadata":{"product":"everything","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["everything.gif","everything.png"],"case-insensitive":true}]}]},{"id":"pcitc-remotesystem","info":{"name":"pcitc-remotesystem","author":"cn-kali-team","tags":"detect,tech,pcitc-remotesystem","severity":"info","metadata":{"product":"pcitc-remotesystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"f-loading-mask ui-widget ui-widget-content\"","src=\"validatecode.aspx\""],"case-insensitive":true}]}]},{"id":"vamcart","info":{"name":"vamcart","author":"cn-kali-team","tags":"detect,tech,vamcart","severity":"info","metadata":{"product":"vamcart","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- powered by: vamcart (http://vamcart.com) -->","<p><a href=\"http://vamcart.com/\">php shopping cart</a> <a href=\"http://vamcart.com/\">vamcart</a></p>","stylesheets/load/vamcart.css\" rel=\"stylesheet\" media=\"screen"],"case-insensitive":true}]}]},{"id":"kamailio-sip-server","info":{"name":"kamailio-sip-server","author":"cn-kali-team","tags":"detect,tech,kamailio-sip-server","severity":"info","metadata":{"product":"kamailio-sip-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: kamailio"],"part":"header","case-insensitive":true}]}]},{"id":"panabit-gateway","info":{"name":"panabit-gateway","author":"cn-kali-team","tags":"detect,tech,panabit-gateway","severity":"info","metadata":{"product":"panabit-gateway","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["forum.panabit.com","pa_iptcode"],"condition":"and","case-insensitive":true},{"type":"word","words":["maintain","panalog"],"condition":"and","case-insensitive":true},{"type":"word","words":["id=\"codeno\"","日志系统"],"condition":"and","case-insensitive":true}]}]},{"id":"phpmybackuppro","info":{"name":"phpmybackuppro","author":"cn-kali-team","tags":"detect,tech,phpmybackuppro","severity":"info","metadata":{"product":"phpmybackuppro","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["please login (use your mysql username and password): <a href=\"index.php?login=true"],"case-insensitive":true}]}]},{"id":"sangfor-reporting","info":{"name":"sangfor-reporting","author":"cn-kali-team","tags":"detect,tech,sangfor-reporting","severity":"info","metadata":{"product":"sangfor-reporting","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ad report","user_blur();"],"case-insensitive":true}]}]},{"id":"e-tiller","info":{"name":"e-tiller","author":"cn-kali-team","tags":"detect,tech,e-tiller","severity":"info","metadata":{"product":"e-tiller","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["reader/view_abstract.aspx","北京勤云"],"case-insensitive":true}]}]},{"id":"gzmwiccard-system","info":{"name":"gzmwiccard-system","author":"cn-kali-team","tags":"detect,tech,gzmwiccard-system","severity":"info","metadata":{"product":"gzmwiccard-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["抄表器驱动tp1100m"],"case-insensitive":true}]}]},{"id":"nalong-system","info":{"name":"nalong-system","author":"cn-kali-team","tags":"detect,tech,nalong-system","severity":"info","metadata":{"product":"nalong-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"ctl00_contentplaceholder1_txthospcode\""],"case-insensitive":true}]}]},{"id":"sentinel-dashboard","info":{"name":"sentinel-dashboard","author":"cn-kali-team","tags":"detect,tech,sentinel-dashboard","severity":"info","metadata":{"product":"sentinel-dashboard","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ng-app=\"sentineldashboardapp\""],"case-insensitive":true}]}]},{"id":"colorfulcube-traffic-management","info":{"name":"colorfulcube-traffic-management","author":"cn-kali-team","tags":"detect,tech,colorfulcube-traffic-management","severity":"info","metadata":{"product":"colorfulcube-traffic-management","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["checkcode.aspx"],"case-insensitive":true}]}]},{"id":"rockoa-oa","info":{"name":"rockoa-oa","author":"cn-kali-team","tags":"detect,tech,rockoa-oa","severity":"info","metadata":{"product":"rockoa-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onclick=\"loginsubmit()\"","信呼开发团队","技术支持:<a href=\"http://www.rockoa.com/\""],"case-insensitive":true}]}]},{"id":"ruijie-rgos","info":{"name":"ruijie-rgos","author":"cn-kali-team","tags":"detect,tech,ruijie-rgos","severity":"info","metadata":{"product":"ruijie-rgos","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: rgos http-server"],"part":"header","case-insensitive":true}]}]},{"id":"guo-mai-dian-zi-an-quan-wen-dang-guan-li-xi-tong","info":{"name":"国迈电子安全文档管理系统","author":"cn-kali-team","tags":"detect,tech,国迈电子安全文档管理系统","severity":"info","metadata":{"product":"国迈电子安全文档管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["</span>国迈安全私有云部. <span>all rights reserved","国迈安全私有云部 all rights reserved"],"condition":"and","case-insensitive":true}]}]},{"id":"twonkyserver","info":{"name":"twonkyserver","author":"cn-kali-team","tags":"detect,tech,twonkyserver","severity":"info","metadata":{"product":"twonkyserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta name=\"description\" content=\"twonkymedia digital home\">"],"case-insensitive":true}]}]},{"id":"lan-hai-zhuo-yue-ji-fei-guan-li-xi-tong","info":{"name":"蓝海卓越计费管理系统","author":"cn-kali-team","tags":"detect,tech,蓝海卓越计费管理系统","severity":"info","metadata":{"product":"蓝海卓越计费管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<script language='javascript'>window.parent.location.href='login.php';</script>"],"case-insensitive":true}]}]},{"id":"guo-biaosip-ping-tai-wang-guan","info":{"name":"国标sip平台网关","author":"cn-kali-team","tags":"detect,tech,国标sip平台网关","severity":"info","metadata":{"product":"国标sip平台网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h5><a href=\"config.htm?file=config.htm\">start page</a></h5>\"???*#e?<?q","sippuaccessserverctx"],"condition":"and","case-insensitive":true}]}]},{"id":"websidestory","info":{"name":"websidestory","author":"cn-kali-team","tags":"detect,tech,websidestory","severity":"info","metadata":{"product":"websidestory","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- websidestory html for search -->","http://websidestory.com","websidestory code","websidestory,inc. all rights reserved. u.s.patent no. 6,393,479b1"],"case-insensitive":true}]}]},{"id":"wavetop-days","info":{"name":"wavetop-days","author":"cn-kali-team","tags":"detect,tech,wavetop-days","severity":"info","metadata":{"product":"wavetop-days","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["application/views/img/logo_wavetop.png"],"case-insensitive":true}]}]},{"id":"uebimiau-webmail","info":{"name":"uebimiau-webmail","author":"cn-kali-team","tags":"detect,tech,uebimiau-webmail","severity":"info","metadata":{"product":"uebimiau-webmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<script type=\"text/javascript\" src=\"themes/default/js/webmail.js\"></script>","uebimiau"],"condition":"and","case-insensitive":true}]}]},{"id":"42gears-suremdm","info":{"name":"42gears-suremdm","author":"cn-kali-team","tags":"detect,tech,42gears-suremdm","severity":"info","metadata":{"product":"42gears-suremdm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["astrocontacts","suremdm"],"condition":"and","case-insensitive":true}]}]},{"id":"filemaker","info":{"name":"filemaker","author":"cn-kali-team","tags":"detect,tech,filemaker","severity":"info","metadata":{"product":"filemaker","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/fmi/iwp/cgi?-noscript"],"case-insensitive":true}]}]},{"id":"east-simulation-nettrmp","info":{"name":"east-simulation-nettrmp","author":"cn-kali-team","tags":"detect,tech,east-simulation-nettrmp","severity":"info","metadata":{"product":"east-simulation-nettrmp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["document.getelementbyid(\"hllogininfo\").click()","nettrmp登录界面"],"case-insensitive":true}]}]},{"id":"letodms","info":{"name":"letodms","author":"cn-kali-team","tags":"detect,tech,letodms","severity":"info","metadata":{"product":"letodms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["letodms free document management system"],"case-insensitive":true}]}]},{"id":"eusestudy","info":{"name":"eusestudy","author":"cn-kali-team","tags":"detect,tech,eusestudy","severity":"info","metadata":{"product":"eusestudy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["userinfo/userfp.aspx"],"case-insensitive":true}]}]},{"id":"fanpusoft-construction-work-oa","info":{"name":"fanpusoft-construction-work-oa","author":"cn-kali-team","tags":"detect,tech,fanpusoft-construction-work-oa","severity":"info","metadata":{"product":"fanpusoft-construction-work-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/dwr/interface/loginservice.js"],"case-insensitive":true}]}]},{"id":"ruijie-eweb","info":{"name":"ruijie-eweb","author":"cn-kali-team","tags":"detect,tech,ruijie-eweb","severity":"info","metadata":{"product":"ruijie-eweb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span class=\"resource\" mark=\"login.copyright\">锐捷网络</span>"],"case-insensitive":true}]}]},{"id":"panabit-panalog","info":{"name":"panabit-panalog","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"panabit-panalog","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["forum.panabit.com","pa_iptcode"],"condition":"and","case-insensitive":true},{"type":"word","words":["maintain","panalog"],"condition":"and","case-insensitive":true},{"type":"word","words":["id=\"codeno\"","日志系统"],"condition":"and","case-insensitive":true}]}]},{"id":"pcitc-sslvpn","info":{"name":"pcitc-sslvpn","author":"cn-kali-team","tags":"detect,tech,pcitc-sslvpn","severity":"info","metadata":{"product":"pcitc-sslvpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"new_style/placeholderfriend.js\""],"case-insensitive":true}]}]},{"id":"leadsec-fang-bing-du-wang-guan-xi-tong","info":{"name":"leadsec-防病毒网关系统","author":"cn-kali-team","tags":"detect,tech,leadsec-防病毒网关系统","severity":"info","metadata":{"product":"leadsec-防病毒网关系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["网御防病毒网关系统"],"case-insensitive":true}]}]},{"id":"confluence","info":{"name":"confluence","author":"cn-kali-team","tags":"detect,tech,confluence","severity":"info","metadata":{"product":"confluence","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: /login.action?os_destination=","x-confluence-request-time:"],"part":"header","condition":"and","case-insensitive":true},{"type":"word","words":["id=\"com-atlassian-confluence","name=\"confluence-base-url\""],"condition":"and","case-insensitive":true}]}]},{"id":"shopsn","info":{"name":"shopsn","author":"cn-kali-team","tags":"detect,tech,shopsn","severity":"info","metadata":{"product":"shopsn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span>shopsn全网开源<a style=\"padding: 0px\" href=\"http://www.shopsn.net","content=\"shopsn","href=\"http://www.shopsn.net\">商城系统</a> 提供技术支持"],"case-insensitive":true}]}]},{"id":"ioa","info":{"name":"ioa","author":"cn-kali-team","tags":"detect,tech,ioa","severity":"info","metadata":{"product":"ioa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"https://www.ioa.cn/official/download.html\" target=\"_blank\">爱办公app</a>","id=\"foot_version\">厦门容能科技有限公司"],"case-insensitive":true}]}]},{"id":"phpwiki","info":{"name":"phpwiki","author":"cn-kali-team","tags":"detect,tech,phpwiki","severity":"info","metadata":{"product":"phpwiki","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by phpwiki"],"case-insensitive":true}]}]},{"id":"yunhezi","info":{"name":"yunhezi","author":"cn-kali-team","tags":"detect,tech,yunhezi","severity":"info","metadata":{"product":"yunhezi","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"client-list dm-clear\">","ui/js/seaconfig.js","ui/skins/black/style.css"],"case-insensitive":true}]}]},{"id":"m2soft-rdserver","info":{"name":"m2soft-rdserver","author":"cn-kali-team","tags":"detect,tech,m2soft-rdserver","severity":"info","metadata":{"product":"m2soft-rdserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: rdserver"],"part":"header","case-insensitive":true}]}]},{"id":"pg-roomate-finder-solution","info":{"name":"pg-roomate-finder-solution","author":"cn-kali-team","tags":"detect,tech,pg-roomate-finder-solution","severity":"info","metadata":{"product":"pg-roomate-finder-solution","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.realtysoft.pro","powered by pg roomate finder solution"],"case-insensitive":true}]}]},{"id":"lie-ying-an-quan-jin-shan-zhong-duan-an-quan-xi-tong","info":{"name":"猎鹰安全-金山终端安全系统","author":"cn-kali-team","tags":"detect,tech,猎鹰安全-金山终端安全系统","severity":"info","metadata":{"product":"猎鹰安全-金山终端安全系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["数据库连接异常您可"],"case-insensitive":true}]}]},{"id":"hphu-system","info":{"name":"hphu-system","author":"cn-kali-team","tags":"detect,tech,hphu-system","severity":"info","metadata":{"product":"hphu-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id='psssdiv'","src='kss_inc/js/jquery.1.3.2.pack.js'"],"condition":"and","case-insensitive":true}]}]},{"id":"webbased-pear-package-manager","info":{"name":"webbased-pear-package-manager","author":"cn-kali-team","tags":"detect,tech,webbased-pear-package-manager","severity":"info","metadata":{"product":"webbased-pear-package-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"?img=pear\" width=\"104\" height=\"50\" vspace=\"2\" hspace=\"5\" alt=\"pear\">","pear_frontend_web"],"case-insensitive":true}]}]},{"id":"cndatacom-smsp","info":{"name":"cndatacom-smsp","author":"cn-kali-team","tags":"detect,tech,cndatacom-smsp","severity":"info","metadata":{"product":"cndatacom-smsp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/smrc/resources/default/"],"case-insensitive":true}]}]},{"id":"consul-hashicorp","info":{"name":"consul-hashicorp","author":"cn-kali-team","tags":"detect,tech,consul-hashicorp","severity":"info","metadata":{"product":"consul-hashicorp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["consul instance","consul-ui/config/environment","consulhost","www.consul.io"],"case-insensitive":true}]}]},{"id":"ms-mfc-httpsvr","info":{"name":"ms-mfc-httpsvr","author":"cn-kali-team","tags":"detect,tech,ms-mfc-httpsvr","severity":"info","metadata":{"product":"ms-mfc-httpsvr","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"i.cgi"],"case-insensitive":true}]}]},{"id":"honeywell-intermec-easylan","info":{"name":"honeywell-intermec-easylan","author":"cn-kali-team","tags":"detect,tech,honeywell-intermec-easylan","severity":"info","metadata":{"product":"honeywell-intermec-easylan","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["color=\"black\" size=\"5\">intermec easylan"],"case-insensitive":true}]}]},{"id":"carizen-rainmail","info":{"name":"carizen-rainmail","author":"cn-kali-team","tags":"detect,tech,carizen-rainmail","severity":"info","metadata":{"product":"carizen-rainmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[".: <b>rainmail intranet login </b> :.</div>","href=\"/resources/rainmailvpninstaller.exe"],"condition":"and","case-insensitive":true}]}]},{"id":"extmail","info":{"name":"extmail","author":"cn-kali-team","tags":"detect,tech,extmail","severity":"info","metadata":{"product":"extmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["setcookie('extmail_username","欢迎使用extmail"],"condition":"and","case-insensitive":true}]}]},{"id":"zte-police-research-system","info":{"name":"zte-police-research-system","author":"cn-kali-team","tags":"detect,tech,zte-police-research-system","severity":"info","metadata":{"product":"zte-police-research-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"img/gonanlogo.jpg","深圳市中兴信息技术有限公司版权所有"],"case-insensitive":true}]}]},{"id":"swagger","info":{"name":"swagger","author":"cn-kali-team","tags":"detect,tech,swagger","severity":"info","metadata":{"product":"swagger","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["swagger ui","swagger-ui.css","swagger-ui.js"],"case-insensitive":true}]}]},{"id":"xinnet-enterprise-mail","info":{"name":"xinnet-enterprise-mail","author":"cn-kali-team","tags":"detect,tech,xinnet-enterprise-mail","severity":"info","metadata":{"product":"xinnet-enterprise-mail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["北京新网数码信息技术有限公司 版权所有</span>"],"case-insensitive":true}]}]},{"id":"fei-yu-xing-an-quan-she-bei","info":{"name":"飞鱼星-安全设备","author":"cn-kali-team","tags":"detect,tech,飞鱼星-安全设备","severity":"info","metadata":{"product":"飞鱼星-安全设备","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cgi-bin/login","languagechange"],"condition":"and","case-insensitive":true}]}]},{"id":"devaldi-flexpaper","info":{"name":"devaldi-flexpaper","author":"cn-kali-team","tags":"detect,tech,devaldi-flexpaper","severity":"info","metadata":{"product":"devaldi-flexpaper","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://flexpaper.devaldi.com/plugins.htm\"","login to the flexpaper console"],"case-insensitive":true}]}]},{"id":"tq-cloud-call-center","info":{"name":"tq-cloud-call-center","author":"cn-kali-team","tags":"detect,tech,tq-cloud-call-center","severity":"info","metadata":{"product":"tq-cloud-call-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tq.cn/floatcard?"],"case-insensitive":true}]}]},{"id":"zhi-yuan-a8n","info":{"name":"致远a8n","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远a8n","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/seeyon/common/images/a8n/favicon.ico"],"case-insensitive":true}]}]},{"id":"pcitc-system","info":{"name":"pcitc-system","author":"cn-kali-team","tags":"detect,tech,pcitc-system","severity":"info","metadata":{"product":"pcitc-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["动设备运行风险分析系统"],"case-insensitive":true}]}]},{"id":"elite_cms","info":{"name":"elite_cms","author":"cn-kali-team","tags":"detect,tech,elite_cms","severity":"info","metadata":{"product":"elite_cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["copyright © 2003 - 2017 <a href=\"http://www.elite-is.com/cmhome.asp"],"case-insensitive":true}]}]},{"id":"ruan-hong-oa","info":{"name":"软虹oa","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"软虹oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["2012 ruaho 版权所有:北京软虹科技.","user_passwords"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["5d01f90a8f3fed7c83152bfce0403c2f"]}]}]},{"id":"haproxy-report","info":{"name":"haproxy-report","author":"cn-kali-team","tags":"detect,tech,haproxy-report","severity":"info","metadata":{"product":"haproxy-report","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["statistics report for haproxy"],"case-insensitive":true}]}]},{"id":"fluxbb","info":{"name":"fluxbb","author":"cn-kali-team","tags":"detect,tech,fluxbb","severity":"info","metadata":{"product":"fluxbb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://fluxbb.org/"],"case-insensitive":true}]}]},{"id":"tian-rong-xin-web-ying-yong-an-quan-fang-hu-xi-tong","info":{"name":"天融信-web应用安全防护系统","author":"cn-kali-team","tags":"detect,tech,天融信-web应用安全防护系统","severity":"info","metadata":{"product":"天融信-web应用安全防护系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"logintop\"","web应用安全防护系统"],"condition":"and","case-insensitive":true}]}]},{"id":"taskfreak","info":{"name":"taskfreak","author":"cn-kali-team","tags":"detect,tech,taskfreak","severity":"info","metadata":{"product":"taskfreak","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.taskfreak.com\">taskfreak"],"case-insensitive":true}]}]},{"id":"hanwei-integrated-business-platform","info":{"name":"hanwei-integrated-business-platform","author":"cn-kali-team","tags":"detect,tech,hanwei-integrated-business-platform","severity":"info","metadata":{"product":"hanwei-integrated-business-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"loginpwdcontiner\"","window.location.href=\"/源头数据资源管理/default/default.aspx\""],"condition":"and","case-insensitive":true},{"type":"word","words":["content=\"microsoft visual studio .net 7.1\"","directlink = \"programstartup.application\"","onclick=\"window.navigate(this.fname);enablesetup();\"","东营汉威石油技术开发有限公司","系统需要.net框架2.0,请点击安装!"],"case-insensitive":true}]}]},{"id":"h3c-secpath-yun-wei-shen-ji-xi-tong","info":{"name":"h3c secpath 运维审计系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"h3c secpath 运维审计系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>登录-h3c secpath 运维审计系统</title>","<span>h3c secpath 运维审计系统</span>"],"case-insensitive":true}]}]},{"id":"jsyhit-system","info":{"name":"jsyhit-system","author":"cn-kali-team","tags":"detect,tech,jsyhit-system","severity":"info","metadata":{"product":"jsyhit-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"仪化产品质量查询系统\""],"case-insensitive":true}]}]},{"id":"sangfor-ipsec-vpn","info":{"name":"sangfor-ipsec-vpn","author":"cn-kali-team","tags":"detect,tech,sangfor-ipsec-vpn","severity":"info","metadata":{"product":"sangfor-ipsec-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sangfor-ipsec"],"case-insensitive":true}]}]},{"id":"chinags-sc","info":{"name":"chinags-sc","author":"cn-kali-team","tags":"detect,tech,chinags-sc","severity":"info","metadata":{"product":"chinags-sc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/animation/images/teacher_2.png\""],"case-insensitive":true}]}]},{"id":"finereport","info":{"name":"finereport","author":"cn-kali-team","tags":"detect,tech,finereport","severity":"info","metadata":{"product":"finereport","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["=fs","reportserver"],"condition":"and","case-insensitive":true},{"type":"word","words":["finereport/decision","content=\"finereport--web reporting tool\""],"case-insensitive":true}]}]},{"id":"lie-ying-an-quan-jin-shanv8-zhong-duan-an-quan-xi-tong","info":{"name":"猎鹰安全-金山v8终端安全系统","author":"cn-kali-team","tags":"detect,tech,猎鹰安全-金山v8终端安全系统","severity":"info","metadata":{"product":"猎鹰安全-金山v8终端安全系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"anouncetext\">为了更好的保障企业内网的安全公司决定从即日起全面部署金山企业安全终端防护优化系统","在线安装-v8+终端安全系统web控制台"],"condition":"and","case-insensitive":true}]}]},{"id":"xin-wang-hu-lian-zhun-xun-you-jian-xi-tong","info":{"name":"新网互联-准讯邮件系统","author":"cn-kali-team","tags":"detect,tech,新网互联-准讯邮件系统","severity":"info","metadata":{"product":"新网互联-准讯邮件系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/webmail//cssv2/tamail.css\"","src=\"cgijson/getloginimg.php?img=logo"],"condition":"and","case-insensitive":true}]}]},{"id":"fortinet-firewall","info":{"name":"fortinet-firewall","author":"cn-kali-team","tags":"detect,tech,fortinet-firewall","severity":"info","metadata":{"product":"fortinet-firewall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["fortitoken","str_table.mail_token_msg"],"condition":"and","case-insensitive":true}]}]},{"id":"salien-software-system","info":{"name":"salien-software-system","author":"cn-kali-team","tags":"detect,tech,salien-software-system","severity":"info","metadata":{"product":"salien-software-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"images/login/msn/favicon.ico\"","北京市时林电脑公司"],"case-insensitive":true}]}]},{"id":"tamronos-iptv-xi-tong","info":{"name":"tamronos iptv系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"tamronos iptv系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["// 您安装tamronos的硬件系统无法满足系统的基本需求条件,继续运行可能会 造成系统无法正常运行","<title>tamronos iptv系统</title>"],"case-insensitive":true}]}]},{"id":"spring-framework-error","info":{"name":"spring-framework-error","author":"cn-kali-team","tags":"detect,tech,spring-framework","severity":"info","metadata":{"product":"spring-framework-error","vendor":"00_unknown","verified":false}},"http":[{"method":"POST","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["\",\"status\":404,\"error\":\"not found\",\"message\":\"no message available\",\"path\":\"/","whitelabel error page"],"case-insensitive":true}]}]},{"id":"ibm-spectrum-computing","info":{"name":"ibm-spectrum-computing","author":"cn-kali-team","tags":"detect,tech,ibm-spectrum-computing","severity":"info","metadata":{"product":"ibm-spectrum-computing","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/platform/framework/logout/logout.action","ssoclient_"],"case-insensitive":true}]}]},{"id":"nexus-repository-manager","info":{"name":"nexus-repository-manager","author":"cn-kali-team","tags":"detect,tech,nexus-repository-manager","severity":"info","metadata":{"product":"nexus-repository-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" nexus repository manager","<title>nexus repository manager</title>","progressmessage('initializing ...')"],"case-insensitive":true}]}]},{"id":"lifesize-control","info":{"name":"lifesize-control","author":"cn-kali-team","tags":"detect,tech,lifesize-control","severity":"info","metadata":{"product":"lifesize-control","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/lifesizecontrol/asp/index.html"],"case-insensitive":true}]}]},{"id":"brocade-data-angle-guard-database","info":{"name":"brocade-data-angle-guard-database","author":"cn-kali-team","tags":"detect,tech,brocade-data-angle-guard-database","severity":"info","metadata":{"product":"brocade-data-angle-guard-database","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location.host + \"/agweb\""],"case-insensitive":true}]}]},{"id":"yonyou-seeyon-oa","info":{"name":"yonyou-seeyon-oa","author":"cn-kali-team","tags":"detect,tech,yonyou-seeyon-oa","severity":"info","metadata":{"product":"yonyou-seeyon-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["seeyon","seeyonproductid"],"condition":"and","case-insensitive":true},{"type":"word","words":["/seeyon/","/seeyon/user-data/images/login/login.gif","/seeyon/common/","/seeyon/user-data/images/login/login.gif","m1-server","m3 server","a8-v5企业版","var _ctxpath = '/seeyon'"],"case-insensitive":true}]}]},{"id":"metasploit","info":{"name":"metasploit","author":"cn-kali-team","tags":"detect,tech,metasploit","severity":"info","metadata":{"product":"metasploit","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["metasploit","r7bottom-strip"],"condition":"and","case-insensitive":true}]}]},{"id":"kerio-mailserver","info":{"name":"kerio-mailserver","author":"cn-kali-team","tags":"detect,tech,kerio-mailserver","severity":"info","metadata":{"product":"kerio-mailserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: kerio mailserver"],"part":"header","case-insensitive":true}]}]},{"id":"dell-open-manage","info":{"name":"dell-open-manage","author":"cn-kali-team","tags":"detect,tech,dell-open-manage","severity":"info","metadata":{"product":"dell-open-manage","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img title=\"open manage\" alt=\"open manage"],"case-insensitive":true}]}]},{"id":"information-operation-and-maintenance-support-system","info":{"name":"information-operation-and-maintenance-support-system","author":"cn-kali-team","tags":"detect,tech,information-operation-and-maintenance-support-system","severity":"info","metadata":{"product":"information-operation-and-maintenance-support-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["placeholder=\"ad域账号 / 系统账号\""],"case-insensitive":true}]}]},{"id":"adt-tpn-2g-wang-guan","info":{"name":"adt-tpn-2g网关","author":"cn-kali-team","tags":"detect,tech,adt-tpn-2g网关","severity":"info","metadata":{"product":"adt-tpn-2g网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"./system/usbkey.js\"","tpn-2g"],"condition":"and","case-insensitive":true}]}]},{"id":"netauth","info":{"name":"netauth","author":"cn-kali-team","tags":"detect,tech,netauth","severity":"info","metadata":{"product":"netauth","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onmouseover=\"mm_swapimage('image1','','image/loginok_after.gif',1)\"","src=\"image/loginauthorize.png\""],"case-insensitive":true}]}]},{"id":"jin-die-apusic-ying-yong-fu-wu-qi","info":{"name":"金蝶apusic应用服务器","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"金蝶apusic应用服务器","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: apusic application server"],"part":"header","case-insensitive":true},{"type":"word","words":["<td>管理apusic应用服务器</td>"],"case-insensitive":true}]}]},{"id":"eisoo-anybackup","info":{"name":"eisoo-anybackup","author":"cn-kali-team","tags":"detect,tech,eisoo-anybackup","severity":"info","metadata":{"product":"eisoo-anybackup","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"topmask\""],"case-insensitive":true}]}]},{"id":"xdebug","info":{"name":"xdebug","author":"cn-kali-team","tags":"detect,tech,xdebug","severity":"info","metadata":{"product":"xdebug","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-xdebug-profile-filename: /"],"part":"header","case-insensitive":true}]}]},{"id":"autoindex-php-script","info":{"name":"autoindex-php-script","author":"cn-kali-team","tags":"detect,tech,autoindex-php-script","severity":"info","metadata":{"product":"autoindex-php-script","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["autoindex.sourceforge.net/","title=\"autoindex default"],"case-insensitive":true},{"type":"word","words":["set-cookie: autoindex2"],"part":"header","case-insensitive":true}]}]},{"id":"yonyou-erp-nc","info":{"name":"yonyou-erp-nc","author":"cn-kali-team","tags":"detect,tech,yonyou-erp-nc","severity":"info","metadata":{"product":"yonyou-erp-nc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/nc/servlet/nc.ui.iufo.login.index"],"case-insensitive":true}]}]},{"id":"power-powerpms","info":{"name":"power-powerpms","author":"cn-kali-team","tags":"detect,tech,power-powerpms","severity":"info","metadata":{"product":"power-powerpms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/app_themes/default/assets/css/style.min.css","/scripts/boot.js","apphub.server.registertohub(qrcodeid)"],"case-insensitive":true}]}]},{"id":"bugfree","info":{"name":"bugfree","author":"cn-kali-team","tags":"detect,tech,bugfree","severity":"info","metadata":{"product":"bugfree","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"loginbgimage\" alt=\"bugfree","id=\"logo\" alt=bugfree"],"case-insensitive":true}]}]},{"id":"differsoft-itsystem","info":{"name":"differsoft-itsystem","author":"cn-kali-team","tags":"detect,tech,differsoft-itsystem","severity":"info","metadata":{"product":"differsoft-itsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"tbzcode\""],"case-insensitive":true}]}]},{"id":"php-csl","info":{"name":"php-csl","author":"cn-kali-team","tags":"detect,tech,php-csl","severity":"info","metadata":{"product":"php-csl","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"php code snippet","title=\"php-csl\">php-csl"],"case-insensitive":true}]}]},{"id":"tongda-oa","info":{"name":"tongda-oa","author":"cn-kali-team","tags":"detect,tech,tongda-oa","severity":"info","metadata":{"product":"tongda-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["login","tongda2000"],"condition":"and","case-insensitive":true},{"type":"word","words":["/images/tongda.ico","/static/templates/2013_01/index.css/","<a href='http://www.tongda2000.com/' target='_black'>通达官网</a>","<link rel=\"shortcut icon\" href=\"/images/tongda.ico\" />","office anywhere","href=\"/static/images/tongda.ico\"","javascript:document.form1.uname.focus()","oa提示:不能登录oa","紧急通知:今日10点停电"],"case-insensitive":true}]}]},{"id":"phxeventmanager","info":{"name":"phxeventmanager","author":"cn-kali-team","tags":"detect,tech,phxeventmanager","severity":"info","metadata":{"product":"phxeventmanager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<td><div class=\"minicalmonth","powered by phxeventmanager","src=\"pem-includes/xajax/xajax_js/xajax_core.js"],"case-insensitive":true}]}]},{"id":"momeeting-movision","info":{"name":"momeeting-movision","author":"cn-kali-team","tags":"detect,tech,momeeting-movision","severity":"info","metadata":{"product":"momeeting-movision","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- 科达视讯云 摩云视讯 电信有区别 -->","class=\"meeting movision\"","document.title=\"登录-摩云视讯\""],"case-insensitive":true}]}]},{"id":"mojarra-jsf","info":{"name":"mojarra-jsf","author":"cn-kali-team","tags":"detect,tech,mojarra-jsf","severity":"info","metadata":{"product":"mojarra-jsf","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<input type=\"hidden\" name=\"javax.faces.viewstate"],"case-insensitive":true}]}]},{"id":"kerio-webstar","info":{"name":"kerio-webstar","author":"cn-kali-team","tags":"detect,tech,kerio-webstar","severity":"info","metadata":{"product":"kerio-webstar","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: kerio_webstar","server: webstar"],"part":"header","case-insensitive":true}]}]},{"id":"epiware","info":{"name":"epiware","author":"cn-kali-team","tags":"detect,tech,epiware","severity":"info","metadata":{"product":"epiware","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["epiware - project and document management"],"case-insensitive":true}]}]},{"id":"citrix-web-pn-server","info":{"name":"citrix-web-pn-server","author":"cn-kali-team","tags":"detect,tech,citrix-web-pn-server","severity":"info","metadata":{"product":"citrix-web-pn-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: citrix web pn server"],"part":"header","case-insensitive":true}]}]},{"id":"avtech-video-web-server","info":{"name":"avtech-video-web-server","author":"cn-kali-team","tags":"detect,tech,avtech-video-web-server","severity":"info","metadata":{"product":"avtech-video-web-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["ed8cf53ef6836184587ee3a987be074a"]},{"type":"word","words":["/av732e/setup.exe","<title>remote surveillance, any time & any where</title>","please visit 'www.avtech.com.tw'"],"case-insensitive":true}]}]},{"id":"huawei-fusioncloud-desktop","info":{"name":"huawei-fusioncloud-desktop","author":"cn-kali-team","tags":"detect,tech,huawei-fusioncloud-desktop","severity":"info","metadata":{"product":"huawei-fusioncloud-desktop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=/webui/default/img/logo.ico","huawei"],"condition":"and","case-insensitive":true}]}]},{"id":"infogo-imc","info":{"name":"infogo-imc","author":"cn-kali-team","tags":"detect,tech,infogo-imc","severity":"info","metadata":{"product":"infogo-imc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["client_check/js/global.js"],"case-insensitive":true}]}]},{"id":"bamboocloud-bim","info":{"name":"bamboocloud-bim","author":"cn-kali-team","tags":"detect,tech,bamboocloud-bim","severity":"info","metadata":{"product":"bamboocloud-bim","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["bim 开发配置与运维控制台"],"case-insensitive":true}]}]},{"id":"deshang-dsmall","info":{"name":"deshang-dsmall","author":"cn-kali-team","tags":"detect,tech,deshang-dsmall","severity":"info","metadata":{"product":"deshang-dsmall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/static/plugins/js/dialog/dialog.js\" id=\"dialog_js\""],"case-insensitive":true}]}]},{"id":"wantit-erp","info":{"name":"wantit-erp","author":"cn-kali-team","tags":"detect,tech,wantit-erp","severity":"info","metadata":{"product":"wantit-erp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/javascript/js/witfunctions.js"],"case-insensitive":true}]}]},{"id":"spark-history-server","info":{"name":"spark-history-server","author":"cn-kali-team","tags":"detect,tech,spark-history-server","severity":"info","metadata":{"product":"spark-history-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/static/historypage-common.js\">"],"case-insensitive":true}]}]},{"id":"iredmail","info":{"name":"iredmail","author":"cn-kali-team","tags":"detect,tech,iredmail","severity":"info","metadata":{"product":"iredmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["iredadmin"],"case-insensitive":true}]}]},{"id":"creatsoft-safesystem","info":{"name":"creatsoft-safesystem","author":"cn-kali-team","tags":"detect,tech,creatsoft-safesystem","severity":"info","metadata":{"product":"creatsoft-safesystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"javascript:update_news('board/noticelist.jsp')"],"case-insensitive":true}]}]},{"id":"infopro-system","info":{"name":"infopro-system","author":"cn-kali-team","tags":"detect,tech,infopro-system","severity":"info","metadata":{"product":"infopro-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<input type=\"submit\" name=\"cmdsubmit\" value=\" 登 录 \" onclick=\"javascript:webform_dopostbackwithoptions(new webform_postbackoptions("cmdsubmit", "", true, "", "", false, false))\" id=\"cmdsubmit\" class=\"colorbutton"],"case-insensitive":true}]}]},{"id":"e-plugger-srm","info":{"name":"e-plugger-srm","author":"cn-kali-team","tags":"detect,tech,e-plugger-srm","severity":"info","metadata":{"product":"e-plugger-srm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["lan12-jingbian-hong","科研管理系统,北京易普拉格科技"],"condition":"and","case-insensitive":true}]}]},{"id":"quixplorer","info":{"name":"quixplorer","author":"cn-kali-team","tags":"detect,tech,quixplorer","severity":"info","metadata":{"product":"quixplorer","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["target=\"_blank\">the quix project</a></small>"],"case-insensitive":true}]}]},{"id":"pbootcms","info":{"name":"pbootcms","author":"cn-kali-team","tags":"detect,tech,pbootcms","severity":"info","metadata":{"product":"pbootcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["set-cookie: pbootsystem="],"part":"header","case-insensitive":true}]}]},{"id":"huawei-inner-web","info":{"name":"huawei-inner-web","author":"cn-kali-team","tags":"detect,tech,huawei-inner-web","severity":"info","metadata":{"product":"huawei-inner-web","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hidden_frame.html"],"case-insensitive":true}]}]},{"id":"wei-san-yun-guan-li-xi-tong","info":{"name":"微三云管理系统","author":"cn-kali-team","tags":"detect,tech,微三云管理系统","severity":"info","metadata":{"product":"微三云管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<dd>管理系统 management system</dd>"],"case-insensitive":true}]}]},{"id":"yelala","info":{"name":"yelala","author":"cn-kali-team","tags":"detect,tech,yelala","severity":"info","metadata":{"product":"yelala","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/public/js/knockout-3.4.1.debug.js","<form action=\"/index.php/home/login/login.html\" method=\"post\" id=\"login\" class=\"form\" data-bind=\"submit: submitform\">"],"case-insensitive":true}]}]},{"id":"marcopacs-product","info":{"name":"marcopacs-product","author":"cn-kali-team","tags":"detect,tech,marcopacs-product","severity":"info","metadata":{"product":"marcopacs-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["data-redirect=\"account/systemconfiguration.aspx\""],"case-insensitive":true}]}]},{"id":"nsfocus-sg-an-quan-wang-guan","info":{"name":"nsfocus-sg安全网关","author":"cn-kali-team","tags":"detect,tech,nsfocus-sg安全网关","severity":"info","metadata":{"product":"nsfocus-sg安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/login_logo_sg_zh_cn.png"],"case-insensitive":true}]}]},{"id":"business-system","info":{"name":"business-system","author":"cn-kali-team","tags":"detect,tech,business-system","severity":"info","metadata":{"product":"business-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["function hiddenpass(e)","function omiga_window(url)","function updatapipeline(pipelinename)","images/login_d.png","onsubmit=\"return checksubmit()","window.location=contextpath+\"/work/index.jsp\""],"case-insensitive":true}]}]},{"id":"wat-system","info":{"name":"wat-system","author":"cn-kali-team","tags":"detect,tech,wat-system","severity":"info","metadata":{"product":"wat-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["生产经营计划统计一体化管理信息系统安装程序"],"case-insensitive":true}]}]},{"id":"vmware-vsphere-web-client","info":{"name":"vmware-vsphere-web-client","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"vmware-vsphere-web-client","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>vsphere web client</title>"],"case-insensitive":true}]}]},{"id":"apache-archiva","info":{"name":"apache-archiva","author":"cn-kali-team","tags":"detect,tech,apache-archiva","severity":"info","metadata":{"product":"apache-archiva","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/archiva.css","/archiva.js"],"case-insensitive":true}]}]},{"id":"arl","info":{"name":"arl","author":"cn-kali-team","tags":"detect,tech,arl","severity":"info","metadata":{"product":"arl","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>资产灯塔系统</title>"],"case-insensitive":true}]}]},{"id":"zte-zxsec-tong-yi-an-quan-wang-guan","info":{"name":"zte-zxsec统一安全网关","author":"cn-kali-team","tags":"detect,tech,zte-zxsec统一安全网关","severity":"info","metadata":{"product":"zte-zxsec统一安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["welcome to login gateway system","安全网关"],"condition":"and","case-insensitive":true}]}]},{"id":"cisco-expressway","info":{"name":"cisco-expressway","author":"cn-kali-team","tags":"detect,tech,cisco-expressway","severity":"info","metadata":{"product":"cisco-expressway","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["expressway-e</legend>"],"case-insensitive":true}]}]},{"id":"nitc-cms","info":{"name":"nitc-cms","author":"cn-kali-team","tags":"detect,tech,nitc-cms","severity":"info","metadata":{"product":"nitc-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/images/nitc1.png","nitc web marketing service"],"condition":"and","case-insensitive":true}]}]},{"id":"kingsoft-duba-enterprise","info":{"name":"kingsoft-duba-enterprise","author":"cn-kali-team","tags":"detect,tech,kingsoft-duba-enterprise","severity":"info","metadata":{"product":"kingsoft-duba-enterprise","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"title\">关于全网部署金山毒霸企业版"],"case-insensitive":true}]}]},{"id":"help-desk-software","info":{"name":"help-desk-software","author":"cn-kali-team","tags":"detect,tech,help-desk-software","severity":"info","metadata":{"product":"help-desk-software","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["target=\"_blank\">freehelpdesk.org"],"case-insensitive":true}]}]},{"id":"aidex","info":{"name":"aidex","author":"cn-kali-team","tags":"detect,tech,aidex","severity":"info","metadata":{"product":"aidex","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http://www.aidex.de/"],"case-insensitive":true}]}]},{"id":"hybrid-cluster","info":{"name":"hybrid-cluster","author":"cn-kali-team","tags":"detect,tech,hybrid-cluster","severity":"info","metadata":{"product":"hybrid-cluster","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: hybrid cluster"],"part":"header","case-insensitive":true}]}]},{"id":"soffice","info":{"name":"soffice","author":"cn-kali-team","tags":"detect,tech,soffice","severity":"info","metadata":{"product":"soffice","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>soffice登录</title>"],"case-insensitive":true}]}]},{"id":"easyscp","info":{"name":"easyscp","author":"cn-kali-team","tags":"detect,tech,easyscp","severity":"info","metadata":{"product":"easyscp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/css/easyscp.login.css","content='easyscp"],"condition":"and","case-insensitive":true}]}]},{"id":"kyan-design","info":{"name":"kyan-design","author":"cn-kali-team","tags":"detect,tech,kyan-design","severity":"info","metadata":{"product":"kyan-design","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta name='author' content='http://www.kyanmedia.com'>"],"case-insensitive":true}]}]},{"id":"v2-video-conferencing","info":{"name":"v2-video-conferencing","author":"cn-kali-team","tags":"detect,tech,v2-video-conferencing","severity":"info","metadata":{"product":"v2-video-conferencing","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<frame src=\"../conference/currentconfaction.do","src=\"content.jsp\""],"case-insensitive":true}]}]},{"id":"rising-antivirus-online","info":{"name":"rising-antivirus-online","author":"cn-kali-team","tags":"detect,tech,rising-antivirus-online","severity":"info","metadata":{"product":"rising-antivirus-online","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"ravweb_files/"],"case-insensitive":true}]}]},{"id":"ultra_electronics","info":{"name":"ultra_electronics","author":"cn-kali-team","tags":"detect,tech,ultra_electronics","severity":"info","metadata":{"product":"ultra_electronics","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/preauth/login.cgi","/preauth/style.css"],"case-insensitive":true}]}]},{"id":"zkteco-system","info":{"name":"zkteco-system","author":"cn-kali-team","tags":"detect,tech,zkteco-system","severity":"info","metadata":{"product":"zkteco-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"m-btn zkgreen rnd\""],"case-insensitive":true}]}]},{"id":"claroline","info":{"name":"claroline","author":"cn-kali-team","tags":"detect,tech,claroline","severity":"info","metadata":{"product":"claroline","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http://www.claroline.net\" rel=\"copyright","target=\"_blank\">claroline</a>"],"case-insensitive":true}]}]},{"id":"gossamer-forum","info":{"name":"gossamer-forum","author":"cn-kali-team","tags":"detect,tech,gossamer-forum","severity":"info","metadata":{"product":"gossamer-forum","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"gforum.cgi?username="],"case-insensitive":true}]}]},{"id":"ibm_openadmin_tool","info":{"name":"ibm_openadmin_tool","author":"cn-kali-team","tags":"detect,tech,ibm_openadmin_tool","severity":"info","metadata":{"product":"ibm_openadmin_tool","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"oat oneui\""],"case-insensitive":true}]}]},{"id":"kindeditor","info":{"name":"kindeditor","author":"cn-kali-team","tags":"detect,tech,kindeditor","severity":"info","metadata":{"product":"kindeditor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["k.create","kindeditor-min.js"],"condition":"and","case-insensitive":true},{"type":"word","words":["kindeditor.js","kindeditor.ready"],"case-insensitive":true}]}]},{"id":"kuaipu-m6","info":{"name":"kuaipu-m6","author":"cn-kali-team","tags":"detect,tech,kuaipu-m6","severity":"info","metadata":{"product":"kuaipu-m6","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"resource/javascript/jkpm6.datetime.js"],"case-insensitive":true}]}]},{"id":"xampp","info":{"name":"xampp","author":"cn-kali-team","tags":"detect,tech,xampp","severity":"info","metadata":{"product":"xampp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"xampp ","font-size: 1.2em; color: red;\">new xampp"],"case-insensitive":true}]}]},{"id":"opzoon-an-quan-wang-guan","info":{"name":"opzoon-安全网关","author":"cn-kali-team","tags":"detect,tech,opzoon-安全网关","severity":"info","metadata":{"product":"opzoon-安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var opzoon_ver = document.getelementbyid(\"opzoon_version\""],"case-insensitive":true}]}]},{"id":"hoperun-hr","info":{"name":"hoperun-hr","author":"cn-kali-team","tags":"detect,tech,hoperun-hr","severity":"info","metadata":{"product":"hoperun-hr","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>考核评测系统</title>"],"case-insensitive":true}]}]},{"id":"h3cer3200","info":{"name":"h3cer3200","author":"cn-kali-team","tags":"detect,tech,h3cer3200","severity":"info","metadata":{"product":"h3cer3200","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["er3200","h3c.com","home.asp"],"condition":"and","case-insensitive":true}]}]},{"id":"phpoa","info":{"name":"phpoa","author":"cn-kali-team","tags":"detect,tech,phpoa","severity":"info","metadata":{"product":"phpoa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["admin_img/msg_bg.png","url(template/default/images/admin_img/msg.png)"],"case-insensitive":true}]}]},{"id":"21grid","info":{"name":"21grid","author":"cn-kali-team","tags":"detect,tech,21grid","severity":"info","metadata":{"product":"21grid","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["技术支持:网格(福建)智能科技有限公司"],"case-insensitive":true}]}]},{"id":"sucuri","info":{"name":"sucuri","author":"cn-kali-team","tags":"detect,tech,sucuri","severity":"info","metadata":{"product":"sucuri","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["[email protected]","sucuri website firewall - cloudproxy - access denied"],"case-insensitive":true}]}]},{"id":"authine-h3-bpm","info":{"name":"authine-h3-bpm","author":"cn-kali-team","tags":"detect,tech,authine-h3-bpm","severity":"info","metadata":{"product":"authine-h3-bpm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["h3 bpm suite信息化的最佳实践"],"case-insensitive":true}]}]},{"id":"ispcp-omega","info":{"name":"ispcp-omega","author":"cn-kali-team","tags":"detect,tech,ispcp-omega","severity":"info","metadata":{"product":"ispcp-omega","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["set-cookie: ispcp"],"part":"header","case-insensitive":true}]}]},{"id":"suncere-system","info":{"name":"suncere-system","author":"cn-kali-team","tags":"detect,tech,suncere-system","severity":"info","metadata":{"product":"suncere-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["技术支持:广东旭诚科技有限公司"],"case-insensitive":true}]}]},{"id":"zhi-yuan-m3-server-v2.0","info":{"name":"致远m3 server v2.0","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远m3 server v2.0","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/mobile_portal/api/m3/core/server/service","<title>m3 server v2.0</title>"],"case-insensitive":true}]}]},{"id":"jumpserver-fortres-machine","info":{"name":"jumpserver-fortres-machine","author":"cn-kali-team","tags":"detect,tech,jumpserver-fortres-machine","severity":"info","metadata":{"product":"jumpserver-fortres-machine","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<input type=\"password\" class=\"form-control\" name=\"password\" placeholder=\"密码\" required=\"\">","csrfmiddlewaretoken"],"condition":"and","case-insensitive":true}]}]},{"id":"cloudroom-meeting","info":{"name":"cloudroom-meeting","author":"cn-kali-team","tags":"detect,tech,cloudroom-meeting","severity":"info","metadata":{"product":"cloudroom-meeting","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/companyimage/agents/sdk-logo.png\""],"case-insensitive":true}]}]},{"id":"tmailer_suite-tmailer-you-jian-xi-tong","info":{"name":"tmailer_suite-tmailer邮件系统","author":"cn-kali-team","tags":"detect,tech,tmailer_suite-tmailer邮件系统","severity":"info","metadata":{"product":"tmailer_suite-tmailer邮件系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"tmailer","tmailer"],"condition":"and","case-insensitive":true}]}]},{"id":"lkpoweroa","info":{"name":"lkpoweroa","author":"cn-kali-team","tags":"detect,tech,lkpoweroa","severity":"info","metadata":{"product":"lkpoweroa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/lksys_windowcontrolscript.js","hhctrlmax","id=\"lkblogin\" href=\"javascript:__dopostback('lkblogin','')","identityvalidator","onload=\"lksys_pubmaxwin()"],"case-insensitive":true}]}]},{"id":"esyndicat","info":{"name":"esyndicat","author":"cn-kali-team","tags":"detect,tech,esyndicat","severity":"info","metadata":{"product":"esyndicat","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"esyndicat"],"case-insensitive":true}]}]},{"id":"mongoexpress","info":{"name":"mongoexpress","author":"cn-kali-team","tags":"detect,tech,mongoexpress","severity":"info","metadata":{"product":"mongoexpress","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mongo express","mongo-express-logo.png"],"condition":"and","case-insensitive":true}]}]},{"id":"tian-rong-xin-web-ying-yong-an-quan-wang-guan","info":{"name":"天融信-web应用安全网关","author":"cn-kali-team","tags":"detect,tech,天融信-web应用安全网关","severity":"info","metadata":{"product":"天融信-web应用安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["this.src='/style/images/rand.php?update=1'","天融信web应用安全网关"],"condition":"and","case-insensitive":true}]}]},{"id":"tian-rong-xin-an-quan-shen-ji","info":{"name":"天融信-安全审计","author":"cn-kali-team","tags":"detect,tech,天融信-安全审计","severity":"info","metadata":{"product":"天融信-安全审计","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<p>安全审计</p>","<title>topsec单点登录系统"],"condition":"and","case-insensitive":true}]}]},{"id":"micro-portal","info":{"name":"micro-portal","author":"cn-kali-team","tags":"detect,tech,micro-portal","severity":"info","metadata":{"product":"micro-portal","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/tpl/home/weimeng/common/css/"],"case-insensitive":true}]}]},{"id":"victorysoft-performance-management-system","info":{"name":"victorysoft-performance-management-system","author":"cn-kali-team","tags":"detect,tech,victorysoft-performance-management-system","severity":"info","metadata":{"product":"victorysoft-performance-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["casui/themes/siam/login.css","class=\"row fl-controls-left"],"case-insensitive":true}]}]},{"id":"jumpserver","info":{"name":"jumpserver","author":"cn-kali-team","tags":"detect,tech,jumpserver","severity":"info","metadata":{"product":"jumpserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["20334371817c7368907b5ea52aab2d9e"]},{"type":"word","words":["jumpserver"],"case-insensitive":true}]}]},{"id":"seller-shi-zi-yu-guan-li-hou-tai","info":{"name":"seller-狮子鱼管理后台","author":"cn-kali-team","tags":"detect,tech,seller-狮子鱼管理后台","severity":"info","metadata":{"product":"seller-狮子鱼管理后台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["seller.php?s=/public/login"],"case-insensitive":true}]}]},{"id":"xcyg-system","info":{"name":"xcyg-system","author":"cn-kali-team","tags":"detect,tech,xcyg-system","severity":"info","metadata":{"product":"xcyg-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[">digital anywhere platform</h2>"],"case-insensitive":true}]}]},{"id":"listserv","info":{"name":"listserv","author":"cn-kali-team","tags":"detect,tech,listserv","severity":"info","metadata":{"product":"listserv","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>welcome to listserv","powered by the listserv email list manager"],"case-insensitive":true}]}]},{"id":"360-tian-di-xin-yi-dai-zhi-hui-fang-huo-qiang","info":{"name":"360天堤新一代智慧防火墙","author":"cn-kali-team","tags":"detect,tech,360天堤新一代智慧防火墙","severity":"info","metadata":{"product":"360天堤新一代智慧防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["360天堤"],"case-insensitive":true}]}]},{"id":"microsoft-exchange","info":{"name":"microsoft-exchange","author":"cn-kali-team","tags":"detect,tech,microsoft-exchange","severity":"info","metadata":{"product":"microsoft-exchange","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: /owa/","server: microsoft"],"part":"header","condition":"and","case-insensitive":true},{"type":"word","words":["<div class=\"signinheader\">outlook</div>","owalogocontainer"],"condition":"and","case-insensitive":true},{"type":"word","words":["/owa/","owapage = asp.auth_logon_aspx"],"condition":"and","case-insensitive":true},{"type":"word","words":["/owa/","showpasswordcheck"],"condition":"and","case-insensitive":true},{"type":"word","words":["/exchweb/bin/auth/owalogon.asp","/exchweb/bin/auth/owalogon.asp?url=","<!-- owapage = asp.auth_logon_aspx","<div class=\"signinheader\">outlook</div>","<meta http-equiv=\"refresh\" content=\"0;url=/owa\">","href=\"/owa/auth/","themes/resources/segoeui-semibold.ttf","window.location.replace(\"/owa/\" + window.location.hash);</script></head><body></body>"],"case-insensitive":true}]}]},{"id":"hikvision-ip-wang-luo-dui-jiang-guang-bo-xi-tong","info":{"name":"hikvision-ip网络对讲广播系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"hikvision-ip网络对讲广播系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/android|webos|iphone|ipod|blackberry/i.test(navigator.useragent)","vendors/toastr-master/build/toastr.min.js"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["e854b2eaa9e4685a95d8052d5e3165bc"]}]}]},{"id":"freakauth","info":{"name":"freakauth","author":"cn-kali-team","tags":"detect,tech,freakauth","severity":"info","metadata":{"product":"freakauth","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["set-cookie: freakauth"],"part":"header","case-insensitive":true}]}]},{"id":"statusnet","info":{"name":"statusnet","author":"cn-kali-team","tags":"detect,tech,statusnet","severity":"info","metadata":{"product":"statusnet","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<p>this site is powered by <a href=\"http://status.net/\">statusnet</a> version","it runs the <a href=\"http://status.net/\">statusnet</a> microblogging software, version "],"case-insensitive":true}]}]},{"id":"sovell-shop-api","info":{"name":"雄伟科技餐厅数字化综合管理平台-前台api","author":"jlkl","tags":"detect,tech,sovell-shop-api","severity":"info","metadata":{"product":"sovell-shop-api","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sovell shop api"],"case-insensitive":true}]}]},{"id":"anchiva-xia-yi-dai-fang-huo-qiang","info":{"name":"anchiva-下一代防火墙","author":"cn-kali-team","tags":"detect,tech,anchiva-下一代防火墙","severity":"info","metadata":{"product":"anchiva-下一代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["安信华下一代防火墙"],"case-insensitive":true}]}]},{"id":"manageengine-applications-manager","info":{"name":"manageengine-applications-manager","author":"cn-kali-team","tags":"detect,tech,manageengine-applications-manager","severity":"info","metadata":{"product":"manageengine-applications-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/appmanager.js"],"case-insensitive":true}]}]},{"id":"dotproject","info":{"name":"dotproject","author":"cn-kali-team","tags":"detect,tech,dotproject","severity":"info","metadata":{"product":"dotproject","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/images/dp_icon.gif"],"case-insensitive":true}]}]},{"id":"hubspot","info":{"name":"hubspot","author":"cn-kali-team","tags":"detect,tech,hubspot","severity":"info","metadata":{"product":"hubspot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["js.hubspot.com/analytics"],"case-insensitive":true}]}]},{"id":"phpmybible","info":{"name":"phpmybible","author":"cn-kali-team","tags":"detect,tech,phpmybible","severity":"info","metadata":{"product":"phpmybible","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class='chaphead'>"],"case-insensitive":true}]}]},{"id":"photopost-php","info":{"name":"photopost-php","author":"cn-kali-team","tags":"detect,tech,photopost-php","severity":"info","metadata":{"product":"photopost-php","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.photopost.com\">photopost","src=\"adm-misc.php?admact=mainmenu"],"case-insensitive":true}]}]},{"id":"olat","info":{"name":"olat","author":"cn-kali-team","tags":"detect,tech,olat","severity":"info","metadata":{"product":"olat","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"olat","content=\"olat - online learning and training","content=\"olat 是一个学习内容管理系统 (lcms).","href=\"/olat/raw/","o_info.uriprefix=\"/olat/dmz/\";","title=\"homepage of open source lms olat"],"case-insensitive":true}]}]},{"id":"seo-panel","info":{"name":"seo-panel","author":"cn-kali-team","tags":"detect,tech,seo-panel","severity":"info","metadata":{"product":"seo-panel","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var wantproceed = 'do you really want to proceed?';","var wantproceed = 'wollen sie wirklich fortfahren?';"],"condition":"and","case-insensitive":true},{"type":"word","words":["<p class=\"note error\">javascript is turned off in your web browser. turn it on to take full advantage of this site, then refresh the page.</p>"],"case-insensitive":true}]}]},{"id":"gm-electronic-security-document-management-system","info":{"name":"gm-electronic-security-document-management-system","author":"cn-kali-team","tags":"detect,tech,gm-electronic-security-document-management-system","severity":"info","metadata":{"product":"gm-electronic-security-document-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["</span>国迈安全私有云部. <span>all rights reserved","国迈安全私有云部 all rights reserved"],"case-insensitive":true}]}]},{"id":"vpn358system","info":{"name":"vpn358system","author":"cn-kali-team","tags":"detect,tech,vpn358system","severity":"info","metadata":{"product":"vpn358system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"form-actions j_add_ip_actions\"","href=\"/lib/bootstrap/ico/favicon.ico\""],"condition":"and","case-insensitive":true}]}]},{"id":"staragent","info":{"name":"staragent","author":"cn-kali-team","tags":"detect,tech,staragent","severity":"info","metadata":{"product":"staragent","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/aisc/aisc.css","window.location = \"/user/home.jsx\";"],"case-insensitive":true}]}]},{"id":"sourcecode-k2","info":{"name":"sourcecode-k2","author":"cn-kali-team","tags":"detect,tech,sourcecode-k2","severity":"info","metadata":{"product":"sourcecode-k2","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["document.getelementbyid(\"redirectform\").action = \"../mxworkspace/login.aspx","document.getelementbyid(\"redirectform\").action = \"../workspace/default.aspx"],"case-insensitive":true}]}]},{"id":"fortinet-fortigate","info":{"name":"fortinet-fortigate","author":"cn-kali-team","tags":"detect,tech,fortinet-fortigate","severity":"info","metadata":{"product":"fortinet-fortigate","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["top.location=window.location;top.location=\"/remote/login\";"],"case-insensitive":true}]}]},{"id":"cisco-iox","info":{"name":"cisco-iox","author":"cn-kali-team","tags":"detect,tech,cisco-iox","severity":"info","metadata":{"product":"cisco-iox","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var g_url_version = \"/iox/api/v2\""],"case-insensitive":true}]}]},{"id":"abt-shen-du-an-quan-wang-guan","info":{"name":"abt-深度安全网关","author":"cn-kali-team","tags":"detect,tech,abt-深度安全网关","severity":"info","metadata":{"product":"abt-深度安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["安博通应用网关","安博通深度安全网关"],"condition":"and","case-insensitive":true}]}]},{"id":"teleradiology-telrads","info":{"name":"teleradiology-telrads","author":"cn-kali-team","tags":"detect,tech,teleradiology-telrads","severity":"info","metadata":{"product":"teleradiology-telrads","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["https://clients.telrads.com/css/feedback.css"],"case-insensitive":true}]}]},{"id":"wstmart","info":{"name":"wstmart","author":"cn-kali-team","tags":"detect,tech,wstmart","severity":"info","metadata":{"product":"wstmart","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/wstmart/home/","powered by wstmart"],"case-insensitive":true}]}]},{"id":"cgit","info":{"name":"cgit","author":"cn-kali-team","tags":"detect,tech,cgit","severity":"info","metadata":{"product":"cgit","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id='cgit'>","content='cgit","href='/cgit.css'/>"],"case-insensitive":true}]}]},{"id":"mlflow","info":{"name":"mlflow","author":"cn-kali-team","tags":"detect,tech,mlflow","severity":"info","metadata":{"product":"mlflow","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>mlflow</title>"],"case-insensitive":true}]}]},{"id":"vertx","info":{"name":"vertx","author":"cn-kali-team","tags":"detect,tech,vertx","severity":"info","metadata":{"product":"vertx","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["set-cookie: vertx-web.session"],"part":"header","case-insensitive":true}]}]},{"id":"fang-biao-csmail","info":{"name":"方标-csmail","author":"cn-kali-team","tags":"detect,tech,方标-csmail","severity":"info","metadata":{"product":"方标-csmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<frame src=\"/mainframe_zh-cn.html\" />"],"case-insensitive":true}]}]},{"id":"jin-die-yun-xing-kong","info":{"name":"金蝶云星空","author":"cn-kali-team","tags":"detect,tech,金蝶云星空","severity":"info","metadata":{"product":"金蝶云星空","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/clientbin/kingdee.bos.xpf.app.xap","html5/content/themes/kdcss.min.css"],"case-insensitive":true}]}]},{"id":"anymacro-you-jian-xi-tong","info":{"name":"anymacro-邮件系统","author":"cn-kali-team","tags":"detect,tech,anymacro-邮件系统","severity":"info","metadata":{"product":"anymacro-邮件系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["document.aa.f_email"],"case-insensitive":true}]}]},{"id":"zentao-system","info":{"name":"zentao-system","author":"cn-kali-team","tags":"detect,tech,zentao-system","severity":"info","metadata":{"product":"zentao-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["b1d3deb4bd16c8c1637235515deea114"]},{"type":"word","words":["powered by <a href='http://www.zentao.net' target='_blank'>zentaopms","welcome to use zentao!"],"condition":"and","case-insensitive":true},{"type":"word","words":["$('#zentao').addclass('btn-success');","href='/zentao/favicon.ico","server: cpws","zentao/theme"],"case-insensitive":true},{"type":"word","words":["set-cookie: zentaosid"],"part":"header","case-insensitive":true}]}]},{"id":"php-support-tickets","info":{"name":"php-support-tickets","author":"cn-kali-team","tags":"detect,tech,php-support-tickets","severity":"info","metadata":{"product":"php-support-tickets","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"triangle solutions ltd","title=\"php support tickets\">php support tickets"],"case-insensitive":true}]}]},{"id":"mvmmall","info":{"name":"mvmmall","author":"cn-kali-team","tags":"detect,tech,mvmmall","severity":"info","metadata":{"product":"mvmmall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"mvmmall","content=\"www.mvmmall.cn\""],"case-insensitive":true}]}]},{"id":"landray-oa","info":{"name":"landray-oa","author":"cn-kali-team","tags":"detect,tech,landray-oa","severity":"info","metadata":{"product":"landray-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["302464c3f6207d57240649926cfc7bd4"]},{"type":"word","words":["lui_login_message_td"],"case-insensitive":true}]}]},{"id":"vnc-enterprise","info":{"name":"vnc-enterprise-","author":"cn-kali-team","tags":"detect,tech,vnc-enterprise-","severity":"info","metadata":{"product":"vnc-enterprise-","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: vnc server enterprise edition"],"part":"header","case-insensitive":true}]}]},{"id":"cisco-ssl-vpn","info":{"name":"cisco-ssl-vpn","author":"cn-kali-team","tags":"detect,tech,cisco-ssl-vpn","severity":"info","metadata":{"product":"cisco-ssl-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["set-cookie: webvpncontext="],"part":"header","case-insensitive":true}]}]},{"id":"support-incident-tracker","info":{"name":"support-incident-tracker","author":"cn-kali-team","tags":"detect,tech,support-incident-tracker","severity":"info","metadata":{"product":"support-incident-tracker","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class='windowtitle'>sit! - login</div>","content=\"sit! support incident tracker"],"case-insensitive":true}]}]},{"id":"xiaomayi","info":{"name":"xiaomayi","author":"cn-kali-team","tags":"detect,tech,xiaomayi","severity":"info","metadata":{"product":"xiaomayi","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/template/ant/css/anthomecomm.css"],"case-insensitive":true}]}]},{"id":"h3c-web-managerment-home","info":{"name":"h3c-web-managerment-home","author":"cn-kali-team","tags":"detect,tech,h3c-web-managerment-home","severity":"info","metadata":{"product":"h3c-web-managerment-home","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wnm/ssl/web/frame/login.html"],"case-insensitive":true}]}]},{"id":"wildfly-server","info":{"name":"wildfly-server","author":"cn-kali-team","tags":"detect,tech,wildfly-server","severity":"info","metadata":{"product":"wildfly-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wildfly project"],"case-insensitive":true}]}]},{"id":"timelink","info":{"name":"timelink","author":"cn-kali-team","tags":"detect,tech,timelink","severity":"info","metadata":{"product":"timelink","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<link rel=\"shortcut icon\" type=\"image/png\" href=\"/timelink/images/favicon.ico\"/>","link international corp. all rights reserved"],"case-insensitive":true}]}]},{"id":"southidc","info":{"name":"southidc","author":"cn-kali-team","tags":"detect,tech,southidc","severity":"info","metadata":{"product":"southidc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/southidcj2f.js","/southidckefu.js","content=\"copyright 2003-2015 - southidc.net"],"case-insensitive":true}]}]},{"id":"phpmyrealty","info":{"name":"phpmyrealty","author":"cn-kali-team","tags":"detect,tech,phpmyrealty","severity":"info","metadata":{"product":"phpmyrealty","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- main content table : stop -->","powered by <a href=\"http://www.phpmyrealty.com"],"case-insensitive":true}]}]},{"id":"powercreator-cms","info":{"name":"powercreator-cms","author":"cn-kali-team","tags":"detect,tech,powercreator-cms","severity":"info","metadata":{"product":"powercreator-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span class=\"bottom_versionno\">","email:[email protected]<br />","powercreator "],"case-insensitive":true}]}]},{"id":"loopup-meeting","info":{"name":"loopup-meeting","author":"cn-kali-team","tags":"detect,tech,loopup-meeting","severity":"info","metadata":{"product":"loopup-meeting","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"loopup\"","machine:"],"condition":"and","case-insensitive":true}]}]},{"id":"he-zhong-shu-ju-wai-wang-an-quan-shu-ju-jiao-huan-xi-tong","info":{"name":"合众数据-外网安全数据交换系统","author":"cn-kali-team","tags":"detect,tech,合众数据-外网安全数据交换系统","severity":"info","metadata":{"product":"合众数据-外网安全数据交换系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/unimas/","外网安全数据交换系统"],"condition":"and","case-insensitive":true}]}]},{"id":"igenus-you-jian-xi-tong","info":{"name":"igenus邮件系统","author":"cn-kali-team","tags":"detect,tech,igenus邮件系统","severity":"info","metadata":{"product":"igenus邮件系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["form.action = \"login.php?cmd=login\";","igenus"],"condition":"and","case-insensitive":true}]}]},{"id":"netport","info":{"name":"netport","author":"cn-kali-team","tags":"detect,tech,netport","severity":"info","metadata":{"product":"netport","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: netport software"],"part":"header","case-insensitive":true}]}]},{"id":"wing-ftp-server","info":{"name":"wing-ftp-server","author":"cn-kali-team","tags":"detect,tech,wing-ftp-server","severity":"info","metadata":{"product":"wing-ftp-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: wing ftp server"],"part":"header","case-insensitive":true}]}]},{"id":"enterpriseloginmanagementsystem","info":{"name":"enterpriseloginmanagementsystem","author":"cn-kali-team","tags":"detect,tech,enterpriseloginmanagementsystem","severity":"info","metadata":{"product":"enterpriseloginmanagementsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["themes/scripts/functionjs.js","txtusername\").focus(); //默认焦点"],"case-insensitive":true}]}]},{"id":"cbss-automated-testing","info":{"name":"cbss-automated-testing","author":"cn-kali-team","tags":"detect,tech,cbss-automated-testing","severity":"info","metadata":{"product":"cbss-automated-testing","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<p>copyright© cbss 项目组 自动化测试小组</p>"],"case-insensitive":true}]}]},{"id":"titan-ftp","info":{"name":"titan-ftp","author":"cn-kali-team","tags":"detect,tech,titan-ftp","severity":"info","metadata":{"product":"titan-ftp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: titan ftp server"],"part":"header","case-insensitive":true}]}]},{"id":"xecure-vpn","info":{"name":"xecure-vpn","author":"cn-kali-team","tags":"detect,tech,xecure-vpn","severity":"info","metadata":{"product":"xecure-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["xecure vpn manager","xnstyle.css"],"condition":"and","case-insensitive":true}]}]},{"id":"doclever","info":{"name":"doclever","author":"cn-kali-team","tags":"detect,tech,doclever","severity":"info","metadata":{"product":"doclever","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["@click.prevent=\"login\" :loading=\"loginpending\""],"case-insensitive":true}]}]},{"id":"ghostcms","info":{"name":"ghostcms","author":"cn-kali-team","tags":"detect,tech,ghostcms","severity":"info","metadata":{"product":"ghostcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["search this site\" data-ghost-search><","noopener\">powered by ghost</a></div>"],"case-insensitive":true}]}]},{"id":"lian-tong-shi-ke-xin-xi-an-quan-zong-he-guan-li-ping-tai","info":{"name":"联通时科-信息安全综合管理平台","author":"cn-kali-team","tags":"detect,tech,联通时科-信息安全综合管理平台","severity":"info","metadata":{"product":"联通时科-信息安全综合管理平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["[email protected]","信息安全综合管理平台"],"condition":"and","case-insensitive":true}]}]},{"id":"bio-lims","info":{"name":"bio-lims","author":"cn-kali-team","tags":"detect,tech,bio-lims","severity":"info","metadata":{"product":"bio-lims","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/lims/dist/css/font-awesome.min.css"],"case-insensitive":true}]}]},{"id":"yottabyte-rizhiyi","info":{"name":"yottabyte-rizhiyi","author":"cn-kali-team","tags":"detect,tech,yottabyte-rizhiyi","severity":"info","metadata":{"product":"yottabyte-rizhiyi","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/static/assets/yottaweb-elements/index.css\""],"case-insensitive":true}]}]},{"id":"axentra-hipserv","info":{"name":"axentra-hipserv","author":"cn-kali-team","tags":"detect,tech,axentra-hipserv","severity":"info","metadata":{"product":"axentra-hipserv","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"axentra"],"case-insensitive":true}]}]},{"id":"mantuoluo-medication","info":{"name":"mantuoluo-medication","author":"cn-kali-team","tags":"detect,tech,mantuoluo-medication","severity":"info","metadata":{"product":"mantuoluo-medication","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h2>曼陀罗医疗</h2>"],"case-insensitive":true}]}]},{"id":"pegarules","info":{"name":"pegarules","author":"cn-kali-team","tags":"detect,tech,pegarules","severity":"info","metadata":{"product":"pegarules","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"images/pzpegaicon.ico","unable to logon to the pegarules system"],"case-insensitive":true}]}]},{"id":"cetc-gong-ye-fang-huo-qiang","info":{"name":"cetc-工业防火墙","author":"cn-kali-team","tags":"detect,tech,cetc-工业防火墙","severity":"info","metadata":{"product":"cetc-工业防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/webgui/scripts/dd_belatedpng.js","工业防火墙"],"condition":"and","case-insensitive":true}]}]},{"id":"hintsoft-pubwin2015","info":{"name":"hintsoft-pubwin2015","author":"cn-kali-team","tags":"detect,tech,hintsoft-pubwin2015","severity":"info","metadata":{"product":"hintsoft-pubwin2015","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["images/newlogin_01.jpg"],"case-insensitive":true}]}]},{"id":"netpilot","info":{"name":"netpilot","author":"cn-kali-team","tags":"detect,tech,netpilot","severity":"info","metadata":{"product":"netpilot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/sys/images/tree.css\" title=\"netpilot"],"case-insensitive":true}]}]},{"id":"phpmps","info":{"name":"phpmps","author":"cn-kali-team","tags":"detect,tech,phpmps","severity":"info","metadata":{"product":"phpmps","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by phpmps","templates/phpmps/style/index.css"],"case-insensitive":true}]}]},{"id":"cmailserver","info":{"name":"cmailserver","author":"cn-kali-team","tags":"detect,tech,cmailserver","severity":"info","metadata":{"product":"cmailserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<font size=2>username ( contatto email )</font>","<input type=checkbox name=\"saveuserpass"],"case-insensitive":true}]}]},{"id":"ibm-hmc","info":{"name":"ibm-hmc","author":"cn-kali-team","tags":"detect,tech,ibm-hmc","severity":"info","metadata":{"product":"ibm-hmc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<frame src=\"/preloginmonitor/welcome.jsp\"/>"],"case-insensitive":true}]}]},{"id":"weatimages","info":{"name":"weatimages","author":"cn-kali-team","tags":"detect,tech,weatimages","severity":"info","metadata":{"product":"weatimages","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://nazarkin.name/projects/weatimages","<div align=\"center\" class=\"weatimages_toppest_navig\" style=\"text-decoration:underline;\">","<meta name=\"generator\" content=\"weatimages\"/>"],"case-insensitive":true}]}]},{"id":"uxsino-xia-yi-dai-fang-huo-qiang","info":{"name":"uxsino-下一代防火墙","author":"cn-kali-team","tags":"detect,tech,uxsino-下一代防火墙","severity":"info","metadata":{"product":"uxsino-下一代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http://www.uxsino.com","优炫下一代防火墙"],"condition":"and","case-insensitive":true}]}]},{"id":"oracle-opera","info":{"name":"oracle-opera","author":"cn-kali-team","tags":"detect,tech,oracle-opera","severity":"info","metadata":{"product":"oracle-opera","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["operalogin/welcome.do"],"case-insensitive":true}]}]},{"id":"thinkphp-yfcmf","info":{"name":"thinkphp-yfcmf","author":"cn-kali-team","tags":"detect,tech,thinkphp-yfcmf","severity":"info","metadata":{"product":"thinkphp-yfcmf","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/public/others/maxlength.js","yfcmf"],"condition":"and","case-insensitive":true},{"type":"word","words":["/yfcmf/yfcmf.js"],"case-insensitive":true}]}]},{"id":"webengine-site","info":{"name":"webengine-site","author":"cn-kali-team","tags":"detect,tech,webengine-site","severity":"info","metadata":{"product":"webengine-site","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/webengine/images/common.css","location.href = \"/webengine/web/\";"],"case-insensitive":true}]}]},{"id":"jabberd","info":{"name":"jabberd","author":"cn-kali-team","tags":"detect,tech,jabberd","severity":"info","metadata":{"product":"jabberd","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: jabberd"],"part":"header","case-insensitive":true}]}]},{"id":"aspcms","info":{"name":"aspcms","author":"cn-kali-team","tags":"detect,tech,aspcms","severity":"info","metadata":{"product":"aspcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/inc/aspcms_advjs.asp","content=\"aspcms"],"case-insensitive":true}]}]},{"id":"chanzhicms","info":{"name":"chanzhicms","author":"cn-kali-team","tags":"detect,tech,chanzhicms","severity":"info","metadata":{"product":"chanzhicms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["chanzhi.js","poweredby'><a href='http://www.chanzhi.org","title='cms系统,首选蝉知cms"],"case-insensitive":true}]}]},{"id":"team-board","info":{"name":"team-board","author":"cn-kali-team","tags":"detect,tech,team-board","severity":"info","metadata":{"product":"team-board","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"licence.asp\"><b style='color:#ff9900'>","href=http://www.team5.cn\"><b>team ","team5.cn by daymoon"],"case-insensitive":true}]}]},{"id":"solarview-compact","info":{"name":"solarview-compact","author":"cn-kali-team","tags":"detect,tech,solarview-compact","severity":"info","metadata":{"product":"solarview-compact","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["refresh\" content=\"3; url=solar_menu.php"],"case-insensitive":true}]}]},{"id":"smartermail","info":{"name":"smartermail","author":"cn-kali-team","tags":"detect,tech,smartermail","severity":"info","metadata":{"product":"smartermail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href='http://www.smartertools.com/smartermail/mail-server-software.aspx' target='_blank>smartermail"],"case-insensitive":true}]}]},{"id":"cnvp-jcms","info":{"name":"cnvp-jcms","author":"cn-kali-team","tags":"detect,tech,cnvp-jcms","severity":"info","metadata":{"product":"cnvp-jcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["publish by jcms2010"],"case-insensitive":true}]}]},{"id":"goldlib-library","info":{"name":"goldlib-library","author":"cn-kali-team","tags":"detect,tech,goldlib-library","severity":"info","metadata":{"product":"goldlib-library","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["图书","金盘软件"],"condition":"and","case-insensitive":true},{"type":"word","words":["/opac/periodicals","class=\"jp-searchtabs","onclick=\"change('book');"],"case-insensitive":true}]}]},{"id":"qtweb","info":{"name":"qtweb","author":"cn-kali-team","tags":"detect,tech,qtweb","severity":"info","metadata":{"product":"qtweb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["url=gqrtweb"],"case-insensitive":true}]}]},{"id":"sangfor-zero-trust-integrated-gateway","info":{"name":"sangfor-zero-trust-integrated-gateway","author":"cn-kali-team","tags":"detect,tech,sangfor-zero-trust-integrated-gateway","severity":"info","metadata":{"product":"sangfor-zero-trust-integrated-gateway","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["61ea21861c73970bc98ed619f2748992"]},{"type":"word","words":["<title>atrust"],"case-insensitive":true}]}]},{"id":"riverbed-appresponse","info":{"name":"riverbed-appresponse","author":"cn-kali-team","tags":"detect,tech,riverbed-appresponse","severity":"info","metadata":{"product":"riverbed-appresponse","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["uiwebinsights/webinsights.html"],"case-insensitive":true}]}]},{"id":"h3c-hdm","info":{"name":"h3c-hdm","author":"cn-kali-team","tags":"detect,tech,h3c-hdm","severity":"info","metadata":{"product":"h3c-hdm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/video_record.jnlp","<iframe frameborder=\"0\" class=\"framelayout\" src=\"./page/blank.html\" name=\"mainframe\" id=\"mainframe"],"case-insensitive":true}]}]},{"id":"mdaemon-email-server","info":{"name":"mdaemon-email-server","author":"cn-kali-team","tags":"detect,tech,mdaemon-email-server","severity":"info","metadata":{"product":"mdaemon-email-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/worldclient.dll?view=main","<strong>mdaemon/worldclient","mdaemon "],"case-insensitive":true}]}]},{"id":"iscripts-reservelogic","info":{"name":"iscripts-reservelogic","author":"cn-kali-team","tags":"detect,tech,iscripts-reservelogic","severity":"info","metadata":{"product":"iscripts-reservelogic","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.iscripts.com/reservelogic/"],"case-insensitive":true}]}]},{"id":"ibm-lotus","info":{"name":"ibm-lotus","author":"cn-kali-team","tags":"detect,tech,ibm-lotus","severity":"info","metadata":{"product":"ibm-lotus","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["domcfg.nsf","login.nsf"],"condition":"and","case-insensitive":true},{"type":"word","words":["esoaisapp/login.jsp","main.nsf"],"condition":"and","case-insensitive":true},{"type":"word","words":["action=\"/names.nsf?login\" name=\"_dominoform","软标科技"],"case-insensitive":true}]}]},{"id":"an-heng-xin-xi-ming-yu-an-quan-wang-guan","info":{"name":"安恒信息-明御安全网关","author":"cn-kali-team","tags":"detect,tech,安恒信息-明御安全网关","severity":"info","metadata":{"product":"安恒信息-明御安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["明御安全网关"],"case-insensitive":true}]}]},{"id":"zkwell-corrosion-monitoring-and-corrosion-protection-management-system","info":{"name":"zkwell-corrosion-monitoring-and-corrosion-protection-management-system","author":"cn-kali-team","tags":"detect,tech,zkwell-corrosion-monitoring-and-corrosion-protection-management-system","severity":"info","metadata":{"product":"zkwell-corrosion-monitoring-and-corrosion-protection-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["background-image:url(images/devicebg.jpg)"],"case-insensitive":true}]}]},{"id":"argocd","info":{"name":"argocd","author":"cn-kali-team","tags":"detect,tech,argocd","severity":"info","metadata":{"product":"argocd","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>argo cd</title>","argoproj.github.io"],"condition":"and","case-insensitive":true}]}]},{"id":"zte-iad-yu-yin-wang-guan","info":{"name":"zte-iad语音网关","author":"cn-kali-team","tags":"detect,tech,zte-iad语音网关","severity":"info","metadata":{"product":"zte-iad语音网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/image/banner_i532.jpg","/image/i202.gif"],"condition":"and","case-insensitive":true}]}]},{"id":"360-enterprise-security","info":{"name":"360-enterprise-security","author":"cn-kali-team","tags":"detect,tech,360-enterprise-security","severity":"info","metadata":{"product":"360-enterprise-security","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["360entinst","关于全网部署360私有云的通知"],"condition":"and","case-insensitive":true},{"type":"word","words":["天擎"],"case-insensitive":true}]}]},{"id":"goaccess-log","info":{"name":"goaccess-log","author":"cn-kali-team","tags":"detect,tech,goaccess-log","severity":"info","metadata":{"product":"goaccess-log","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["by <a href=\"https://goaccess.io/\">goaccess</a>"],"case-insensitive":true}]}]},{"id":"redwoodhq","info":{"name":"redwoodhq","author":"cn-kali-team","tags":"detect,tech,redwoodhq","severity":"info","metadata":{"product":"redwoodhq","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["stylesheets/redwoodtheme/resources/js/azzurra.js"],"case-insensitive":true}]}]},{"id":"ruijie-sslvpn","info":{"name":"ruijie-sslvpn","author":"cn-kali-team","tags":"detect,tech,ruijie-sslvpn","severity":"info","metadata":{"product":"ruijie-sslvpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sslvpn","login","rjsslvpn_encookie"],"condition":"and","case-insensitive":true},{"type":"word","words":["document.cookie = \"rjsslvpn_encookie=yes;\""],"case-insensitive":true}]}]},{"id":"observium","info":{"name":"observium","author":"cn-kali-team","tags":"detect,tech,observium","severity":"info","metadata":{"product":"observium","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"images/observium-icon.png\""],"case-insensitive":true}]}]},{"id":"alcasar","info":{"name":"alcasar","author":"cn-kali-team","tags":"detect,tech,alcasar","severity":"info","metadata":{"product":"alcasar","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["valoriserdiv5"],"case-insensitive":true}]}]},{"id":"mailgard-webmail","info":{"name":"mailgard-webmail","author":"cn-kali-team","tags":"detect,tech,mailgard-webmail","severity":"info","metadata":{"product":"mailgard-webmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.open('http://www.hechen.com')"],"case-insensitive":true}]}]},{"id":"jigsaw","info":{"name":"jigsaw","author":"cn-kali-team","tags":"detect,tech,jigsaw","severity":"info","metadata":{"product":"jigsaw","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: jigsaw"],"part":"header","case-insensitive":true}]}]},{"id":"zeroshell-fang-huo-qiang","info":{"name":"zeroshell-防火墙","author":"cn-kali-team","tags":"detect,tech,zeroshell-防火墙","severity":"info","metadata":{"product":"zeroshell-防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["zeroshell"],"case-insensitive":true}]}]},{"id":"gzcstec-exam","info":{"name":"gzcstec-exam","author":"cn-kali-team","tags":"detect,tech,gzcstec-exam","severity":"info","metadata":{"product":"gzcstec-exam","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["placeholder=\"请输入凭据\""],"case-insensitive":true}]}]},{"id":"savant-web-server","info":{"name":"savant-web-server","author":"cn-kali-team","tags":"detect,tech,savant-web-server","severity":"info","metadata":{"product":"savant-web-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: savant"],"part":"header","case-insensitive":true}]}]},{"id":"ultracrm","info":{"name":"ultracrm","author":"cn-kali-team","tags":"detect,tech,ultracrm","severity":"info","metadata":{"product":"ultracrm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" tonethink.soft all rights reserved"],"case-insensitive":true}]}]},{"id":"digitalguardian-system","info":{"name":"digitalguardian-system","author":"cn-kali-team","tags":"detect,tech,digitalguardian-system","severity":"info","metadata":{"product":"digitalguardian-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/brands/guardian/favicon.ico\""],"case-insensitive":true}]}]},{"id":"sap-web-application-server","info":{"name":"sap-web-application-server","author":"cn-kali-team","tags":"detect,tech,sap-web-application-server","severity":"info","metadata":{"product":"sap-web-application-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: sap j2ee engine","server: sap netweaver application server","server: sap web application server"],"part":"header","case-insensitive":true}]}]},{"id":"rainmail","info":{"name":"rainmail","author":"cn-kali-team","tags":"detect,tech,rainmail","severity":"info","metadata":{"product":"rainmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[".: <b>rainmail intranet login </b> :.</div>","href=\"/resources/rainmailvpninstaller.exe"],"case-insensitive":true}]}]},{"id":"manageengine-opmanager","info":{"name":"manageengine-opmanager","author":"cn-kali-team","tags":"detect,tech,manageengine-opmanager","severity":"info","metadata":{"product":"manageengine-opmanager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.manageengine.com/products/opmanager/index.html\" target=","the complete network monitoring software from manageengine"],"case-insensitive":true}]}]},{"id":"startbbs","info":{"name":"startbbs","author":"cn-kali-team","tags":"detect,tech,startbbs","severity":"info","metadata":{"product":"startbbs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"startbbs"],"case-insensitive":true}]}]},{"id":"efront","info":{"name":"efront","author":"cn-kali-team","tags":"detect,tech,efront","severity":"info","metadata":{"product":"efront","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href = \"http://www.efrontlearning.net"],"case-insensitive":true}]}]},{"id":"ovirt-virtualization","info":{"name":"ovirt-virtualization","author":"cn-kali-team","tags":"detect,tech,ovirt-virtualization","severity":"info","metadata":{"product":"ovirt-virtualization","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"https://www.ovirt.org\" class=\"obrand_loginpagelogolink\">"],"case-insensitive":true}]}]},{"id":"icbc-gyj","info":{"name":"icbc-gyj","author":"cn-kali-team","tags":"detect,tech,icbc-gyj","severity":"info","metadata":{"product":"icbc-gyj","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var s3_app_address=\"https://gyj.icbc.com.cn\""],"case-insensitive":true}]}]},{"id":"avaya-communication-manager","info":{"name":"avaya-communication-manager","author":"cn-kali-team","tags":"detect,tech,avaya-communication-manager","severity":"info","metadata":{"product":"avaya-communication-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var newlocation = \"https://\" + target + \"/cgi-bin/common/issue\";"],"case-insensitive":true}]}]},{"id":"filenice","info":{"name":"filenice","author":"cn-kali-team","tags":"detect,tech,filenice","severity":"info","metadata":{"product":"filenice","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"the fantabulous mechanical eviltwin code machine","filenice/filenice.js"],"case-insensitive":true}]}]},{"id":"hostbill","info":{"name":"hostbill","author":"cn-kali-team","tags":"detect,tech,hostbill","severity":"info","metadata":{"product":"hostbill","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<strong>hostbill","powered by <a href=\"http://hostbillapp.com"],"case-insensitive":true}]}]},{"id":"weonlydo-product","info":{"name":"weonlydo-product","author":"cn-kali-team","tags":"detect,tech,weonlydo-product","severity":"info","metadata":{"product":"weonlydo-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: weonlydo"],"part":"header","case-insensitive":true}]}]},{"id":"blogger","info":{"name":"blogger","author":"cn-kali-team","tags":"detect,tech,blogger","severity":"info","metadata":{"product":"blogger","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content='blogger","powered by blogger"],"case-insensitive":true}]}]},{"id":"w7-officialaccounts","info":{"name":"w7-officialaccounts","author":"cn-kali-team","tags":"detect,tech,w7-officialaccounts","severity":"info","metadata":{"product":"w7-officialaccounts","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"微擎,微信","onsubmit=\"return formcheck();\" class=\"we7-form\">"],"condition":"and","case-insensitive":true},{"type":"word","words":["class=\"copyright\">powered by <a href=\"http://www.we7.cc\"><b>微擎</b>","powered by we7.cc"],"case-insensitive":true}]}]},{"id":"arab-portal","info":{"name":"arab-portal","author":"cn-kali-team","tags":"detect,tech,arab-portal","severity":"info","metadata":{"product":"arab-portal","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by: arab"],"case-insensitive":true}]}]},{"id":"aspentech-aspen-infoplus21","info":{"name":"aspentech-aspen-infoplus21","author":"cn-kali-team","tags":"detect,tech,aspentech-aspen-infoplus21","severity":"info","metadata":{"product":"aspentech-aspen-infoplus21","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/aspencui/css/appstyles.js"],"case-insensitive":true}]}]},{"id":"xyhcms","info":{"name":"xyhcms","author":"cn-kali-team","tags":"detect,tech,xyhcms","severity":"info","metadata":{"product":"xyhcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["power by xyhcms"],"case-insensitive":true}]}]},{"id":"pldsec-tong-yi-an-quan-guan-li-he-zong-he-shen-ji-xi-tong","info":{"name":"pldsec-统一安全管理和综合审计系统","author":"cn-kali-team","tags":"detect,tech,pldsec-统一安全管理和综合审计系统","severity":"info","metadata":{"product":"pldsec-统一安全管理和综合审计系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["module/image/pldsec.css"],"case-insensitive":true}]}]},{"id":"rabbitmq","info":{"name":"rabbitmq","author":"cn-kali-team","tags":"detect,tech,rabbitmq","severity":"info","metadata":{"product":"rabbitmq","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>rabbitmq management</title>"],"case-insensitive":true}]}]},{"id":"vhsoft-vhplot","info":{"name":"vhsoft-vhplot","author":"cn-kali-team","tags":"detect,tech,vhsoft-vhplot","severity":"info","metadata":{"product":"vhsoft-vhplot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/vhplot/webresource.axd"],"case-insensitive":true}]}]},{"id":"signature-verification-management-system","info":{"name":"signature-verification-management-system","author":"cn-kali-team","tags":"detect,tech,signature-verification-management-system","severity":"info","metadata":{"product":"signature-verification-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["版权所有:北京格尔国信科技有限公司"],"case-insensitive":true}]}]},{"id":"kwcnet-vis","info":{"name":"kwcnet-vis","author":"cn-kali-team","tags":"detect,tech,kwcnet-vis","severity":"info","metadata":{"product":"kwcnet-vis","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"北京开维创科技有限公司"],"case-insensitive":true}]}]},{"id":"optergy-product","info":{"name":"optergy-product","author":"cn-kali-team","tags":"detect,tech,optergy-product","severity":"info","metadata":{"product":"optergy-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/css/optergy.css"],"case-insensitive":true}]}]},{"id":"zhi-yuan-xie-tong-ban-gong-ping-tai-v6.0","info":{"name":"致远协同办公平台 v6.0","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远协同办公平台 v6.0","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/qiyun/common/images/q5/favicon.ico"],"case-insensitive":true}]}]},{"id":"jasig-cas","info":{"name":"jasig-cas","author":"cn-kali-team","tags":"detect,tech,jasig-cas","severity":"info","metadata":{"product":"jasig-cas","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.jasig.org/cas"],"case-insensitive":true}]}]},{"id":"msvod-mediamanager","info":{"name":"msvod-mediamanager","author":"cn-kali-team","tags":"detect,tech,msvod-mediamanager","severity":"info","metadata":{"product":"msvod-mediamanager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["$('.sign-btn').addclass(\"completion\");","content=\"魅思cms","static/js/meisicms.js"],"case-insensitive":true}]}]},{"id":"telenor-4g-router","info":{"name":"telenor-4g-router","author":"cn-kali-team","tags":"detect,tech,telenor-4g-router","severity":"info","metadata":{"product":"telenor-4g-router","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<form id=\"default_login\" name=\"default_login\" method=\"post\" action=\"/goform/user_login\">","please power off and plug in (u)sim card. then power on again. or pin is permanently blocked, please contact the provider"],"case-insensitive":true}]}]},{"id":"zhongtan-ndstart","info":{"name":"zhongtan-ndstart","author":"cn-kali-team","tags":"detect,tech,zhongtan-ndstart","severity":"info","metadata":{"product":"zhongtan-ndstart","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>南大之星信息发布系统 ","var pubnewsarray"],"case-insensitive":true}]}]},{"id":"jizhicms","info":{"name":"极致CMS","author":"jlkl","tags":"detect,tech,jizhicms","severity":"info","metadata":{"product":"jizhicms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["极致cms建站系统"],"part":"header","case-insensitive":true}]},{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["c7bfdd8a6b762a5220f7217552592115"]}]}]},{"id":"isunor-order-management-system","info":{"name":"isunor-order-management-system","author":"cn-kali-team","tags":"detect,tech,isunor-order-management-system","severity":"info","metadata":{"product":"isunor-order-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var c_name = 'jsessionid';"],"case-insensitive":true}]}]},{"id":"kissy","info":{"name":"kissy","author":"cn-kali-team","tags":"detect,tech,kissy","severity":"info","metadata":{"product":"kissy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["kissy-min.js","kissy.js","kissy.ready"],"case-insensitive":true}]}]},{"id":"powerweb","info":{"name":"powerweb","author":"cn-kali-team","tags":"detect,tech,powerweb","severity":"info","metadata":{"product":"powerweb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: powerweb"],"part":"header","case-insensitive":true}]}]},{"id":"lotwan-web-accelerator","info":{"name":"lotwan-web-accelerator","author":"cn-kali-team","tags":"detect,tech,lotwan-web-accelerator","severity":"info","metadata":{"product":"lotwan-web-accelerator","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["北京华夏创新科技有限公司"],"case-insensitive":true}]}]},{"id":"tab-and-link-manager","info":{"name":"tab-and-link-manager","author":"cn-kali-team","tags":"detect,tech,tab-and-link-manager","severity":"info","metadata":{"product":"tab-and-link-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"footer_copyright\" class=\"shade footer_copyright\">powered by <a href=\"http://www.wolfshead-solutions.com/ws-products/product-1"],"case-insensitive":true}]}]},{"id":"zi-chan-deng-ta-xi-tong","info":{"name":"资产灯塔系统","author":"cn-kali-team","tags":"detect,tech,资产灯塔系统","severity":"info","metadata":{"product":"资产灯塔系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>资产灯塔系统</title>"],"case-insensitive":true}]}]},{"id":"phonix-pacs","info":{"name":"phonix-pacs","author":"cn-kali-team","tags":"detect,tech,phonix-pacs","severity":"info","metadata":{"product":"phonix-pacs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"/pacs/\"><img src=\"pacs/images/logo.svg\">"],"case-insensitive":true}]}]},{"id":"gree-logistics","info":{"name":"gree-logistics","author":"cn-kali-team","tags":"detect,tech,gree-logistics","severity":"info","metadata":{"product":"gree-logistics","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/images/gree/gree.gif"],"case-insensitive":true}]}]},{"id":"yunec","info":{"name":"yunec","author":"cn-kali-team","tags":"detect,tech,yunec","severity":"info","metadata":{"product":"yunec","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/17rec.html\""],"case-insensitive":true}]}]},{"id":"fortinet-sslvpn","info":{"name":"fortinet-sslvpn","author":"cn-kali-team","tags":"detect,tech,fortinet-sslvpn","severity":"info","metadata":{"product":"fortinet-sslvpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/sslvpn/portal.html","fgt_lang"],"condition":"and","case-insensitive":true}]}]},{"id":"reremouse-exam-system","info":{"name":"reremouse-exam-system","author":"cn-kali-team","tags":"detect,tech,reremouse-exam-system","severity":"info","metadata":{"product":"reremouse-exam-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/resources/js/upscroll.js\"","博库医学在线考试系统,技术支持:杭州博库科技有限公司","蝙蝠在线考试系统"],"case-insensitive":true}]}]},{"id":"virtualmin","info":{"name":"virtualmin","author":"cn-kali-team","tags":"detect,tech,virtualmin","severity":"info","metadata":{"product":"virtualmin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<center><a href=/virtualmin-password-recovery/>forgot your virtualmin password?</a></center>"],"case-insensitive":true}]}]},{"id":"karrigell","info":{"name":"karrigell","author":"cn-kali-team","tags":"detect,tech,karrigell","severity":"info","metadata":{"product":"karrigell","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: karrigell"],"part":"header","case-insensitive":true}]}]},{"id":"qi-an-xin-dai-ma-wei-shi","info":{"name":"奇安信-代码卫士","author":"cn-kali-team","tags":"detect,tech,奇安信-代码卫士","severity":"info","metadata":{"product":"奇安信-代码卫士","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["360代码卫士","baseurl : 'app', //配置模块根路径到静态资源根目录"],"condition":"and","case-insensitive":true}]}]},{"id":"fan-wei-oa-e-cology8","info":{"name":"泛微-oa e-cology8","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"泛微-oa e-cology8","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/js/ecology8/lang/weaver_lang_7_wev8.js","/js/jquery/plugins/client/jquery.client_wev8.js"],"case-insensitive":true}]}]},{"id":"netquery","info":{"name":"netquery","author":"cn-kali-team","tags":"detect,tech,netquery","severity":"info","metadata":{"product":"netquery","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"nquser.php","href=\"nqadmin.php"],"case-insensitive":true}]}]},{"id":"qianxin-analytics","info":{"name":"qianxin-analytics","author":"cn-kali-team","tags":"detect,tech,qianxin-analytics","severity":"info","metadata":{"product":"qianxin-analytics","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/static/build/animate_nprogress_timepiacker_tooltipster.min.css"],"case-insensitive":true}]}]},{"id":"apache-forrest","info":{"name":"apache-forrest","author":"cn-kali-team","tags":"detect,tech,apache-forrest","severity":"info","metadata":{"product":"apache-forrest","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"apache forrest","name=\"forrest"],"case-insensitive":true}]}]},{"id":"osirix-pixmeo","info":{"name":"osirix-pixmeo","author":"cn-kali-team","tags":"detect,tech,osirix-pixmeo","severity":"info","metadata":{"product":"osirix-pixmeo","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span>radone pacs</span>"],"case-insensitive":true}]}]},{"id":"hillstone-stoneos","info":{"name":"hillstone-stoneos","author":"cn-kali-team","tags":"detect,tech,hillstone-stoneos","severity":"info","metadata":{"product":"hillstone-stoneos","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["'hillstone stoneos software version "],"case-insensitive":true}]}]},{"id":"alibaba-group-dms","info":{"name":"alibaba-group-dms","author":"cn-kali-team","tags":"detect,tech,alibaba-group-dms","severity":"info","metadata":{"product":"alibaba-group-dms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["copyright © dms all rights reserved (alibaba 数据管理产品)"],"case-insensitive":true}]}]},{"id":"django","info":{"name":"django","author":"cn-kali-team","tags":"detect,tech,django","severity":"info","metadata":{"product":"django","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["__admin_media_prefix__","csrfmiddlewaretoken","django settings file."],"case-insensitive":true}]}]},{"id":"qi-an-xin-qi-ye-an-quan-bu-shu","info":{"name":"奇安信-企业安全部署","author":"cn-kali-team","tags":"detect,tech,奇安信-企业安全部署","severity":"info","metadata":{"product":"奇安信-企业安全部署","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["360企业安全部署"],"case-insensitive":true}]}]},{"id":"hivemail","info":{"name":"hivemail","author":"cn-kali-team","tags":"detect,tech,hivemail","severity":"info","metadata":{"product":"hivemail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"hivemail"],"case-insensitive":true}]}]},{"id":"zbintel-system","info":{"name":"zbintel-system","author":"cn-kali-team","tags":"detect,tech,zbintel-system","severity":"info","metadata":{"product":"zbintel-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["background=\"images/login_sample_bgz.jpg\""],"case-insensitive":true}]}]},{"id":"xdcms","info":{"name":"xdcms","author":"cn-kali-team","tags":"detect,tech,xdcms","severity":"info","metadata":{"product":"xdcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["system/templates/xdcms/"],"case-insensitive":true}]}]},{"id":"gocd-params","info":{"name":"gocd-params","author":"cn-kali-team","tags":"detect,tech,gocd-params","severity":"info","metadata":{"product":"gocd-params","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["423a583332e4232659690dead75184e6"]},{"type":"word","words":["gocd-params"],"case-insensitive":true}]}]},{"id":"kayako-supportsuite","info":{"name":"kayako-supportsuite","author":"cn-kali-team","tags":"detect,tech,kayako-supportsuite","severity":"info","metadata":{"product":"kayako-supportsuite","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["help desk software by kayako esupport","powered by kayako esupport"],"case-insensitive":true}]}]},{"id":"zhong-tengoa","info":{"name":"中腾oa","author":"cn-kali-team","tags":"detect,tech,中腾oa","severity":"info","metadata":{"product":"中腾oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["login","systemaction","zt_webframe"],"condition":"and","case-insensitive":true}]}]},{"id":"adt-iam-wang-guan-kong-zhi-tai","info":{"name":"adt-iam网关控制台","author":"cn-kali-team","tags":"detect,tech,adt-iam网关控制台","severity":"info","metadata":{"product":"adt-iam网关控制台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["iam","src=\"/page/assets/javascripts/adt.js\""],"condition":"and","case-insensitive":true}]}]},{"id":"netapp-data-ontap","info":{"name":"netapp-data-ontap","author":"cn-kali-team","tags":"detect,tech,netapp-data-ontap","severity":"info","metadata":{"product":"netapp-data-ontap","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: data ontap"],"part":"header","case-insensitive":true}]}]},{"id":"zkteco-security-management-system","info":{"name":"zkteco-security-management-system","author":"cn-kali-team","tags":"detect,tech,zkteco-security-management-system","severity":"info","metadata":{"product":"zkteco-security-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src='/login/images/zksecurity.png'","百傲瑞达"],"condition":"and","case-insensitive":true},{"type":"word","words":["class=\"login-finger-btn disabled\"","id=\"password_hidden\""],"condition":"and","case-insensitive":true},{"type":"word","words":["$(\".copyright\").text(\"copyright ? \" + server_current_year + \" zkteco co., ltd. all rights reserved\");"],"case-insensitive":true}]}]},{"id":"tomatocms","info":{"name":"tomatocms","author":"cn-kali-team","tags":"detect,tech,tomatocms","severity":"info","metadata":{"product":"tomatocms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.tomatocms.com\" title=\"powered by tomatocms\" target=\"_blank\">","tomato.core.widget.loader.baseurl = 'http://"],"case-insensitive":true}]}]},{"id":"oscshop","info":{"name":"oscshop","author":"cn-kali-team","tags":"detect,tech,oscshop","severity":"info","metadata":{"product":"oscshop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-powered-by: oscshop"],"part":"header","case-insensitive":true}]}]},{"id":"gitbucket","info":{"name":"gitbucket","author":"cn-kali-team","tags":"detect,tech,gitbucket","severity":"info","metadata":{"product":"gitbucket","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/assets/common/images/gitbucket.png"],"case-insensitive":true}]}]},{"id":"apache-guacamole","info":{"name":"apache-guacamole","author":"cn-kali-team","tags":"detect,tech,apache-guacamole","severity":"info","metadata":{"product":"apache-guacamole","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["guacamole - clientless remote desktop","scripts/guac-ui.js"],"condition":"and","case-insensitive":true},{"type":"word","words":["images/guacamole-logo"],"case-insensitive":true}]}]},{"id":"autoset","info":{"name":"autoset","author":"cn-kali-team","tags":"detect,tech,autoset","severity":"info","metadata":{"product":"autoset","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[".logo-autoset"],"case-insensitive":true}]}]},{"id":"pillar-axiom-software","info":{"name":"pillar-axiom-software","author":"cn-kali-team","tags":"detect,tech,pillar-axiom-software","severity":"info","metadata":{"product":"pillar-axiom-software","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["axiom storage services manager"],"case-insensitive":true}]}]},{"id":"hua-lei-ke-ji-wu-liu-xin-xi-xi-tong","info":{"name":"华磊科技物流信息系统","author":"cn-kali-team","tags":"detect,tech,华磊科技物流信息系统","severity":"info","metadata":{"product":"华磊科技物流信息系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"华磊科技","erp对接","快递系统"],"condition":"and","case-insensitive":true}]}]},{"id":"tipask","info":{"name":"tipask","author":"cn-kali-team","tags":"detect,tech,tipask","severity":"info","metadata":{"product":"tipask","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"tipask"],"case-insensitive":true}]}]},{"id":"ibm-imm","info":{"name":"ibm-imm","author":"cn-kali-team","tags":"detect,tech,ibm-imm","severity":"info","metadata":{"product":"ibm-imm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/ibmdojo/","<meta http-equiv=\"refresh\" content=\"0;url=/designs/imm/noscript/noscript_en.php\" />","ibm.stg.inlinemessage.messagetypes.msg_critical"],"case-insensitive":true}]}]},{"id":"sophos-cyberoam-ssl-vpn","info":{"name":"sophos-cyberoam-ssl-vpn","author":"cn-kali-team","tags":"detect,tech,sophos-cyberoam-ssl-vpn","severity":"info","metadata":{"product":"sophos-cyberoam-ssl-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/images/customizeimages/uploadedlogo.jpg\""],"case-insensitive":true}]}]},{"id":"valleycms","info":{"name":"valleycms","author":"cn-kali-team","tags":"detect,tech,valleycms","severity":"info","metadata":{"product":"valleycms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/viewcmscac.do","href=\"viewcmscac.do"],"condition":"and","case-insensitive":true}]}]},{"id":"xhlis-oa","info":{"name":"xhlis-oa","author":"cn-kali-team","tags":"detect,tech,xhlis-oa","severity":"info","metadata":{"product":"xhlis-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>杏和区域检验业务协同平台登录界面</title>"],"case-insensitive":true}]}]},{"id":"myscada-hmi","info":{"name":"myscada-hmi","author":"cn-kali-team","tags":"detect,tech,myscada-hmi","severity":"info","metadata":{"product":"myscada-hmi","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["if(window.__myscadaversion)"],"case-insensitive":true}]}]},{"id":"zhong-wei-xin-ti-yan-dang-an-cha-xun-xi-tong","info":{"name":"中卫信-体验档案查询系统","author":"cn-kali-team","tags":"detect,tech,中卫信-体验档案查询系统","severity":"info","metadata":{"product":"中卫信-体验档案查询系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["体检档案查询系统","技术支持:中卫信软件"],"condition":"and","case-insensitive":true}]}]},{"id":"openfiler","info":{"name":"openfiler","author":"cn-kali-team","tags":"detect,tech,openfiler","severity":"info","metadata":{"product":"openfiler","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["</strong>openfiler nas/san appliance","href=\"http://www.openfiler.com/\">openfiler"],"case-insensitive":true}]}]},{"id":"novnc","info":{"name":"novnc","author":"cn-kali-team","tags":"detect,tech,novnc","severity":"info","metadata":{"product":"novnc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"novnc-control-bar","novnc example: simple"],"case-insensitive":true}]}]},{"id":"kodbox-ke-dao-yun","info":{"name":"kodbox可道云","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"kodbox可道云","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["dfe2fd3d8458e166616692b39c32baf9"]},{"type":"word","words":["<title>kodbox - powered by kodbox</title>"],"case-insensitive":true}]}]},{"id":"hai-xia-xin-xi-hei-dun-wang-luo-an-quan-shen-ji-xi-tong","info":{"name":"海峡信息-黑盾网络安全审计系统","author":"cn-kali-team","tags":"detect,tech,海峡信息-黑盾网络安全审计系统","severity":"info","metadata":{"product":"海峡信息-黑盾网络安全审计系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["technology, inc.","福建省海峡信息技术有限公司"],"condition":"and","case-insensitive":true}]}]},{"id":"calendarscript","info":{"name":"calendarscript","author":"cn-kali-team","tags":"detect,tech,calendarscript","severity":"info","metadata":{"product":"calendarscript","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.calendarscript.com"],"case-insensitive":true}]}]},{"id":"zhi-yuan-g6-sc-duo-zu-zhi-ban","info":{"name":"致远g6-sc多组织版","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远g6-sc多组织版","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/seeyon/common/images/g6sc/favicon.ico"],"case-insensitive":true}]}]},{"id":"online-grades","info":{"name":"online-grades","author":"cn-kali-team","tags":"detect,tech,online-grades","severity":"info","metadata":{"product":"online-grades","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"online grades"],"case-insensitive":true}]}]},{"id":"yi-dong-ban-gong-xi-tong","info":{"name":"移动办公系统","author":"cn-kali-team","tags":"detect,tech,移动办公系统","severity":"info","metadata":{"product":"移动办公系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location.href = '/ui/html/login.html';","移动办公系统"],"condition":"and","case-insensitive":true}]}]},{"id":"uniview-vm50","info":{"name":"uniview-vm50","author":"cn-kali-team","tags":"detect,tech,uniview-vm50","severity":"info","metadata":{"product":"uniview-vm50","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["vm5.0"],"case-insensitive":true}]}]},{"id":"topsec-vpn","info":{"name":"topsec-vpn","author":"cn-kali-team","tags":"detect,tech,topsec-vpn","severity":"info","metadata":{"product":"topsec-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: topwebserver","set-cookie: topsecsvuilanguage"],"part":"header","condition":"and","case-insensitive":true},{"type":"word","words":["/portal_default/index.html"],"case-insensitive":true}]}]},{"id":"soft78-system","info":{"name":"soft78-system","author":"cn-kali-team","tags":"detect,tech,soft78-system","severity":"info","metadata":{"product":"soft78-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["add by sll","offlineservice/showdownloadmessage.aspx"],"case-insensitive":true}]}]},{"id":"apphp-calendar","info":{"name":"apphp-calendar","author":"cn-kali-team","tags":"detect,tech,apphp-calendar","severity":"info","metadata":{"product":"apphp-calendar","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["this script was generated by apphp calendar"],"case-insensitive":true}]}]},{"id":"tuo-er-si-was","info":{"name":"拓尔思was","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"拓尔思was","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["trs_web_style.css"],"case-insensitive":true}]}]},{"id":"h3c-web-wang-guan","info":{"name":"h3c-web网管","author":"cn-kali-team","tags":"detect,tech,h3c-web网管","severity":"info","metadata":{"product":"h3c-web网管","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["web网管用户登录","china_logo.jpg","webui"],"condition":"and","case-insensitive":true}]}]},{"id":"speed-test","info":{"name":"speed-test","author":"cn-kali-team","tags":"detect,tech,speed-test","severity":"info","metadata":{"product":"speed-test","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["classid=\"clsid:53028063-426b-446d-85f9-62e9e3dc5501\""],"case-insensitive":true}]}]},{"id":"sillysmart","info":{"name":"sillysmart","author":"cn-kali-team","tags":"detect,tech,sillysmart","severity":"info","metadata":{"product":"sillysmart","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var slsbuild"],"case-insensitive":true}]}]},{"id":"anwang-wayosac","info":{"name":"anwang-wayosac","author":"cn-kali-team","tags":"detect,tech,anwang-wayosac","severity":"info","metadata":{"product":"anwang-wayosac","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["715c49c5512d763084a4082c27d935e1"]}]}]},{"id":"cachethq","info":{"name":"cachethq","author":"cn-kali-team","tags":"detect,tech,cachethq","severity":"info","metadata":{"product":"cachethq","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["atom","https://cachethq.io"],"condition":"and","case-insensitive":true}]}]},{"id":"softnext-spam-sqr-fan-la-ji-you-jian-xi-tong","info":{"name":"softnext-spam-sqr反垃圾邮件系统","author":"cn-kali-team","tags":"detect,tech,softnext-spam-sqr反垃圾邮件系统","severity":"info","metadata":{"product":"softnext-spam-sqr反垃圾邮件系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["snspam/spam_request/","spam sqr"],"condition":"and","case-insensitive":true}]}]},{"id":"mailsiteexpress","info":{"name":"mailsiteexpress","author":"cn-kali-team","tags":"detect,tech,mailsiteexpress","severity":"info","metadata":{"product":"mailsiteexpress","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onsubmit=\"openexpress(document.expresslogin)","rockliffe systems, inc."],"case-insensitive":true}]}]},{"id":"nsfocus-enterprise-security-center","info":{"name":"nsfocus-enterprise-security-center","author":"cn-kali-team","tags":"detect,tech,nsfocus-enterprise-security-center","severity":"info","metadata":{"product":"nsfocus-enterprise-security-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/login_logo_espc_zh_cn.png"],"case-insensitive":true}]}]},{"id":"h3c-er6300g2","info":{"name":"h3c-er6300g2","author":"cn-kali-team","tags":"detect,tech,h3c-er6300g2","severity":"info","metadata":{"product":"h3c-er6300g2","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["er6300g2","h3c.com","login"],"condition":"and","case-insensitive":true}]}]},{"id":"tikiwiki","info":{"name":"tikiwiki","author":"cn-kali-team","tags":"detect,tech,tikiwiki","severity":"info","metadata":{"product":"tikiwiki","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["e789cc1db6eefad0b58c9dda94f57d3c"]}]}]},{"id":"jnsh-system","info":{"name":"jnsh-system","author":"cn-kali-team","tags":"detect,tech,jnsh-system","severity":"info","metadata":{"product":"jnsh-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"../../doc/config/shxmjgptapp.png\""],"case-insensitive":true}]}]},{"id":"jin-pan-tu-shu-guan-wei-xin-guan-li-hou-tai","info":{"name":"金盘图书馆微信管理后台","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"金盘图书馆微信管理后台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["vendor/modules/angular-file-upload/angular-file-upload.js","js/config.js"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["0488faca4c19046b94d07c3ee83cf9d6"]}]}]},{"id":"sentora","info":{"name":"sentora","author":"cn-kali-team","tags":"detect,tech,sentora","severity":"info","metadata":{"product":"sentora","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" href=\"http://www.sentora.org/\""," sentora_logo.png "],"case-insensitive":true}]}]},{"id":"dhc-oa","info":{"name":"dhc-oa","author":"cn-kali-team","tags":"detect,tech,dhc-oa","severity":"info","metadata":{"product":"dhc-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/extcomponent/security/image/dhc.png\""],"case-insensitive":true}]}]},{"id":"auxilium-petratepro","info":{"name":"auxilium-petratepro","author":"cn-kali-team","tags":"detect,tech,auxilium-petratepro","severity":"info","metadata":{"product":"auxilium-petratepro","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["index.php?cmd=11"],"case-insensitive":true}]}]},{"id":"haitian-oa","info":{"name":"haitian-oa","author":"cn-kali-team","tags":"detect,tech,haitian-oa","severity":"info","metadata":{"product":"haitian-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["htvos.js","images/myjs.js","mshtml 8.00.6001.19298"],"case-insensitive":true}]}]},{"id":"shu-zi-hua-xiao-yuan-zong-he-guan-li-xi-tong","info":{"name":"数字化校园综合管理系统","author":"cn-kali-team","tags":"detect,tech,数字化校园综合管理系统","severity":"info","metadata":{"product":"数字化校园综合管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["\"../../dc_login/qysignup\""],"case-insensitive":true}]}]},{"id":"pmwiki","info":{"name":"pmwiki","author":"cn-kali-team","tags":"detect,tech,pmwiki","severity":"info","metadata":{"product":"pmwiki","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.pmwiki.org/\" target=","<span class='commentout-pmwikiorg'>"],"case-insensitive":true}]}]},{"id":"windriver","info":{"name":"windriver","author":"cn-kali-team","tags":"detect,tech,windriver","severity":"info","metadata":{"product":"windriver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: windriver-webserver"],"part":"header","case-insensitive":true}]}]},{"id":"wireless-access-point-controller","info":{"name":"wireless-access-point-controller","author":"cn-kali-team","tags":"detect,tech,wireless-access-point-controller","severity":"info","metadata":{"product":"wireless-access-point-controller","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<select id = \"selclangswitch\" class=\"langswitch\" onchange = \"switchpagelanguage()\">","src=\"images/acchtext.png\"","var oemproductname = \"mvc_howay6000\"","var oemproductname = \"mvc_howay6100\")","版权所有 © 2009-2017</div>","苏州汉明科技有限公司"],"case-insensitive":true}]}]},{"id":"cwp-controlpanel","info":{"name":"cwp-controlpanel","author":"cn-kali-team","tags":"detect,tech,cwp-controlpanel","severity":"info","metadata":{"product":"cwp-controlpanel","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/login/cwp_theme/original/img/ico/favicon.ico\"","src=\"/login/cwp_theme/original/img/new_logo_small.png\""],"case-insensitive":true}]}]},{"id":"pmway-e4","info":{"name":"pmway-e4","author":"cn-kali-team","tags":"detect,tech,pmway-e4","severity":"info","metadata":{"product":"pmway-e4","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["热情似火</option>","风<span style=\"padding-left: 12px;\"></span>格"],"case-insensitive":true}]}]},{"id":"indusguard-waf","info":{"name":"indusguard-waf","author":"cn-kali-team","tags":"detect,tech,indusguard-waf","severity":"info","metadata":{"product":"indusguard-waf","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wafportal/wafportal.nocache.js"],"case-insensitive":true}]}]},{"id":"symantec-client-security","info":{"name":"symantec-client-security","author":"cn-kali-team","tags":"detect,tech,symantec-client-security","severity":"info","metadata":{"product":"symantec-client-security","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- symantec client security web based installation -->"],"case-insensitive":true}]}]},{"id":"emeeting-online-dating-software","info":{"name":"emeeting-online-dating-software","author":"cn-kali-team","tags":"detect,tech,emeeting-online-dating-software","severity":"info","metadata":{"product":"emeeting-online-dating-software","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/_emeetingglobals.js","emeeting dating software"],"case-insensitive":true}]}]},{"id":"ibm-lotus-inotes","info":{"name":"ibm-lotus-inotes","author":"cn-kali-team","tags":"detect,tech,ibm-lotus-inotes","severity":"info","metadata":{"product":"ibm-lotus-inotes","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"lotus inotes login screen"],"case-insensitive":true}]}]},{"id":"spiceworks","info":{"name":"spiceworks","author":"cn-kali-team","tags":"detect,tech,spiceworks","severity":"info","metadata":{"product":"spiceworks","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1><img alt=\"spiceworks\" src=\"/images/logos/large.png","<link href=\"/stylesheets/general.css?","<meta name=\"author\" content=\"spiceworks, inc.\" />"],"case-insensitive":true}]}]},{"id":"zhongyou-system","info":{"name":"zhongyou-system","author":"cn-kali-team","tags":"detect,tech,zhongyou-system","severity":"info","metadata":{"product":"zhongyou-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["background=zhongyou.jpg","众友科技巡检管理软件"],"case-insensitive":true}]}]},{"id":"jspxcms","info":{"name":"jspxcms","author":"cn-kali-team","tags":"detect,tech,jspxcms","severity":"info","metadata":{"product":"jspxcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["- powered by jspxcms","template/"],"condition":"and","case-insensitive":true}]}]},{"id":"deluxebb","info":{"name":"deluxebb","author":"cn-kali-team","tags":"detect,tech,deluxebb","severity":"info","metadata":{"product":"deluxebb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"powered by deluxebb"],"case-insensitive":true}]}]},{"id":"hbase","info":{"name":"hbase","author":"cn-kali-team","tags":"detect,tech,hbase","severity":"info","metadata":{"product":"hbase","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta http-equiv=\"refresh\" content=\"0;url=/master-status\"/>"],"case-insensitive":true}]}]},{"id":"freenas","info":{"name":"freenas","author":"cn-kali-team","tags":"detect,tech,freenas","severity":"info","metadata":{"product":"freenas","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/images/ui/freenas-logo.png","title=\"welcome to freenas"],"case-insensitive":true}]}]},{"id":"tuling-procurement-strategy-management-system","info":{"name":"tuling-procurement-strategy-management-system","author":"cn-kali-team","tags":"detect,tech,tuling-procurement-strategy-management-system","severity":"info","metadata":{"product":"tuling-procurement-strategy-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/login/main_body_bg.jpg\"","长沙图灵科技有限公司"],"case-insensitive":true}]}]},{"id":"wq-cms","info":{"name":"wq-cms","author":"cn-kali-team","tags":"detect,tech,wq-cms","severity":"info","metadata":{"product":"wq-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["inc/wqcms.js","powered by <a href='http://www.wqcms.com","style/wangqi/style.css"],"case-insensitive":true}]}]},{"id":"shi-wu-you-shi-an-nei-wang-an-quan","info":{"name":"世无忧-世安内网安全","author":"cn-kali-team","tags":"detect,tech,世无忧-世安内网安全","severity":"info","metadata":{"product":"世无忧-世安内网安全","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["gzsa. all rights reserved</span>","内网终端安全管理系统登陆界面"],"condition":"and","case-insensitive":true}]}]},{"id":"ruijie-xia-yi-dai-fang-huo-qiang","info":{"name":"ruijie-下一代防火墙","author":"cn-kali-team","tags":"detect,tech,ruijie-下一代防火墙","severity":"info","metadata":{"product":"ruijie-下一代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["webui/images/ruijie","锐捷"],"condition":"and","case-insensitive":true}]}]},{"id":"kaspersky-secure-mail-gateway","info":{"name":"kaspersky-secure-mail-gateway","author":"cn-kali-team","tags":"detect,tech,kaspersky-secure-mail-gateway","severity":"info","metadata":{"product":"kaspersky-secure-mail-gateway","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["kaspersky secure mail gateway"],"case-insensitive":true}]}]},{"id":"installationqualitymanagementsystem","info":{"name":"installationqualitymanagementsystem","author":"cn-kali-team","tags":"detect,tech,installationqualitymanagementsystem","severity":"info","metadata":{"product":"installationqualitymanagementsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["images/ewuser_title.jpg"],"case-insensitive":true}]}]},{"id":"achecker-web-accessibility-evaluation-tool","info":{"name":"achecker-web-accessibility-evaluation-tool","author":"cn-kali-team","tags":"detect,tech,achecker-web-accessibility-evaluation-tool","severity":"info","metadata":{"product":"achecker-web-accessibility-evaluation-tool","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"achecker is a web accessibility"],"case-insensitive":true}]}]},{"id":"meis-medicine","info":{"name":"meis-medicine","author":"cn-kali-team","tags":"detect,tech,meis-medicine","severity":"info","metadata":{"product":"meis-medicine","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1 class=\"logo\">欢迎使用 <span class=\"logo_icon\">meis</span> 医疗信息管理系统</h1>"],"case-insensitive":true}]}]},{"id":"kaibb","info":{"name":"kaibb","author":"cn-kali-team","tags":"detect,tech,kaibb","severity":"info","metadata":{"product":"kaibb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"forum powered by kaibb","powered by kaibb"],"case-insensitive":true}]}]},{"id":"wsncm-system","info":{"name":"wsncm-system","author":"cn-kali-team","tags":"detect,tech,wsncm-system","severity":"info","metadata":{"product":"wsncm-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"login\">wsncm动态仓单系统"],"case-insensitive":true}]}]},{"id":"bicesoft-super-custom-survey-voting-system","info":{"name":"bicesoft-super-custom-survey-voting-system","author":"cn-kali-team","tags":"detect,tech,bicesoft-super-custom-survey-voting-system","severity":"info","metadata":{"product":"bicesoft-super-custom-survey-voting-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"images/bicesoft.css\"","佰思超强自定义问卷调查系统(bicesoft.com)"],"case-insensitive":true}]}]},{"id":"bt-control-pane","info":{"name":"bt-control-pane","author":"cn-kali-team","tags":"detect,tech,bt-control-pane","severity":"info","metadata":{"product":"bt-control-pane","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["bt.cn","扫码登录"],"condition":"and","case-insensitive":true},{"type":"word","words":["入口校验失败","面板"],"condition":"and","case-insensitive":true},{"type":"word","words":["set-cookie: bt_panel_6"],"part":"header","case-insensitive":true}]}]},{"id":"ebrigade-erp","info":{"name":"ebrigade-erp","author":"cn-kali-team","tags":"detect,tech,ebrigade-erp","severity":"info","metadata":{"product":"ebrigade-erp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class='btn btn-ebrigade btn-lg'"],"case-insensitive":true}]}]},{"id":"wsncm-iot","info":{"name":"wsncm-iot","author":"cn-kali-team","tags":"detect,tech,wsncm-iot","severity":"info","metadata":{"product":"wsncm-iot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"login\">物联网供应链与金融风险管理服务"],"case-insensitive":true}]}]},{"id":"xuanniao-traffic-management-platform","info":{"name":"xuanniao-traffic-management-platform","author":"cn-kali-team","tags":"detect,tech,xuanniao-traffic-management-platform","severity":"info","metadata":{"product":"xuanniao-traffic-management-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["玄鸟流量管理平台"],"case-insensitive":true}]}]},{"id":"metaswitch-networks-metaview-web","info":{"name":"metaswitch-networks-metaview-web","author":"cn-kali-team","tags":"detect,tech,metaswitch-networks-metaview-web","severity":"info","metadata":{"product":"metaswitch-networks-metaview-web","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content='dcl.metaview.web.client'","src=\"dcl.metaview.web.client.nocache.js\">"],"case-insensitive":true}]}]},{"id":"jsf","info":{"name":"jsf","author":"cn-kali-team","tags":"detect,tech,jsf","severity":"info","metadata":{"product":"jsf","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-powered-by: jsf"],"part":"header","case-insensitive":true}]}]},{"id":"web-erp-network-system","info":{"name":"web-erp-network-system","author":"cn-kali-team","tags":"detect,tech,web-erp-network-system","severity":"info","metadata":{"product":"web-erp-network-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location='/www/login.html'"],"case-insensitive":true}]}]},{"id":"alliance-web-platform","info":{"name":"alliance-web-platform","author":"cn-kali-team","tags":"detect,tech,alliance-web-platform","severity":"info","metadata":{"product":"alliance-web-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location = \"/swp/group/admin\";"],"case-insensitive":true}]}]},{"id":"blueonyx","info":{"name":"blueonyx","author":"cn-kali-team","tags":"detect,tech,blueonyx","severity":"info","metadata":{"product":"blueonyx","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["thank you for using the blueonyx"],"case-insensitive":true}]}]},{"id":"lancom-fang-huo-qiang","info":{"name":"lancom-防火墙","author":"cn-kali-team","tags":"detect,tech,lancom-防火墙","severity":"info","metadata":{"product":"lancom-防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.lancom-systems.de\">","firewall"],"condition":"and","case-insensitive":true}]}]},{"id":"mrtg","info":{"name":"mrtg","author":"cn-kali-team","tags":"detect,tech,mrtg","severity":"info","metadata":{"product":"mrtg","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/mrtg-l.png","command line is easier to read using \"view page properties\" of your browser"],"condition":"and","case-insensitive":true},{"type":"word","words":["href=\"http://oss.oetiker.ch/mrtg/"],"case-insensitive":true}]}]},{"id":"mobile-office-system","info":{"name":"mobile-office-system","author":"cn-kali-team","tags":"detect,tech,mobile-office-system","severity":"info","metadata":{"product":"mobile-office-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location.href = '/ui/html/login.html';"],"case-insensitive":true}]}]},{"id":"xie-daoa","info":{"name":"协达oa","author":"cn-kali-team","tags":"detect,tech,协达oa","severity":"info","metadata":{"product":"协达oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["img.style.height=(bodyh-84-100)"],"case-insensitive":true}]}]},{"id":"08cms","info":{"name":"08cms","author":"cn-kali-team","tags":"detect,tech,08cms","severity":"info","metadata":{"product":"08cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"08cms","typeof(_08cms)"],"case-insensitive":true}]}]},{"id":"advanced-electron-forum","info":{"name":"advanced-electron-forum","author":"cn-kali-team","tags":"detect,tech,advanced-electron-forum","severity":"info","metadata":{"product":"advanced-electron-forum","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by aef"],"case-insensitive":true}]}]},{"id":"aliyuncdn","info":{"name":"aliyuncdn","author":"cn-kali-team","tags":"detect,tech,aliyuncdn","severity":"info","metadata":{"product":"aliyuncdn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cdn.aliyuncs.com"],"case-insensitive":true}]}]},{"id":"oureman-eman","info":{"name":"oureman-eman","author":"cn-kali-team","tags":"detect,tech,oureman-eman","severity":"info","metadata":{"product":"oureman-eman","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span i18n=\"1\">益模模具智能制造系统</span>"],"case-insensitive":true}]}]},{"id":"sangfor-branch-business-center","info":{"name":"sangfor-branch-business-center","author":"cn-kali-team","tags":"detect,tech,sangfor-branch-business-center","severity":"info","metadata":{"product":"sangfor-branch-business-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location.href = '/bbc/index'"],"case-insensitive":true}]}]},{"id":"openam","info":{"name":"openam","author":"cn-kali-team","tags":"detect,tech,openam","severity":"info","metadata":{"product":"openam","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/openam/ui/login\""],"case-insensitive":true}]}]},{"id":"obm","info":{"name":"obm","author":"cn-kali-team","tags":"detect,tech,obm","severity":"info","metadata":{"product":"obm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["home_obm.png\" alt=\"obm"],"case-insensitive":true}]}]},{"id":"bees_cms","info":{"name":"bees_cms","author":"cn-kali-team","tags":"detect,tech,bees_cms","severity":"info","metadata":{"product":"bees_cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["beescms","template/default/images/slides.min.jquery.js"],"condition":"and","case-insensitive":true},{"type":"word","words":["/default/images/search_btn.gif","/default/images/xslider.js","mx_form/mx_form.php","powerd by beescms"],"case-insensitive":true}]}]},{"id":"hikvision-isecure-center","info":{"name":"hikvision-isecure-center","author":"cn-kali-team","tags":"detect,tech,hikvision-isecure-center","severity":"info","metadata":{"product":"hikvision-isecure-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["4209fe52e5c15345d0a1250f68a14d1e"]}]}]},{"id":"sophos-an-quan-chan-pin","info":{"name":"sophos-安全产品","author":"cn-kali-team","tags":"detect,tech,sophos-安全产品","severity":"info","metadata":{"product":"sophos-安全产品","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span class='logosophosfooterfont'>protected by</span>","blocked site"],"condition":"and","case-insensitive":true}]}]},{"id":"vectra-product","info":{"name":"vectra-product","author":"cn-kali-team","tags":"detect,tech,vectra-product","severity":"info","metadata":{"product":"vectra-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["vectra.base.css"],"case-insensitive":true}]}]},{"id":"ciscovpn","info":{"name":"ciscovpn","author":"cn-kali-team","tags":"detect,tech,ciscovpn","severity":"info","metadata":{"product":"ciscovpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/+cscoe+/logon.html"],"case-insensitive":true}]}]},{"id":"lan-dun-wen-dang-an-quan-guan-li-xi-tong","info":{"name":"蓝盾-文档安全管理系统","author":"cn-kali-team","tags":"detect,tech,蓝盾-文档安全管理系统","severity":"info","metadata":{"product":"蓝盾-文档安全管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["蓝盾文档安全管理系统"],"case-insensitive":true}]}]},{"id":"oracle-access-manager","info":{"name":"oracle-access-manager","author":"cn-kali-team","tags":"detect,tech,oracle-access-manager","severity":"info","metadata":{"product":"oracle-access-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["footerversion\">oracle access manager version"],"case-insensitive":true}]}]},{"id":"cisco-ucs-director","info":{"name":"cisco-ucs-director","author":"cn-kali-team","tags":"detect,tech,cisco-ucs-director","severity":"info","metadata":{"product":"cisco-ucs-director","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cisco ucs director"],"case-insensitive":true}]}]},{"id":"phpsysinfo","info":{"name":"phpsysinfo","author":"cn-kali-team","tags":"detect,tech,phpsysinfo","severity":"info","metadata":{"product":"phpsysinfo","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/templates/phpsysinfo.css","content=\"phpsysinfo","href=\"http://phpsysinfo.sourceforge.net/\">phpsysinfo","var stargeturl = \"index.php?disp=dynamic"],"case-insensitive":true}]}]},{"id":"meitrack","info":{"name":"meitrack","author":"cn-kali-team","tags":"detect,tech,meitrack","severity":"info","metadata":{"product":"meitrack","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["_trackermain_gtvtseries","action=\"trackerlogin.aspx"],"case-insensitive":true}]}]},{"id":"xjhtqy-crm","info":{"name":"xjhtqy-crm","author":"cn-kali-team","tags":"detect,tech,xjhtqy-crm","severity":"info","metadata":{"product":"xjhtqy-crm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"hidden-xs ewheaderrow\"><img src=\"aspximages/htqy.png\""],"case-insensitive":true}]}]},{"id":"intelligent-cloud","info":{"name":"intelligent-cloud","author":"cn-kali-team","tags":"detect,tech,intelligent-cloud","severity":"info","metadata":{"product":"intelligent-cloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["handlexpapplycontact"],"case-insensitive":true}]}]},{"id":"sma-sunny_webbox","info":{"name":"sma-sunny_webbox","author":"cn-kali-team","tags":"detect,tech,sma-sunny_webbox","severity":"info","metadata":{"product":"sma-sunny_webbox","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta http-equiv=\"refresh\" content=\"0; url=/culture/index.dml\">"],"case-insensitive":true}]}]},{"id":"government-and-enterprise-order-center","info":{"name":"government-and-enterprise-order-center","author":"cn-kali-team","tags":"detect,tech,government-and-enterprise-order-center","severity":"info","metadata":{"product":"government-and-enterprise-order-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"政企订单中心"],"case-insensitive":true}]}]},{"id":"citrix-metaframe","info":{"name":"citrix-metaframe","author":"cn-kali-team","tags":"detect,tech,citrix-metaframe","severity":"info","metadata":{"product":"citrix-metaframe","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location=\"/citrix/metaframe"],"case-insensitive":true}]}]},{"id":"redmine","info":{"name":"redmine","author":"cn-kali-team","tags":"detect,tech,redmine","severity":"info","metadata":{"product":"redmine","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["authenticity_token","redmine"],"condition":"and","case-insensitive":true},{"type":"word","words":["content=\"redmine","powered by <a href=\"http://www.redmine.org/"],"case-insensitive":true}]}]},{"id":"jienohan-journal","info":{"name":"jienohan-journal","author":"cn-kali-team","tags":"detect,tech,jienohan-journal","severity":"info","metadata":{"product":"jienohan-journal","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tougao/misc.js"],"case-insensitive":true}]}]},{"id":"ordermanagementsystem","info":{"name":"ordermanagementsystem","author":"cn-kali-team","tags":"detect,tech,ordermanagementsystem","severity":"info","metadata":{"product":"ordermanagementsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["联系新订单系统开发同事进行修改。</div>"],"case-insensitive":true}]}]},{"id":"inspur-ec-government-approval-platform","info":{"name":"inspur-ec-government-approval-platform","author":"cn-kali-team","tags":"detect,tech,inspur-ec-government-approval-platform","severity":"info","metadata":{"product":"inspur-ec-government-approval-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["langchao.ecgap.outportal","onlinequery/querylist.aspx"],"case-insensitive":true}]}]},{"id":"salien-device-integrity-management-system","info":{"name":"salien-device-integrity-management-system","author":"cn-kali-team","tags":"detect,tech,salien-device-integrity-management-system","severity":"info","metadata":{"product":"salien-device-integrity-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["rmsie = /(msie\\s|trident.*rv:)([\\w.]+)/"],"case-insensitive":true}]}]},{"id":"sympa-mailing-list-server","info":{"name":"sympa-mailing-list-server","author":"cn-kali-team","tags":"detect,tech,sympa-mailing-list-server","severity":"info","metadata":{"product":"sympa-mailing-list-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"sympa logo","content=\"sympa"],"case-insensitive":true}]}]},{"id":"faq-manager","info":{"name":"faq-manager","author":"cn-kali-team","tags":"detect,tech,faq-manager","severity":"info","metadata":{"product":"faq-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"admin/\">admin area</a></td></tr></table></body></html>","<td><font size=\"-1\"> </font><p><b><font size=\"-1\">faq admin area</font></b></td>"],"case-insensitive":true}]}]},{"id":"apilayer-caddy","info":{"name":"apilayer-caddy","author":"cn-kali-team","tags":"detect,tech,apilayer-caddy","severity":"info","metadata":{"product":"apilayer-caddy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: caddy"],"part":"header","case-insensitive":true}]}]},{"id":"pulsesecure-ssl-vpn","info":{"name":"pulsesecure-ssl-vpn","author":"cn-kali-team","tags":"detect,tech,pulsesecure-ssl-vpn","severity":"info","metadata":{"product":"pulsesecure-ssl-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<b>pulse connect secure</b>","<title>pulse connect secure</title>"],"case-insensitive":true}]}]},{"id":"eureka-server","info":{"name":"eureka-server","author":"cn-kali-team","tags":"detect,tech,eureka-server","severity":"info","metadata":{"product":"eureka-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["eureka/css/wro.css"],"case-insensitive":true}]}]},{"id":"policyretriever","info":{"name":"policyretriever","author":"cn-kali-team","tags":"detect,tech,policyretriever","severity":"info","metadata":{"product":"policyretriever","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"heading1\">policyretriever service</p>"],"case-insensitive":true}]}]},{"id":"fu-meng-yun","info":{"name":"孚盟云","author":"cn-kali-team","tags":"detect,tech,孚盟云","severity":"info","metadata":{"product":"孚盟云","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["fumasoft","孚盟云"],"condition":"and","case-insensitive":true}]}]},{"id":"pagecookery-microblog","info":{"name":"pagecookery-microblog","author":"cn-kali-team","tags":"detect,tech,pagecookery-microblog","severity":"info","metadata":{"product":"pagecookery-microblog","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://pagecookery.com"],"case-insensitive":true}]}]},{"id":"jiaozhichu-online-test-system","info":{"name":"jiaozhichu-online-test-system","author":"cn-kali-team","tags":"detect,tech,jiaozhichu-online-test-system","severity":"info","metadata":{"product":"jiaozhichu-online-test-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"jiaozhichu","href=\"/ksxt/h5/images/jiaozhichu.ico"],"case-insensitive":true}]}]},{"id":"smartoa","info":{"name":"smartoa","author":"cn-kali-team","tags":"detect,tech,smartoa","severity":"info","metadata":{"product":"smartoa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/smartoa.plist","href=\"http://www.smartoa.com.cn/download/smartoa.apk\">安卓客户端</a>"],"case-insensitive":true}]}]},{"id":"scientific-research-instrument-network-service-platform","info":{"name":"scientific-research-instrument-network-service-platform","author":"cn-kali-team","tags":"detect,tech,scientific-research-instrument-network-service-platform","severity":"info","metadata":{"product":"scientific-research-instrument-network-service-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content: \"/lfsms/user/login2?go=\" + go"],"case-insensitive":true}]}]},{"id":"yioks-campus-football-management-platform","info":{"name":"yioks-campus-football-management-platform","author":"cn-kali-team","tags":"detect,tech,yioks-campus-football-management-platform","severity":"info","metadata":{"product":"yioks-campus-football-management-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<script>document.location='/index.mpl?a=login'</script>"],"case-insensitive":true}]}]},{"id":"bithighway-product","info":{"name":"bithighway-product","author":"cn-kali-team","tags":"detect,tech,bithighway-product","severity":"info","metadata":{"product":"bithighway-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href='http://www.bithighway.com' target=_blank>北京碧海威科技有限公司<"],"case-insensitive":true}]}]},{"id":"mysqlman","info":{"name":"mysqlman","author":"cn-kali-team","tags":"detect,tech,mysqlman","severity":"info","metadata":{"product":"mysqlman","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"mysql.cgi?do=top_level_op","size=\"1\">mysqlman"],"case-insensitive":true}]}]},{"id":"feifeicms","info":{"name":"feifeicms","author":"cn-kali-team","tags":"detect,tech,feifeicms","severity":"info","metadata":{"product":"feifeicms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["data-target=\"#navbar-feifeicms\""],"case-insensitive":true}]}]},{"id":"anneca-intouch-crm","info":{"name":"anneca-intouch-crm","author":"cn-kali-team","tags":"detect,tech,anneca-intouch-crm","severity":"info","metadata":{"product":"anneca-intouch-crm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.anneca.cz\""],"case-insensitive":true}]}]},{"id":"vertiv-system","info":{"name":"vertiv-system","author":"cn-kali-team","tags":"detect,tech,vertiv-system","severity":"info","metadata":{"product":"vertiv-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var port = \"9528"],"case-insensitive":true}]}]},{"id":"linked-see","info":{"name":"linked-see","author":"cn-kali-team","tags":"detect,tech,linked-see","severity":"info","metadata":{"product":"linked-see","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["4aa64c674d4f0b5f85b17ae727fa5e7e"]},{"type":"word","words":["<title>linked coms</title>"],"case-insensitive":true}]}]},{"id":"jing-yun-wang-luo-fang-bing-du-xi-tong","info":{"name":"景云网络防病毒系统","author":"cn-kali-team","tags":"detect,tech,景云网络防病毒系统","severity":"info","metadata":{"product":"景云网络防病毒系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["login_form","styles/images/logo.png","防病毒"],"condition":"and","case-insensitive":true}]}]},{"id":"irainone-parkingsystem","info":{"name":"irainone-parkingsystem","author":"cn-kali-team","tags":"detect,tech,irainone-parkingsystem","severity":"info","metadata":{"product":"irainone-parkingsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/static/img/allstar.png\""],"case-insensitive":true}]}]},{"id":"imo-yun-ban-gong-shi","info":{"name":"imo-云办公室","author":"cn-kali-team","tags":"detect,tech,imo-云办公室","severity":"info","metadata":{"product":"imo-云办公室","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["download/imo_setup.exe"],"case-insensitive":true}]}]},{"id":"xbrother-monitor","info":{"name":"xbrother-monitor","author":"cn-kali-team","tags":"detect,tech,xbrother-monitor","severity":"info","metadata":{"product":"xbrother-monitor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["if (!getcookie(\"x_gu_sid\""],"case-insensitive":true}]}]},{"id":"opsview-product","info":{"name":"opsview-product","author":"cn-kali-team","tags":"detect,tech,opsview-product","severity":"info","metadata":{"product":"opsview-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/images/opsview_logo_large.gif","/images/opsviewcommunitylogo-large.png","follow @opsview"],"case-insensitive":true}]}]},{"id":"lenovo-fang-huo-qiang","info":{"name":"lenovo-防火墙","author":"cn-kali-team","tags":"detect,tech,lenovo-防火墙","severity":"info","metadata":{"product":"lenovo-防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["联想防火墙"],"case-insensitive":true}]}]},{"id":"whir","info":{"name":"whir","author":"cn-kali-team","tags":"detect,tech,whir","severity":"info","metadata":{"product":"whir","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["css/css_whir.css"],"case-insensitive":true}]}]},{"id":"e-soonlink","info":{"name":"e-soonlink-","author":"cn-kali-team","tags":"detect,tech,e-soonlink-","severity":"info","metadata":{"product":"e-soonlink-","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["document.writeln(companymail)","志高易联"],"case-insensitive":true}]}]},{"id":"sourcebans","info":{"name":"sourcebans","author":"cn-kali-team","tags":"detect,tech,sourcebans","severity":"info","metadata":{"product":"sourcebans","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"footqversion\">version(","http://www.sourcebans.net\" target=\"_blank\"><img src=\"images/sb.png"],"case-insensitive":true}]}]},{"id":"dao-er-yun--yi-lian-tong-zhi-hui-guan-li-ping-tai","info":{"name":"道尔云 一脸通智慧管理平台","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"道尔云 一脸通智慧管理平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ashxrequest/systemindex/systemlogin.ashx","view/userreserved/userreservedtest.aspx"],"condition":"and","case-insensitive":true},{"type":"word","words":["当前密码安全性不好,请修改密码!","view/systemmng/pwdchanges.aspx"],"condition":"and","case-insensitive":true},{"type":"word","words":["location: /login.aspx?returnurl=%2f"],"part":"header","case-insensitive":true}]}]},{"id":"cancosoft-asset-management","info":{"name":"cancosoft-asset-management","author":"cn-kali-team","tags":"detect,tech,cancosoft-asset-management","severity":"info","metadata":{"product":"cancosoft-asset-management","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var path = \"/cassets\";"],"case-insensitive":true}]}]},{"id":"digiwin-system","info":{"name":"digiwin-system","author":"cn-kali-team","tags":"detect,tech,digiwin-system","severity":"info","metadata":{"product":"digiwin-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"common_footer1030_textfontlink\""],"case-insensitive":true}]}]},{"id":"phpldapadmin","info":{"name":"phpldapadmin","author":"cn-kali-team","tags":"detect,tech,phpldapadmin","severity":"info","metadata":{"product":"phpldapadmin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://phpldapadmin.sourceforge.net/documentation\" onclick","src=\"images/default/logo.png\" title=\"phpldapadmin logo"],"case-insensitive":true}]}]},{"id":"apache-storm","info":{"name":"apache-storm","author":"cn-kali-team","tags":"detect,tech,apache-storm","severity":"info","metadata":{"product":"storm","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>storm ui</title>"],"case-insensitive":true}]}]},{"id":"eyou-anti-spam-mailbox-firewall","info":{"name":"eyou-anti-spam-mailbox-firewall","author":"cn-kali-team","tags":"detect,tech,eyou-anti-spam-mailbox-firewall","severity":"info","metadata":{"product":"eyou-anti-spam-mailbox-firewall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"亿邮大容量电子邮件系统,反垃圾邮件网关"],"case-insensitive":true}]}]},{"id":"hospital-material-supplier-b2b-platform","info":{"name":"hospital-material-supplier-b2b-platform","author":"cn-kali-team","tags":"detect,tech,hospital-material-supplier-b2b-platform","severity":"info","metadata":{"product":"hospital-material-supplier-b2b-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["医院物资供应商b2b平台"],"case-insensitive":true}]}]},{"id":"octopussy","info":{"name":"octopussy","author":"cn-kali-team","tags":"detect,tech,octopussy","severity":"info","metadata":{"product":"octopussy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["align=\"center\" >octopussy","value=\"connect to octopussy"],"case-insensitive":true}]}]},{"id":"zhong-ke-wang-wei-an-quan-kong-zhi-xi-tong","info":{"name":"中科网威-安全控制系统","author":"cn-kali-team","tags":"detect,tech,中科网威-安全控制系统","severity":"info","metadata":{"product":"中科网威-安全控制系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"con_r_b_r\"> <input class=\"btn_bg","dkey_login\"?0?"],"condition":"and","case-insensitive":true}]}]},{"id":"drwebantivirus","info":{"name":"drwebantivirus","author":"cn-kali-team","tags":"detect,tech,drwebantivirus","severity":"info","metadata":{"product":"drwebantivirus","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/avdesk/includes/system/templates/images/logo_en.png"],"case-insensitive":true},{"type":"word","words":["server: drwebserver"],"part":"header","case-insensitive":true}]}]},{"id":"php-link-directory","info":{"name":"php-link-directory","author":"cn-kali-team","tags":"detect,tech,php-link-directory","severity":"info","metadata":{"product":"php-link-directory","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"php link directory","powered by phplinkdirectory"],"case-insensitive":true}]}]},{"id":"viewgood-streammedia","info":{"name":"viewgood-streammedia","author":"cn-kali-team","tags":"detect,tech,viewgood-streammedia","severity":"info","metadata":{"product":"viewgood-streammedia","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location.href","var webvirtualdiretory = 'viewgood';"],"condition":"and","case-insensitive":true},{"type":"word","words":["fgetquery","src='/viewgood/pc/","viewgood"],"case-insensitive":true}]}]},{"id":"pageup-people","info":{"name":"pageup-people","author":"cn-kali-team","tags":"detect,tech,pageup-people","severity":"info","metadata":{"product":"pageup-people","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"pageuplink\" href=\"http://www.pageuppeople.com","powered by pageup people"],"case-insensitive":true}]}]},{"id":"ffay-lanproxy","info":{"name":"ffay-lanproxy","author":"cn-kali-team","tags":"detect,tech,ffay-lanproxy","severity":"info","metadata":{"product":"ffay-lanproxy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["\"/lanproxy-config/\""],"case-insensitive":true}]}]},{"id":"topwalk-mtp","info":{"name":"topwalk-mtp","author":"cn-kali-team","tags":"detect,tech,topwalk-mtp","severity":"info","metadata":{"product":"topwalk-mtp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta http-equiv=\"refresh\" content=\"0;url=/usercertloginaction.action\" />"],"case-insensitive":true}]}]},{"id":"soeasy-website-cluster-system","info":{"name":"soeasy-website-cluster-system","author":"cn-kali-team","tags":"detect,tech,soeasy-website-cluster-system","severity":"info","metadata":{"product":"soeasy-website-cluster-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["egss_user"],"case-insensitive":true}]}]},{"id":"china-shine-video-on-demand","info":{"name":"china-shine-video-on-demand","author":"cn-kali-team","tags":"detect,tech,china-shine-video-on-demand","severity":"info","metadata":{"product":"china-shine-video-on-demand","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["background=\"images/cbackground.jpg\"","视翰公司"],"case-insensitive":true}]}]},{"id":"yonyou-erp","info":{"name":"yonyou-erp","author":"cn-kali-team","tags":"detect,tech,yonyou-erp","severity":"info","metadata":{"product":"yonyou-erp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["login_main_bg","login_owner"],"case-insensitive":true}]}]},{"id":"ke-lai-wang-luo-quan-liu-liang-an-quan-fen-xi-xi-tong","info":{"name":"科来-网络全流量安全分析系统","author":"cn-kali-team","tags":"detect,tech,科来-网络全流量安全分析系统","severity":"info","metadata":{"product":"科来-网络全流量安全分析系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["data-i18n=\"[html]username\">#username </td>","nfr=\"true\""],"condition":"and","case-insensitive":true}]}]},{"id":"asynqmon","info":{"name":"asynqmon","author":"cn-kali-team","tags":"detect,tech,asynqmon","severity":"info","metadata":{"product":"asynqmon","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["7d56c3bcc4d9522bdc958785f1866776"]},{"type":"word","words":["content=\"asynq monitoring web console\""],"case-insensitive":true}]}]},{"id":"esvon-classifieds","info":{"name":"esvon-classifieds","author":"cn-kali-team","tags":"detect,tech,esvon-classifieds","severity":"info","metadata":{"product":"esvon-classifieds","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by esvon"],"case-insensitive":true}]}]},{"id":"clipbucket","info":{"name":"clipbucket","author":"cn-kali-team","tags":"detect,tech,clipbucket","severity":"info","metadata":{"product":"clipbucket","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- clipbucket","content=\"clipbucket"],"condition":"and","case-insensitive":true},{"type":"word","words":["<!-- forged by clipbucket","href=\"http://clip-bucket.com/\">clipbucket"],"case-insensitive":true}]}]},{"id":"cgiproxy","info":{"name":"cgiproxy","author":"cn-kali-team","tags":"detect,tech,cgiproxy","severity":"info","metadata":{"product":"cgiproxy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.jmarshall.com/tools/cgiproxy/"],"case-insensitive":true}]}]},{"id":"tumblr","info":{"name":"tumblr","author":"cn-kali-team","tags":"detect,tech,tumblr","severity":"info","metadata":{"product":"tumblr","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- begin tumblr code --><iframe src=\"http://assets.tumblr.com/iframe.html","<meta name=\"tumblr-theme\" content="],"case-insensitive":true}]}]},{"id":"plesk-plesk-onyx","info":{"name":"plesk-plesk-onyx","author":"cn-kali-team","tags":"detect,tech,plesk-plesk-onyx","severity":"info","metadata":{"product":"plesk-plesk-onyx","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"plesk-build\""],"case-insensitive":true}]}]},{"id":"looyu-oms","info":{"name":"looyu-oms","author":"cn-kali-team","tags":"detect,tech,looyu-oms","severity":"info","metadata":{"product":"looyu-oms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"http://gate.looyu.com/"],"case-insensitive":true}]}]},{"id":"ruby-on-rails","info":{"name":"ruby-on-rails","author":"cn-kali-team","tags":"detect,tech,ruby-on-rails","severity":"info","metadata":{"product":"ruby-on-rails","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>ruby on rails</title>","alt=\"ruby on rails","content=\"ruby on rails"],"case-insensitive":true}]}]},{"id":"h3c-imc","info":{"name":"h3c-imc","author":"cn-kali-team","tags":"detect,tech,h3c-imc","severity":"info","metadata":{"product":"h3c-imc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["h3c 智能管理中心</span>","src=\"/imc/faces/extensionresource/com.h3c.imc.component.util.extensionresourceloader/"],"condition":"and","case-insensitive":true},{"type":"word","words":["/imc/login.jsf","<span class=\"cmn_mn_normalfont\">h3c 智能管理中心","action=\"/imc/login.jsf","com_h3c_imc_usr_usermgr_alluser_overlaydiv","href=\"/selfservice/javax.faces.resource/theme.css.xhtml?ln=primefaces-imc-classic-blue\"","imc来宾接入自助管理系统","login_logo_h3c.png.jsf","src=\"/imc/javax.faces.resource/images/login_logo_h3c.png.jsf?ln=primefaces-imc-new-webui"],"case-insensitive":true}]}]},{"id":"hiki","info":{"name":"hiki","author":"cn-kali-team","tags":"detect,tech,hiki","severity":"info","metadata":{"product":"hiki","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/hiki_base.css","by <a href=\"http://hikiwiki.org/","content=\"hiki"],"case-insensitive":true}]}]},{"id":"cool-admin","info":{"name":"cool-admin","author":"cn-kali-team","tags":"detect,tech,cool-admin","severity":"info","metadata":{"product":"cool-admin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["0a1a4905050aeb5bcc9d0c124bb96eb6"]},{"type":"word","words":["cool-admin"],"case-insensitive":true}]}]},{"id":"lian-ruanit-an-quan-yun-wei-guan-li-xi-tong","info":{"name":"联软it安全运维管理系统","author":"cn-kali-team","tags":"detect,tech,联软it安全运维管理系统","severity":"info","metadata":{"product":"联软it安全运维管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["联软it安全运维管理系统"],"case-insensitive":true}]}]},{"id":"tian-rong-xin-wang-luo-wei-shi-guo-lü-wang-guan","info":{"name":"天融信-网络卫士过滤网关","author":"cn-kali-team","tags":"detect,tech,天融信-网络卫士过滤网关","severity":"info","metadata":{"product":"天融信-网络卫士过滤网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["天融信网络卫士过滤网关"],"case-insensitive":true}]}]},{"id":"cameralife","info":{"name":"cameralife","author":"cn-kali-team","tags":"detect,tech,cameralife","severity":"info","metadata":{"product":"cameralife","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"camera life","this site is powered by camera life"],"condition":"and","case-insensitive":true}]}]},{"id":"jie-ru-wang-guan-guan-li-ping-tai","info":{"name":"接入网关管理平台","author":"cn-kali-team","tags":"detect,tech,接入网关管理平台","severity":"info","metadata":{"product":"接入网关管理平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["edp-web/login.jsp"],"case-insensitive":true}]}]},{"id":"yun-shi-kong-she-hui-hua-shang-ye-erp-xi-tong","info":{"name":"云时空社会化商业erp系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"云时空社会化商业erp系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["set-cookie: emscm.session.id"],"part":"header","case-insensitive":true},{"type":"word","words":["<title> 云时空社会化商业erp系统</title>"],"case-insensitive":true}]}]},{"id":"akiva-webboard","info":{"name":"akiva-webboard","author":"cn-kali-team","tags":"detect,tech,akiva-webboard","severity":"info","metadata":{"product":"akiva-webboard","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by webboard"],"case-insensitive":true}]}]},{"id":"ultimate-bulletin-board","info":{"name":"ultimate-bulletin-board","author":"cn-kali-team","tags":"detect,tech,ultimate-bulletin-board","severity":"info","metadata":{"product":"ultimate-bulletin-board","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.groupee.com/landing/goto.php?a=ubb.classic\">powered by ubb.classic&trade","<meta name=\"generator\" content=\"ubb.threads"],"case-insensitive":true}]}]},{"id":"pcitc-management-platform","info":{"name":"pcitc-management-platform","author":"cn-kali-team","tags":"detect,tech,pcitc-management-platform","severity":"info","metadata":{"product":"pcitc-management-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.open(\"http://itmc.mmsh.sinopec.com/itgk/sysmgr/productregister/yunweiproregister.view\"); } "],"case-insensitive":true}]}]},{"id":"storage-management","info":{"name":"storage-management","author":"cn-kali-team","tags":"detect,tech,storage-management","severity":"info","metadata":{"product":"storage-management","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["firmware version: stor_2.0"],"case-insensitive":true}]}]},{"id":"zzsmit-public-bicycle-management-system","info":{"name":"zzsmit-public-bicycle-management-system","author":"cn-kali-team","tags":"detect,tech,zzsmit-public-bicycle-management-system","severity":"info","metadata":{"product":"zzsmit-public-bicycle-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/skins/bicycle/css/login.css\""],"case-insensitive":true}]}]},{"id":"gsoap","info":{"name":"gsoap","author":"cn-kali-team","tags":"detect,tech,gsoap","severity":"info","metadata":{"product":"gsoap","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: gsoap"],"part":"header","case-insensitive":true}]}]},{"id":"xunruicms","info":{"name":"xunruicms","author":"cn-kali-team","tags":"detect,tech,xunruicms","severity":"info","metadata":{"product":"xunruicms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"xunruicms\""],"case-insensitive":true}]}]},{"id":"cisco-acs","info":{"name":"cisco-acs","author":"cn-kali-team","tags":"detect,tech,cisco-acs","severity":"info","metadata":{"product":"cisco-acs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta http-equiv=\"refresh\" content=\"0;url=/acsadmin\" />","cisco"],"condition":"and","case-insensitive":true},{"type":"word","words":["href=\"/acsadmin\">launch acs"],"case-insensitive":true}]}]},{"id":"suo-zi-yu-la-ji-you-jian-fang-huo-qiang","info":{"name":"梭子鱼垃圾邮件防火墙","author":"cn-kali-team","tags":"detect,tech,梭子鱼垃圾邮件防火墙","severity":"info","metadata":{"product":"梭子鱼垃圾邮件防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["梭子鱼垃圾邮件防火墙"],"case-insensitive":true}]}]},{"id":"pixeon-pacs","info":{"name":"pixeon-pacs","author":"cn-kali-team","tags":"detect,tech,pixeon-pacs","severity":"info","metadata":{"product":"pixeon-pacs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span class=\"apptitle\" id=\"apppixviewer\">"],"case-insensitive":true}]}]},{"id":"sxt234-system","info":{"name":"sxt234-system","author":"cn-kali-team","tags":"detect,tech,sxt234-system","severity":"info","metadata":{"product":"sxt234-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"head_right\" onclick=\"window_close()\">"],"case-insensitive":true}]}]},{"id":"zeppelin","info":{"name":"zeppelin","author":"cn-kali-team","tags":"detect,tech,zeppelin","severity":"info","metadata":{"product":"zeppelin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title ng-bind=\"$root.pagetitle\">zeppelin</title>"],"case-insensitive":true}]}]},{"id":"eqmail","info":{"name":"eqmail","author":"cn-kali-team","tags":"detect,tech,eqmail","severity":"info","metadata":{"product":"eqmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<frame src=\"/cgi-bin/eqwebmail?empty=1","href=\"eqmail.ico"],"case-insensitive":true}]}]},{"id":"ngi-diam4","info":{"name":"ngi-diam4","author":"cn-kali-team","tags":"detect,tech,ngi-diam4","severity":"info","metadata":{"product":"ngi-diam4","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/diam4/inc/lang/fr/lang.min.js\""],"case-insensitive":true}]}]},{"id":"sungoin-traffic-management-platform","info":{"name":"sungoin-traffic-management-platform","author":"cn-kali-team","tags":"detect,tech,sungoin-traffic-management-platform","severity":"info","metadata":{"product":"sungoin-traffic-management-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["尚景流量管理平台"],"case-insensitive":true}]}]},{"id":"aolansoft-studentsystem","info":{"name":"aolansoft-studentsystem","author":"cn-kali-team","tags":"detect,tech,aolansoft-studentsystem","severity":"info","metadata":{"product":"aolansoft-studentsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["vcode.aspx"],"case-insensitive":true}]}]},{"id":"he-zhong-shu-ju-shi-pin-an-quan-jie-ru-yong-hu-ren-zheng-xi-tong","info":{"name":"合众数据-视频安全接入用户认证系统","author":"cn-kali-team","tags":"detect,tech,合众数据-视频安全接入用户认证系统","severity":"info","metadata":{"product":"合众数据-视频安全接入用户认证系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["txtpasswordcssclass","视频安全接入用户认证系统"],"condition":"and","case-insensitive":true}]}]},{"id":"pandora-fms","info":{"name":"pandora-fms","author":"cn-kali-team","tags":"detect,tech,pandora-fms","severity":"info","metadata":{"product":"pandora-fms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["title=\"pandora rss feed"],"case-insensitive":true}]}]},{"id":"chinaorgantransplantresponsesystem","info":{"name":"chinaorgantransplantresponsesystem","author":"cn-kali-team","tags":"detect,tech,chinaorgantransplantresponsesystem","severity":"info","metadata":{"product":"chinaorgantransplantresponsesystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"images/logo_cotsr.png\""],"case-insensitive":true}]}]},{"id":"ymhome-oa","info":{"name":"ymhome-oa","author":"cn-kali-team","tags":"detect,tech,ymhome-oa","severity":"info","metadata":{"product":"ymhome-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/yimioa.apk"],"case-insensitive":true}]}]},{"id":"globalsign-cert","info":{"name":"globalsign-cert","author":"cn-kali-team","tags":"detect,tech,globalsign-cert","severity":"info","metadata":{"product":"globalsign-cert","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["//seal.globalsign.com/siteseal"],"case-insensitive":true}]}]},{"id":"sx-shop","info":{"name":"sx-shop","author":"cn-kali-team","tags":"detect,tech,sx-shop","severity":"info","metadata":{"product":"sx-shop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alert(\"ihr suchbegriff muss mind. aus 3 zeichen bestehen.\");","content=\"source worx - software development\">"],"case-insensitive":true}]}]},{"id":"om-video-conferencing","info":{"name":"om-video-conferencing","author":"cn-kali-team","tags":"detect,tech,om-video-conferencing","severity":"info","metadata":{"product":"om-video-conferencing","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<p><a href=\"http://www.omeeting.com\" target='_blank'>powered by","content=\"om视频会议","onclick=\"gotomeeting('/gotomeeting.php"],"case-insensitive":true}]}]},{"id":"hanwei-cms","info":{"name":"hanwei-cms","author":"cn-kali-team","tags":"detect,tech,hanwei-cms","severity":"info","metadata":{"product":"hanwei-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["showsubpage.jsp"],"case-insensitive":true}]}]},{"id":"ipec-ipms","info":{"name":"ipec-ipms","author":"cn-kali-team","tags":"detect,tech,ipec-ipms","severity":"info","metadata":{"product":"ipec-ipms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/login/lpec/qrcode.html"],"case-insensitive":true}]}]},{"id":"li-da-ke-xun-ldt-an-quan-wang-guan","info":{"name":"力达科讯-ldt安全网关","author":"cn-kali-team","tags":"detect,tech,力达科讯-ldt安全网关","severity":"info","metadata":{"product":"力达科讯-ldt安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<body onload=\"chkversion();setlanguage();loading()\" onkeydown=\"keylogin(event);\">","湖北力达科讯"],"condition":"and","case-insensitive":true}]}]},{"id":"jboss-as","info":{"name":"jboss-as","author":"cn-kali-team","tags":"detect,tech,jboss-as","severity":"info","metadata":{"product":"jboss-as","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["manage this jboss as instance"],"case-insensitive":true}]}]},{"id":"jboss","info":{"name":"jboss","author":"cn-kali-team","tags":"detect,tech,jboss","severity":"info","metadata":{"product":"jboss","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["799f70b71314a7508326d1d2f68f7519"]},{"type":"word","words":["<a href=\"http://jboss.org\">","jboss.css"],"case-insensitive":true},{"type":"word","words":["x-powered-by: jboss"],"part":"header","case-insensitive":true}]}]},{"id":"lenovo-thinkserver","info":{"name":"lenovo-thinkserver","author":"cn-kali-team","tags":"detect,tech,lenovo-thinkserver","severity":"info","metadata":{"product":"lenovo-thinkserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["thinkserver"],"case-insensitive":true}]}]},{"id":"leadsec-security-gateway","info":{"name":"leadsec-security-gateway","author":"cn-kali-team","tags":"detect,tech,leadsec-security-gateway","severity":"info","metadata":{"product":"leadsec-security-gateway","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["login","安全系统","网御星云"],"condition":"and","case-insensitive":true}]}]},{"id":"codesafe","info":{"name":"codesafe","author":"cn-kali-team","tags":"detect,tech,codesafe","severity":"info","metadata":{"product":"codesafe","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["baseurl : 'app', //配置模块根路径到静态资源根目录。"],"case-insensitive":true}]}]},{"id":"fidion-cms","info":{"name":"fidion-cms","author":"cn-kali-team","tags":"detect,tech,fidion-cms","severity":"info","metadata":{"product":"fidion-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- fcms-template head.tpl begins"],"case-insensitive":true}]}]},{"id":"open-source-ticket-request-system","info":{"name":"open-source-ticket-request-system","author":"cn-kali-team","tags":"detect,tech,open-source-ticket-request-system","severity":"info","metadata":{"product":"open-source-ticket-request-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/otrs-web/images/"],"case-insensitive":true}]}]},{"id":"360-webscan","info":{"name":"360-webscan","author":"cn-kali-team","tags":"detect,tech,360-webscan","severity":"info","metadata":{"product":"360-webscan","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["webscan.360.cn/status/pai/hash"],"case-insensitive":true}]}]},{"id":"tinyproxy","info":{"name":"tinyproxy","author":"cn-kali-team","tags":"detect,tech,tinyproxy","severity":"info","metadata":{"product":"tinyproxy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: tinyproxy/"],"part":"header","case-insensitive":true}]}]},{"id":"kingdee-chan-pin","info":{"name":"kingdee产品","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"kingdee产品","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["kingdee.entryrole","loginkdlogo"],"condition":"and","case-insensitive":true},{"type":"word","words":["class=\"kd-div-loading-ct\"","金蝶国际软件集团有限公司版权所有","/clientbin/kingdee.bos.xpf.app.xap","var formidafterlogin = '\"bos_mainconsolesutra\"","eassessionid","logo-kingdee.png","/eassso/common","html5/content/themes/kdcss.min.css"],"case-insensitive":true}]}]},{"id":"mingyuanyun-sales","info":{"name":"mingyuanyun-sales","author":"cn-kali-team","tags":"detect,tech,mingyuanyun-sales","severity":"info","metadata":{"product":"mingyuanyun-sales","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img id=\"erp\" src=\"/_imgs/login/zs_erp.png","value=\"明源售楼管理系统v5.0\""],"case-insensitive":true}]}]},{"id":"swiki","info":{"name":"swiki","author":"cn-kali-team","tags":"detect,tech,swiki","severity":"info","metadata":{"product":"swiki","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://minnow.cc.gatech.edu/swiki\" title=\"comswiki: powered by squeak\"><img src=\"/defaultscheme/comswiki.gif\" border=0 width=277 height=88 alt=\"comswiki: powered by squeak\"></a><br>"],"case-insensitive":true}]}]},{"id":"an-heng-xin-xi-ming-yu-shu-ju-ku-shen-ji-yu-feng-xian-kong-zhi-xi-tong","info":{"name":"安恒信息-明御数据库审计与风险控制系统","author":"cn-kali-team","tags":"detect,tech,安恒信息-明御数据库审计与风险控制系统","severity":"info","metadata":{"product":"安恒信息-明御数据库审计与风险控制系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["明御数据库审计"],"case-insensitive":true}]}]},{"id":"sarg","info":{"name":"sarg","author":"cn-kali-team","tags":"detect,tech,sarg","severity":"info","metadata":{"product":"sarg","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"logo\"><a href=\"http://sarg.sourceforge.net\""],"case-insensitive":true}]}]},{"id":"a2b-webserver","info":{"name":"a2b-webserver","author":"cn-kali-team","tags":"detect,tech,a2b-webserver","severity":"info","metadata":{"product":"a2b-webserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: a2b webserver"],"part":"header","case-insensitive":true}]}]},{"id":"easy-file-sharing-web-server","info":{"name":"easy-file-sharing-web-server","author":"cn-kali-team","tags":"detect,tech,easy-file-sharing-web-server","severity":"info","metadata":{"product":"easy-file-sharing-web-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: easy file sharing web server"],"part":"header","case-insensitive":true}]}]},{"id":"lnmp","info":{"name":"lnmp","author":"cn-kali-team","tags":"detect,tech,lnmp","severity":"info","metadata":{"product":"lnmp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["lnmp一键安装包"],"case-insensitive":true}]}]},{"id":"kampyle","info":{"name":"kampyle","author":"cn-kali-team","tags":"detect,tech,kampyle","severity":"info","metadata":{"product":"kampyle","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http://cf.kampyle.com/k_button.js","start kampyle feedback form button"],"case-insensitive":true}]}]},{"id":"emerson-permasense","info":{"name":"emerson-permasense","author":"cn-kali-team","tags":"detect,tech,emerson-permasense","severity":"info","metadata":{"product":"emerson-permasense","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/permasense/app/webroot/flot/css/layout.print.ie.css"],"case-insensitive":true}]}]},{"id":"nessus","info":{"name":"nessus","author":"cn-kali-team","tags":"detect,tech,nessus","severity":"info","metadata":{"product":"nessus","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>nessus</title>"],"case-insensitive":true}]}]},{"id":"aliyunoss","info":{"name":"aliyunoss","author":"cn-kali-team","tags":"detect,tech,aliyunoss","severity":"info","metadata":{"product":"aliyunoss","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: aliyunoss"],"part":"header","case-insensitive":true}]}]},{"id":"yfidea-oa","info":{"name":"yfidea-oa","author":"cn-kali-team","tags":"detect,tech,yfidea-oa","severity":"info","metadata":{"product":"yfidea-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["background=\"oa/images/index/oalogin.jpg\""],"case-insensitive":true}]}]},{"id":"hua-tian-dong-li-xie-tongoa-ban-gong-xi-tong","info":{"name":"华天动力协同oa办公系统","author":"cn-kali-team","tags":"detect,tech,华天动力协同oa办公系统","severity":"info","metadata":{"product":"华天动力协同oa办公系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/oaapp/webobjects/oaapp.woa"],"case-insensitive":true}]}]},{"id":"ez-publish","info":{"name":"ez-publish","author":"cn-kali-team","tags":"detect,tech,ez-publish","severity":"info","metadata":{"product":"ez-publish","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["set-cookie: ezsessioncookie"],"part":"header","case-insensitive":true}]}]},{"id":"destoon","info":{"name":"destoon","author":"cn-kali-team","tags":"detect,tech,destoon","severity":"info","metadata":{"product":"destoon","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"destoon","destoon_moduleid"],"case-insensitive":true}]}]},{"id":"365xxy-examing","info":{"name":"365xxy-examing","author":"cn-kali-team","tags":"detect,tech,365xxy-examing","severity":"info","metadata":{"product":"365xxy-examing","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>云时政在线考试系统</title>","href=https://unpkg.com/element-ui/lib/theme-chalk/index.css"],"case-insensitive":true}]}]},{"id":"kibana","info":{"name":"kibana","author":"cn-kali-team","tags":"detect,tech,kibana","severity":"info","metadata":{"product":"kibana","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["kbn-name: kibana"],"part":"header","case-insensitive":true}]}]},{"id":"symantec-endpoint-protection-manager","info":{"name":"symantec-endpoint-protection-manager","author":"cn-kali-team","tags":"detect,tech,symantec-endpoint-protection-manager","severity":"info","metadata":{"product":"symantec-endpoint-protection-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/portal/about.jsp","<!-- now, if it is ie on windows platform, we check to see which version of jws is installed -->"],"condition":"and","case-insensitive":true},{"type":"word","words":["<div style=\"font-family: tahoma, verdana, arial, helvetica, sans-serif; font-size:11px;\">version","<tr><td align=\"left\" style=\"font-family:arial; font-size:18pt\"><b>symantec endpoint protection manager<br>web access</b></td></tr>"],"case-insensitive":true}]}]},{"id":"360-an-quan-lu-you","info":{"name":"360-安全路由","author":"cn-kali-team","tags":"detect,tech,360-安全路由","severity":"info","metadata":{"product":"360-安全路由","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["360loginflag","360安全路由"],"condition":"and","case-insensitive":true}]}]},{"id":"ufttt-iot","info":{"name":"ufttt-iot","author":"cn-kali-team","tags":"detect,tech,ufttt-iot","severity":"info","metadata":{"product":"ufttt-iot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"sdkjs/uftttsdk2.js\""],"case-insensitive":true}]}]},{"id":"ao-wei-ya-shi-ping-yun-ping-tai","info":{"name":"奥威亚视屏云平台","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"奥威亚视屏云平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["lickandshowsignupmodal","clickandshowloginmodal"],"condition":"and","case-insensitive":true},{"type":"word","words":["/css/newtontheme/assets/app.css"],"case-insensitive":true}]}]},{"id":"shop7z","info":{"name":"shop7z","author":"cn-kali-team","tags":"detect,tech,shop7z","severity":"info","metadata":{"product":"shop7z","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["function www_zzjs_net_change","id=\"www_zzjs_net_loding\""],"case-insensitive":true}]}]},{"id":"animati-pacs","info":{"name":"animati-pacs","author":"cn-kali-team","tags":"detect,tech,animati-pacs","severity":"info","metadata":{"product":"animati-pacs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<form action=\"\" onsubmit=\"pacs.login.sendpasswordrecoverymail()"],"case-insensitive":true}]}]},{"id":"smarterstats","info":{"name":"smarterstats","author":"cn-kali-team","tags":"detect,tech,smarterstats","severity":"info","metadata":{"product":"smarterstats","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<td class=bar1inner>smarterstats"],"case-insensitive":true}]}]},{"id":"whir-ezoffice","info":{"name":"whir-ezoffice","author":"cn-kali-team","tags":"detect,tech,whir-ezoffice","severity":"info","metadata":{"product":"whir-ezoffice","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/defaultroot/js/cookie.js","ezofficeusername","whirrootpath"],"case-insensitive":true}]}]},{"id":"synology-webstation","info":{"name":"synology-webstation","author":"cn-kali-team","tags":"detect,tech,synology-webstation","severity":"info","metadata":{"product":"synology-webstation","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"paragraph\">web station has been enabled. to finish setting up your website, please see the \"web service"],"case-insensitive":true}]}]},{"id":"simple-phishing-toolkit","info":{"name":"simple-phishing-toolkit","author":"cn-kali-team","tags":"detect,tech,simple-phishing-toolkit","severity":"info","metadata":{"product":"simple-phishing-toolkit","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span id=\"spt\"><a href=\"http://www.sptoolkit.com/download/\" target=\"_blank\">","content=\"welcome to spt - simple phishing toolkit. spt is a super simple but powerful phishing toolkit.\" />"],"case-insensitive":true}]}]},{"id":"huawei-ssl-vpn","info":{"name":"huawei-ssl-vpn","author":"cn-kali-team","tags":"detect,tech,huawei-ssl-vpn","severity":"info","metadata":{"product":"huawei-ssl-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["clear ssl cache successfully","svn_getlogincontextvalue(","getcookie(\"sgdportal\")"],"condition":"and","case-insensitive":true}]}]},{"id":"adviserlogiccli","info":{"name":"adviserlogiccli","author":"cn-kali-team","tags":"detect,tech,adviserlogiccli","severity":"info","metadata":{"product":"adviserlogiccli","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["navigator.serviceworker.register('/adviserlogiccache.js')"],"case-insensitive":true}]}]},{"id":"sq580-system","info":{"name":"sq580-system","author":"cn-kali-team","tags":"detect,tech,sq580-system","severity":"info","metadata":{"product":"sq580-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["3cspan id='cnzz_stat_icon_1274142628"],"case-insensitive":true}]}]},{"id":"empirebak","info":{"name":"empirebak","author":"cn-kali-team","tags":"detect,tech,empirebak","severity":"info","metadata":{"product":"empirebak","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div align=\"center\">(<a href=\"doc.html\" target=\"_blank\">查看帝国备份王说明文档</a>)</div>","powered by <a href=\"http://www.phome.net\" target=\"_blank\"><strong>empirebak</strong>"],"case-insensitive":true}]}]},{"id":"chinatelecomriskmanagementplatform","info":{"name":"chinatelecomriskmanagementplatform","author":"cn-kali-team","tags":"detect,tech,chinatelecomriskmanagementplatform","severity":"info","metadata":{"product":"chinatelecomriskmanagementplatform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["风险治理平台</div>"],"case-insensitive":true}]}]},{"id":"joinf-erp","info":{"name":"joinf-erp","author":"cn-kali-team","tags":"detect,tech,joinf-erp","severity":"info","metadata":{"product":"joinf-erp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1>富通天下erp</h1>"],"case-insensitive":true}]}]},{"id":"das-usmb","info":{"name":"das-usmb-","author":"cn-kali-team","tags":"detect,tech,das-usmb-","severity":"info","metadata":{"product":"das-usmb-","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"loadoem?path=login-logo.png","var pagefunc968535468893538dasdaweqwertion = \"timeout\";"],"case-insensitive":true}]}]},{"id":"secbi-product","info":{"name":"secbi-product","author":"cn-kali-team","tags":"detect,tech,secbi-product","severity":"info","metadata":{"product":"secbi-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/secbiutils.min.js"],"case-insensitive":true}]}]},{"id":"commonspot","info":{"name":"commonspot","author":"cn-kali-team","tags":"detect,tech,commonspot","severity":"info","metadata":{"product":"commonspot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"commonspot"],"case-insensitive":true}]}]},{"id":"splunkd","info":{"name":"splunkd","author":"cn-kali-team","tags":"detect,tech,splunkd","severity":"info","metadata":{"product":"splunkd","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>splunkd</title>"],"case-insensitive":true},{"type":"word","words":["server: splunkd"],"part":"header","case-insensitive":true}]}]},{"id":"mbedthis-appweb","info":{"name":"mbedthis-appweb","author":"cn-kali-team","tags":"detect,tech,mbedthis-appweb","severity":"info","metadata":{"product":"mbedthis-appweb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: mbedthis-appweb"],"part":"header","case-insensitive":true}]}]},{"id":"youngzsoft-dbmail","info":{"name":"youngzsoft-dbmail","author":"cn-kali-team","tags":"detect,tech,youngzsoft-dbmail","severity":"info","metadata":{"product":"youngzsoft-dbmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.dbmailserver.com\" target=_blank"],"case-insensitive":true}]}]},{"id":"netmizer-log-management-system","info":{"name":"netmizer-log-management-system","author":"cn-kali-team","tags":"detect,tech,netmizer-log-management-system","severity":"info","metadata":{"product":"netmizer-log-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var mywindows = ext.create","window.location.href=\"main.html\";"],"case-insensitive":true}]}]},{"id":"infowarelab-system-management-center","info":{"name":"infowarelab-system-management-center","author":"cn-kali-team","tags":"detect,tech,infowarelab-system-management-center","severity":"info","metadata":{"product":"infowarelab-system-management-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"main_supporterbar\">","class=\"main_loginbar"],"condition":"and","case-insensitive":true}]}]},{"id":"gitweb","info":{"name":"gitweb","author":"cn-kali-team","tags":"detect,tech,gitweb","severity":"info","metadata":{"product":"gitweb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/gitweb.css","/gitweb.js","content=\"gitweb"],"case-insensitive":true}]}]},{"id":"yizhitong-e7","info":{"name":"yizhitong-e7","author":"cn-kali-team","tags":"detect,tech,yizhitong-e7","severity":"info","metadata":{"product":"yizhitong-e7","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"hidden_isbiaozhun\""],"case-insensitive":true}]}]},{"id":"opt-webfieldassis","info":{"name":"opt-webfieldassis","author":"cn-kali-team","tags":"detect,tech,opt-webfieldassis","severity":"info","metadata":{"product":"opt-webfieldassis","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"javascript:__dopostback('lbanonymous','')\""],"case-insensitive":true}]}]},{"id":"brocade-network-advisor","info":{"name":"brocade-network-advisor","author":"cn-kali-team","tags":"detect,tech,brocade-network-advisor","severity":"info","metadata":{"product":"brocade-network-advisor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span class=\"ui-menuitem-text\">about network advisor</span></a>"],"case-insensitive":true}]}]},{"id":"tian-rong-xin-web-ying-yong-fang-huo-qiang","info":{"name":"天融信-web应用防火墙","author":"cn-kali-team","tags":"detect,tech,天融信-web应用防火墙","severity":"info","metadata":{"product":"天融信-web应用防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["evpng.fix('div, ul, img, li, input'); //evpng.fix('pngid1, pngid2')","web user login"],"condition":"and","case-insensitive":true}]}]},{"id":"ibm-tivoli-access-manager","info":{"name":"ibm-tivoli-access-manager","author":"cn-kali-team","tags":"detect,tech,ibm-tivoli-access-manager","severity":"info","metadata":{"product":"ibm-tivoli-access-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!--- do not translate or modify any part of the hidden parameter(s) --->","var warningstring = \"<b>warning:</b> to maintain your login session, make sure that your browser is configured to accept cookies.\";"],"case-insensitive":true}]}]},{"id":"websocket","info":{"name":"websocket","author":"cn-kali-team","tags":"detect,tech,websocket","severity":"info","metadata":{"product":"websocket","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["websockets request was expected","not a websocket handshake","ws://","wss://"],"case-insensitive":true}]}]},{"id":"disqus","info":{"name":"disqus","author":"cn-kali-team","tags":"detect,tech,disqus","severity":"info","metadata":{"product":"disqus","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["disqus_thread"],"case-insensitive":true}]}]},{"id":"hortonworks-smartsense-tool","info":{"name":"hortonworks-smartsense-tool","author":"cn-kali-team","tags":"detect,tech,hortonworks-smartsense-tool","severity":"info","metadata":{"product":"hortonworks-smartsense-tool","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"hstapp/config/environment\""],"case-insensitive":true}]}]},{"id":"apache-hadoop-yarn","info":{"name":"apache-hadoop-yarn","author":"cn-kali-team","tags":"detect,tech,apache-hadoop-yarn","severity":"info","metadata":{"product":"apache-hadoop-yarn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/static/yarn.css","yarn.dt.plugins.js"],"case-insensitive":true}]}]},{"id":"sawmill","info":{"name":"sawmill","author":"cn-kali-team","tags":"detect,tech,sawmill","severity":"info","metadata":{"product":"sawmill","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"password:error","src=\"/picts/sawmill_logo.png"],"case-insensitive":true}]}]},{"id":"citrix-xcp","info":{"name":"citrix-xcp","author":"cn-kali-team","tags":"detect,tech,citrix-xcp","severity":"info","metadata":{"product":"citrix-xcp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<p/>citrix systems, inc. xcp 1.6.10"],"case-insensitive":true}]}]},{"id":"internet-cluster-manager","info":{"name":"internet-cluster-manager","author":"cn-kali-team","tags":"detect,tech,internet-cluster-manager","severity":"info","metadata":{"product":"internet-cluster-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: internet cluster manager"],"part":"header","case-insensitive":true}]}]},{"id":"remobjects-dxsock","info":{"name":"remobjects-dxsock","author":"cn-kali-team","tags":"detect,tech,remobjects-dxsock","severity":"info","metadata":{"product":"remobjects-dxsock","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"remobjects sdk","remobjects software, llc."],"case-insensitive":true}]}]},{"id":"zhong-xin-jin-dun-xin-xi-an-quan-guan-li-xi-tong","info":{"name":"中新金盾-信息安全管理系统","author":"cn-kali-team","tags":"detect,tech,中新金盾-信息安全管理系统","severity":"info","metadata":{"product":"中新金盾-信息安全管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["c.alertmsg('磁盘空间剩余: ' + space_available + ' m','alert_msg');","onclick=\"javascript:useaccountlogin();"],"condition":"and","case-insensitive":true}]}]},{"id":"betasoft-pdm-data-acquisition","info":{"name":"betasoft-pdm-data-acquisition","author":"cn-kali-team","tags":"detect,tech,betasoft-pdm-data-acquisition","severity":"info","metadata":{"product":"betasoft-pdm-data-acquisition","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["align=\"center\" class=\"login_pdm\">","background: no-repeat url(../images/login/pdmdenglu1_28.png);"],"case-insensitive":true}]}]},{"id":"wisepower-oa","info":{"name":"wisepower-oa","author":"cn-kali-team","tags":"detect,tech,wisepower-oa","severity":"info","metadata":{"product":"wisepower-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/wisepower/login.jsp"],"case-insensitive":true}]}]},{"id":"vos-vos2009","info":{"name":"vos-vos2009","author":"cn-kali-team","tags":"detect,tech,vos-vos2009","severity":"info","metadata":{"product":"vos-vos2009","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"vos2009, voip, voip运营支撑系统, 软交换\""],"case-insensitive":true}]}]},{"id":"asp168-oho","info":{"name":"asp168-oho","author":"cn-kali-team","tags":"detect,tech,asp168-oho","severity":"info","metadata":{"product":"asp168-oho","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["default.php?mod=article&do=detail&tid","upload/moban/images/style.css"],"case-insensitive":true}]}]},{"id":"paloalto-networks-sso","info":{"name":"paloalto-networks-sso","author":"cn-kali-team","tags":"detect,tech,paloalto-networks-sso","severity":"info","metadata":{"product":"paloalto-networks-sso","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" 2015 palo alto networks, inc. "],"case-insensitive":true}]}]},{"id":"activecollab","info":{"name":"activecollab","author":"cn-kali-team","tags":"detect,tech,activecollab","severity":"info","metadata":{"product":"activecollab","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<p id=\"powered_by\"><a href=\"http://www.activecollab.com/\"","powered by activecollab"],"case-insensitive":true}]}]},{"id":"colasoft-network-information-comprehensive-detection-and-processing-platform","info":{"name":"colasoft-network-information-comprehensive-detection-and-processing-platform","author":"cn-kali-team","tags":"detect,tech,colasoft-network-information-comprehensive-detection-and-processing-platform","severity":"info","metadata":{"product":"colasoft-network-information-comprehensive-detection-and-processing-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta name=\"colasoft\"","科来网络信息综合检测处理平台"],"case-insensitive":true}]}]},{"id":"publicopinionmonitoringsystem","info":{"name":"publicopinionmonitoringsystem","author":"cn-kali-team","tags":"detect,tech,publicopinionmonitoringsystem","severity":"info","metadata":{"product":"publicopinionmonitoringsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/mpoweb/a/login"],"case-insensitive":true}]}]},{"id":"tpshop","info":{"name":"tpshop","author":"cn-kali-team","tags":"detect,tech,tpshop","severity":"info","metadata":{"product":"tpshop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tpshop.css","tpshop_config"],"condition":"and","case-insensitive":true}]}]},{"id":"polycom-ippbx","info":{"name":"polycom-ippbx","author":"cn-kali-team","tags":"detect,tech,polycom-ippbx","severity":"info","metadata":{"product":"polycom-ippbx","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"cgi-bin/httptohttps.cgi\"","src=\"cgi-bin/ippbx.cgi?module=showlogin\""],"case-insensitive":true}]}]},{"id":"blackjumbodog","info":{"name":"blackjumbodog","author":"cn-kali-team","tags":"detect,tech,blackjumbodog","severity":"info","metadata":{"product":"blackjumbodog","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: blackjumbodog"],"part":"header","case-insensitive":true}]}]},{"id":"kafkaoffsetmonitor","info":{"name":"kafkaoffsetmonitor","author":"cn-kali-team","tags":"detect,tech,kafkaoffsetmonitor","severity":"info","metadata":{"product":"kafkaoffsetmonitor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["css/cluster-viz.css"],"case-insensitive":true}]}]},{"id":"mcafee-intrushield","info":{"name":"mcafee-intrushield","author":"cn-kali-team","tags":"detect,tech,mcafee-intrushield","severity":"info","metadata":{"product":"mcafee-intrushield","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["intrushield","intruvert"],"condition":"and","case-insensitive":true}]}]},{"id":"appex-lotapp","info":{"name":"appex-lotapp","author":"cn-kali-team","tags":"detect,tech,appex-lotapp","severity":"info","metadata":{"product":"appex-lotapp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/change_lan.php?lanid=en","appex network corporation"],"case-insensitive":true}]}]},{"id":"bluepacific-share-content-management-system","info":{"name":"bluepacific-share-content-management-system","author":"cn-kali-team","tags":"detect,tech,bluepacific-share-content-management-system","severity":"info","metadata":{"product":"bluepacific-share-content-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/visadmin/viscms/index.do"],"case-insensitive":true}]}]},{"id":"ipcop-firewall","info":{"name":"ipcop-firewall","author":"cn-kali-team","tags":"detect,tech,ipcop-firewall","severity":"info","metadata":{"product":"ipcop-firewall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- ipcop logo row -->","href='http://sf.net/projects/ipcop/","href='https://sourceforge.net/projects/ipcop/"],"case-insensitive":true}]}]},{"id":"orangehrm","info":{"name":"orangehrm","author":"cn-kali-team","tags":"detect,tech,orangehrm","severity":"info","metadata":{"product":"orangehrm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.orangehrm.com\" target=","name=\"hdnusertimezoneoffset","welcome to the orangehrm ver"],"case-insensitive":true}]}]},{"id":"rbsoft-software","info":{"name":"rbsoft-software","author":"cn-kali-team","tags":"detect,tech,rbsoft-software","severity":"info","metadata":{"product":"rbsoft-software","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"redirectto\" value=\"/zym/rbkj.nsf\""],"case-insensitive":true}]}]},{"id":"nuxtjs","info":{"name":"nuxtjs","author":"cn-kali-team","tags":"detect,tech,nuxtjs","severity":"info","metadata":{"product":"nuxtjs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["__nuxt","buildassetsdir"],"condition":"and","case-insensitive":true}]}]},{"id":"useresponse","info":{"name":"useresponse","author":"cn-kali-team","tags":"detect,tech,useresponse","severity":"info","metadata":{"product":"useresponse","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<form id=\"system-form-registration\" enctype=\"application/x-www-form-urlencoded\" class=\"system-form-registration\" accept-charset=\"utf-8","title=\"customer feedback software, community support system\" target=\"_blank\" href=\"http://www.useresponse.com\" class=\"popup-logo\">"],"case-insensitive":true}]}]},{"id":"zhi-yuan-a6+-xie-tong-guan-li-ruan-jian","info":{"name":"致远a6+协同管理软件","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远a6+协同管理软件","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/seeyon/common/images/a6/favicon.ico"],"case-insensitive":true}]}]},{"id":"acsoft-reimbursement-system","info":{"name":"acsoft-reimbursement-system","author":"cn-kali-team","tags":"detect,tech,acsoft-reimbursement-system","severity":"info","metadata":{"product":"acsoft-reimbursement-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"dsitetitle\"","by:lin.zhibin"],"condition":"and","case-insensitive":true},{"type":"word","words":["window.external.addfavorite(location.href,document.title);"],"case-insensitive":true}]}]},{"id":"ke-rong-aio","info":{"name":"科荣 aio","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"科荣 aio","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/loginaction.do","www.krrj.cn"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["494d1a9cf585c0b6b45462a224fccd90"]}]}]},{"id":"kasmvnc","info":{"name":"kasmvnc","author":"cn-kali-team","tags":"detect,tech,kasmvnc","severity":"info","metadata":{"product":"kasmvnc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-360184491"]}]}]},{"id":"acmailer-you-jian-xi-tong","info":{"name":"acmailer-邮件系统","author":"cn-kali-team","tags":"detect,tech,acmailer-邮件系统","severity":"info","metadata":{"product":"acmailer-邮件系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.acmailer.jp\"><img src=\"img/logo.jpg"],"case-insensitive":true}]}]},{"id":"sovell-shop-manage","info":{"name":"雄伟科技餐厅数字化综合管理平台-后台管理平台","author":"jlkl","tags":"detect,tech,sovell-shop-manage","severity":"info","metadata":{"product":"sovell-shop-manage","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/content/css/shop_style.css","餐厅数字化综合管理平台"],"case-insensitive":true}]}]},{"id":"gravcms","info":{"name":"gravcms","author":"cn-kali-team","tags":"detect,tech,gravcms","severity":"info","metadata":{"product":"gravcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["0b11a9699ae33de62a1d05be8f733486"]},{"type":"word","words":["<meta name=\"generator\" content=\"gravcms"],"case-insensitive":true}]}]},{"id":"microsoft-skype-for-business","info":{"name":"microsoft-skype-for-business","author":"cn-kali-team","tags":"detect,tech,microsoft-skype-for-business","severity":"info","metadata":{"product":"microsoft-skype-for-business","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var reachclientproductname = \"skype for business web 应用\""],"case-insensitive":true}]}]},{"id":"norton-cloud-connect","info":{"name":"norton-cloud-connect","author":"cn-kali-team","tags":"detect,tech,norton-cloud-connect","severity":"info","metadata":{"product":"norton-cloud-connect","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h2 style=\"margin-left: 0px;\">norton cloud connect</h2>"],"case-insensitive":true}]}]},{"id":"mailman","info":{"name":"mailman","author":"cn-kali-team","tags":"detect,tech,mailman","severity":"info","metadata":{"product":"mailman","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/images/mailman","delivered by mailman"],"condition":"and","case-insensitive":true}]}]},{"id":"zkteco-shi-jian-an-quan-guan-li-ping-tai","info":{"name":"zkteco-时间安全管理平台","author":"cn-kali-team","tags":"detect,tech,zkteco-时间安全管理平台","severity":"info","metadata":{"product":"zkteco-时间安全管理平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["zkeco 时间&安全管理平台"],"case-insensitive":true}]}]},{"id":"mixcall-seat-management-center","info":{"name":"mixcall-seat-management-center","author":"cn-kali-team","tags":"detect,tech,mixcall-seat-management-center","severity":"info","metadata":{"product":"mixcall-seat-management-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/admin/modules/admin/statics/images/","深圳市深海捷科技有限公司"],"case-insensitive":true}]}]},{"id":"iceflow-xia-yi-dai-fang-huo-qiang","info":{"name":"iceflow-下一代防火墙","author":"cn-kali-team","tags":"detect,tech,iceflow-下一代防火墙","severity":"info","metadata":{"product":"iceflow-下一代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h2 class=\"media-heading\">fw下一代防火墙</h2>"],"case-insensitive":true}]}]},{"id":"vmware-vsphere","info":{"name":"vmware-vsphere","author":"cn-kali-team","tags":"detect,tech,vmware-vsphere","severity":"info","metadata":{"product":"vmware-vsphere","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta name=\"description\" content=\"vmware vsphere"],"case-insensitive":true}]}]},{"id":"bbpress","info":{"name":"bbpress","author":"cn-kali-team","tags":"detect,tech,bbpress","severity":"info","metadata":{"product":"bbpress","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- if you like showing off the fact that your server rocks -->","is proudly powered by <a href=\"http://bbpress.org"],"case-insensitive":true}]}]},{"id":"ostec-firebox","info":{"name":"ostec-firebox","author":"cn-kali-team","tags":"detect,tech,ostec-firebox","severity":"info","metadata":{"product":"ostec-firebox","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["background-image: url('/icones/fundo_firebox.png')","http://colorzilla.com/"],"case-insensitive":true}]}]},{"id":"usezan-system","info":{"name":"usezan-system","author":"cn-kali-team","tags":"detect,tech,usezan-system","severity":"info","metadata":{"product":"usezan-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/usezan/login/getlogin\""],"case-insensitive":true}]}]},{"id":"raisecom-ivoice8000","info":{"name":"raisecom-ivoice8000","author":"cn-kali-team","tags":"detect,tech,raisecom-ivoice8000","severity":"info","metadata":{"product":"raisecom-ivoice8000","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"com_raisecom_ums_aos_portal_login_domain"],"case-insensitive":true}]}]},{"id":"percona-xtradb-cluster","info":{"name":"percona-xtradb-cluster","author":"cn-kali-team","tags":"detect,tech,percona-xtradb-cluster","severity":"info","metadata":{"product":"percona-xtradb-cluster","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["percona xtradb cluster node"],"case-insensitive":true}]}]},{"id":"smokeping","info":{"name":"smokeping","author":"cn-kali-team","tags":"detect,tech,smokeping","severity":"info","metadata":{"product":"smokeping","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://oss.oetiker.ch/smokeping/counter.cgi/","<tr><td class=\"menuitem\" colspan=\"2\"> - <a class=\"menulink\" href=\"?target="],"case-insensitive":true}]}]},{"id":"jboss-eap","info":{"name":"jboss-eap","author":"cn-kali-team","tags":"detect,tech,jboss-eap","severity":"info","metadata":{"product":"jboss-eap","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h3>your jboss enterprise application platform is running.</h3>"],"case-insensitive":true}]}]},{"id":"php-layers","info":{"name":"php-layers","author":"cn-kali-team","tags":"detect,tech,php-layers","severity":"info","metadata":{"product":"php-layers","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- beginning of menu header - php layers menu","<!-- end of menu header - php layers menu","alt=\"powered by php layers menu"],"case-insensitive":true}]}]},{"id":"honeypot","info":{"name":"honeypot","author":"cn-kali-team","tags":"detect,tech,honeypot","severity":"info","metadata":{"product":"honeypot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h2>blog comments</h2>"],"case-insensitive":true}]}]},{"id":"hui-er-dun-e-di-tongvpn","info":{"name":"惠尔顿-e地通vpn","author":"cn-kali-team","tags":"detect,tech,惠尔顿-e地通vpn","severity":"info","metadata":{"product":"惠尔顿-e地通vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["images/l_name.jpg","jtpsoft style1"],"condition":"and","case-insensitive":true}]}]},{"id":"ikonboard","info":{"name":"ikonboard","author":"cn-kali-team","tags":"detect,tech,ikonboard","severity":"info","metadata":{"product":"ikonboard","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"ikonboard","powered by <a href=\"http://www.ikonboard.com"],"case-insensitive":true}]}]},{"id":"mywebsql","info":{"name":"mywebsql","author":"cn-kali-team","tags":"detect,tech,mywebsql","severity":"info","metadata":{"product":"mywebsql","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["method=\"post\" action=\"\" name=\"dbform\" ","target=\"_blank\" href=\"http://mywebsql.net"],"case-insensitive":true}]}]},{"id":"firerp-soft","info":{"name":"firerp-soft","author":"cn-kali-team","tags":"detect,tech,firerp-soft","severity":"info","metadata":{"product":"firerp-soft","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mm_preloadimages('images/bt/bt_login_b.gif"],"case-insensitive":true}]}]},{"id":"yzruida-system","info":{"name":"yzruida-system","author":"cn-kali-team","tags":"detect,tech,yzruida-system","severity":"info","metadata":{"product":"yzruida-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"headerbar gradientbar"],"case-insensitive":true}]}]},{"id":"ubiquiti-unms","info":{"name":"ubiquiti-unms","author":"cn-kali-team","tags":"detect,tech,ubiquiti-unms","severity":"info","metadata":{"product":"ubiquiti-unms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"unms\""],"case-insensitive":true}]}]},{"id":"innotube-manager","info":{"name":"innotube-manager","author":"cn-kali-team","tags":"detect,tech,innotube-manager","severity":"info","metadata":{"product":"innotube-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["images/intro/lin_bottom_nocr.gif"],"case-insensitive":true}]}]},{"id":"hjsoft-hcm","info":{"name":"hjsoft-hcm","author":"cn-kali-team","tags":"detect,tech,hjsoft-hcm","severity":"info","metadata":{"product":"hjsoft-hcm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/general/sys/hjaxmanage.js\"","src=\"/images/hcm/copyright.gif\"","src=\"/images/hcm/themes/default/login/login_banner2.png?v=12334\""],"case-insensitive":true}]}]},{"id":"eagleeye","info":{"name":"eagleeye","author":"cn-kali-team","tags":"detect,tech,eagleeye","severity":"info","metadata":{"product":"eagleeye","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["eagleeye 钉钉答疑群"],"case-insensitive":true}]}]},{"id":"ambuf-onlineexam","info":{"name":"ambuf-onlineexam","author":"cn-kali-team","tags":"detect,tech,ambuf-onlineexam","severity":"info","metadata":{"product":"ambuf-onlineexam","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["北京众恒志信科技"],"case-insensitive":true}]}]},{"id":"luci","info":{"name":"luci","author":"cn-kali-team","tags":"detect,tech,luci","severity":"info","metadata":{"product":"luci","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/luci-static/openwrt.org/cascade.css","<head> <meta http-equiv=\"refresh\" content=\"0; url=/cgi-bin/luci\" /> </head>","action=\"/cgi-bin/luci\">","href=\"/cgi-bin/luci\"></a>","luci - lua configuration interface","powered by luci"],"case-insensitive":true}]}]},{"id":"phplist-you-jian-xi-tong","info":{"name":"phplist-邮件系统","author":"cn-kali-team","tags":"detect,tech,phplist-邮件系统","severity":"info","metadata":{"product":"phplist-邮件系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"michiel dethmers - http://www.phplist.com","content=\"phplist version"],"condition":"and","case-insensitive":true}]}]},{"id":"qi-an-xin-tian-ji-guan-li-zhong-xin","info":{"name":"奇安信-天机管理中心","author":"cn-kali-team","tags":"detect,tech,奇安信-天机管理中心","severity":"info","metadata":{"product":"奇安信-天机管理中心","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["360天机管理中心","src=\"/resource/img/login/logo_403.png\" alt=\"360天机\"/></a>\""],"condition":"and","case-insensitive":true}]}]},{"id":"7moor-product","info":{"name":"7moor-product","author":"cn-kali-team","tags":"detect,tech,7moor-product","severity":"info","metadata":{"product":"7moor-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/javascripts/qiniu/qiniu.js","class=\"ds_do_action domain_aboutus\""],"case-insensitive":true}]}]},{"id":"keyfocus-webserver","info":{"name":"keyfocus-webserver","author":"cn-kali-team","tags":"detect,tech,keyfocus-webserver","severity":"info","metadata":{"product":"keyfocus-webserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: kfwebserver"],"part":"header","case-insensitive":true}]}]},{"id":"pro-chat-rooms","info":{"name":"pro-chat-rooms","author":"cn-kali-team","tags":"detect,tech,pro-chat-rooms","severity":"info","metadata":{"product":"pro-chat-rooms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["border=\"0\" alt=\"pro chat rooms","href='http://prochatrooms.com'>pro chat rooms</a>"],"case-insensitive":true}]}]},{"id":"yulong-hids","info":{"name":"yulong-hids","author":"cn-kali-team","tags":"detect,tech,yulong-hids","severity":"info","metadata":{"product":"yulong-hids","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1>驭龙</h1>","<h2>yulong - a cool hids system.</h2>"],"case-insensitive":true}]}]},{"id":"netpresenz","info":{"name":"netpresenz","author":"cn-kali-team","tags":"detect,tech,netpresenz","severity":"info","metadata":{"product":"netpresenz","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: netpresenz"],"part":"header","case-insensitive":true}]}]},{"id":"raiden-mail","info":{"name":"raiden-mail","author":"cn-kali-team","tags":"detect,tech,raiden-mail","severity":"info","metadata":{"product":"raiden-mail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/webimages/raidenmaild.jpg"],"case-insensitive":true}]}]},{"id":"campsite","info":{"name":"campsite","author":"cn-kali-team","tags":"detect,tech,campsite","severity":"info","metadata":{"product":"campsite","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"campsite"],"case-insensitive":true}]}]},{"id":"http-ji-ben-ren-zheng","info":{"name":"http基本认证","author":"cn-kali-team","tags":"detect,tech,http基本认证","severity":"info","metadata":{"product":"http基本认证","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["unauthorized"],"case-insensitive":true},{"type":"word","words":["www-authenticate: basic realm=\"default\""],"part":"header","case-insensitive":true}]}]},{"id":"founder-all-media-editing-system","info":{"name":"founder-all-media-editing-system","author":"cn-kali-team","tags":"detect,tech,founder-all-media-editing-system","severity":"info","metadata":{"product":"founder-all-media-editing-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/newsedit/newsedit/css/login_1.css"],"case-insensitive":true}]}]},{"id":"zong-he-ban-gong-xi-tong","info":{"name":"综合办公系统","author":"cn-kali-team","tags":"detect,tech,综合办公系统","severity":"info","metadata":{"product":"综合办公系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var right = document.getelementbyid(\"irmmain\")"],"case-insensitive":true}]}]},{"id":"novell-zenworks","info":{"name":"novell-zenworks","author":"cn-kali-team","tags":"detect,tech,novell-zenworks","severity":"info","metadata":{"product":"novell-zenworks","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/zenworks/js/dojo","managementzonename"],"case-insensitive":true}]}]},{"id":"biscom-delivery-server","info":{"name":"biscom-delivery-server","author":"cn-kali-team","tags":"detect,tech,biscom-delivery-server","severity":"info","metadata":{"product":"biscom-delivery-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/bds/includes/fdsjavascript.do","/bds/stylesheets/fds.css"],"case-insensitive":true}]}]},{"id":"microsoft-isa-server","info":{"name":"microsoft-isa-server","author":"cn-kali-team","tags":"detect,tech,microsoft-isa-server","severity":"info","metadata":{"product":"microsoft-isa-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["the isa server denied the specified uniform resource locator","the server denied the specified uniform resource locator (url). contact the server administrator"],"case-insensitive":true}]}]},{"id":"ezoffice","info":{"name":"ezoffice","author":"cn-kali-team","tags":"detect,tech,ezoffice","severity":"info","metadata":{"product":"ezoffice","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: /defaultroot/portal.jsp?access=oa"],"part":"header","case-insensitive":true}]}]},{"id":"zotonic","info":{"name":"zotonic","author":"cn-kali-team","tags":"detect,tech,zotonic","severity":"info","metadata":{"product":"zotonic","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/lib/js/apps/zotonic-1.0","powered by: zotonic"],"condition":"and","case-insensitive":true}]}]},{"id":"wuliupingtai","info":{"name":"wuliupingtai","author":"cn-kali-team","tags":"detect,tech,wuliupingtai","severity":"info","metadata":{"product":"wuliupingtai","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["static/styles/frame/basic.css"],"case-insensitive":true}]}]},{"id":"shop_builder-shopbuilder","info":{"name":"shop_builder-shopbuilder","author":"cn-kali-team","tags":"detect,tech,shop_builder-shopbuilder","severity":"info","metadata":{"product":"shop_builder-shopbuilder","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"shopbuilder","powered by shopbuilder"],"condition":"and","case-insensitive":true},{"type":"word","words":["shopbuilder版权所有"],"case-insensitive":true}]}]},{"id":"posterous","info":{"name":"posterous","author":"cn-kali-team","tags":"detect,tech,posterous","severity":"info","metadata":{"product":"posterous","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"posterous_site_data","content=\"posterous"],"case-insensitive":true}]}]},{"id":"jianmu","info":{"name":"jianmu","author":"cn-kali-team","tags":"detect,tech,jianmu","severity":"info","metadata":{"product":"jianmu","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["a60399bff2cbc1462547d9a38284264d"]}]}]},{"id":"nsfocus-bvs","info":{"name":"nsfocus-bvs","author":"cn-kali-team","tags":"detect,tech,nsfocus-bvs","severity":"info","metadata":{"product":"nsfocus-bvs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/nsfocus_bvs.css"],"case-insensitive":true}]}]},{"id":"tian-rong-xin-ru-qin-fang-yu-xi-tongtopidp","info":{"name":"天融信-入侵防御系统topidp","author":"cn-kali-team","tags":"detect,tech,天融信-入侵防御系统topidp","severity":"info","metadata":{"product":"天融信-入侵防御系统topidp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["天融信入侵防御系统topidp"],"case-insensitive":true}]}]},{"id":"topfreeweb-charging","info":{"name":"topfreeweb-charging","author":"cn-kali-team","tags":"detect,tech,topfreeweb-charging","severity":"info","metadata":{"product":"topfreeweb-charging","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["background=\"images/logbg.jpg\"","value=\"经理\">经理</option>"],"case-insensitive":true}]}]},{"id":"phpdenora","info":{"name":"phpdenora","author":"cn-kali-team","tags":"detect,tech,phpdenora","severity":"info","metadata":{"product":"phpdenora","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"chat4all phpdenora","powered by phpdenora"],"condition":"and","case-insensitive":true},{"type":"word","words":["powered by <a href=\"http://denorastats.org/"],"case-insensitive":true}]}]},{"id":"vmware-server-2","info":{"name":"vmware-server-2","author":"cn-kali-team","tags":"detect,tech,vmware-server-2","severity":"info","metadata":{"product":"vmware-server-2","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"vmware server is virtual"],"case-insensitive":true}]}]},{"id":"ucap-search","info":{"name":"ucap-search-","author":"cn-kali-team","tags":"detect,tech,ucap-search-","severity":"info","metadata":{"product":"ucap-search-","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["method=\"post\" action=\"s\" onsubmit=\"return checksearchform();\">","src=\"http://so.kaipuyun.cn?sitecode="],"case-insensitive":true}]}]},{"id":"wayos--wei-meng-ac-ji-zhong-guan-li-ping-tai","info":{"name":"wayos - 维盟ac集中管理平台","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"wayos - 维盟ac集中管理平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>ac集中管理平台</title>","login_25.jpg"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["715c49c5512d763084a4082c27d935e1"]}]}]},{"id":"xiuno","info":{"name":"xiuno","author":"cn-kali-team","tags":"detect,tech,xiuno","severity":"info","metadata":{"product":"xiuno","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["xiuno/xiunobbs"],"case-insensitive":true}]}]},{"id":"oceansoft","info":{"name":"oceansoft","author":"cn-kali-team","tags":"detect,tech,oceansoft","severity":"info","metadata":{"product":"oceansoft","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["aspx/casecenter/acasecenter.aspx?pagetype=sxcx&casetype=sscs&casename=","href=\"/e/action/listinfo/?"],"condition":"and","case-insensitive":true},{"type":"word","words":["/ocensoftcomm.js","技术支持:<a href=\"http://www.oceansoft.com.cn/\">","江苏欧索","江苏欧索软件有限公司"],"case-insensitive":true}]}]},{"id":"itenable","info":{"name":"itenable","author":"cn-kali-team","tags":"detect,tech,itenable","severity":"info","metadata":{"product":"itenable","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/enableq.css","/images/enableq.ico","js/checkquestion.js.php"],"case-insensitive":true}]}]},{"id":"piaoyou-erp","info":{"name":"piaoyou-erp","author":"cn-kali-team","tags":"detect,tech,piaoyou-erp","severity":"info","metadata":{"product":"piaoyou-erp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ajax/confirm.ashx","css/sexybuttons.css"],"condition":"and","case-insensitive":true}]}]},{"id":"heading-web-server","info":{"name":"heading-web-server","author":"cn-kali-team","tags":"detect,tech,heading-web-server","severity":"info","metadata":{"product":"heading-web-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location.href='/otter'"],"case-insensitive":true}]}]},{"id":"arvancloud","info":{"name":"arvancloud","author":"cn-kali-team","tags":"detect,tech,arvancloud","severity":"info","metadata":{"product":"arvancloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: arvancloud"],"part":"header","case-insensitive":true}]}]},{"id":"alcatel_lucent-qi-ye-wang-guan","info":{"name":"alcatel_lucent-企业网关","author":"cn-kali-team","tags":"detect,tech,alcatel_lucent-企业网关","severity":"info","metadata":{"product":"alcatel_lucent-企业网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alcatel-lucent","欢迎登陆网页配置界面"],"condition":"and","case-insensitive":true}]}]},{"id":"dandian-crm","info":{"name":"dandian-crm","author":"cn-kali-team","tags":"detect,tech,dandian-crm","severity":"info","metadata":{"product":"dandian-crm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"单点crm系统","url=general/erp/login/"],"case-insensitive":true}]}]},{"id":"dbshop","info":{"name":"dbshop","author":"cn-kali-team","tags":"detect,tech,dbshop","severity":"info","metadata":{"product":"dbshop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"dbshop","content=\"dbshop"],"case-insensitive":true}]}]},{"id":"splunk-enterprise","info":{"name":"splunk-enterprise","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"splunk-enterprise","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["__splunkd_partials__","enterprise"],"condition":"and","case-insensitive":true},{"type":"word","words":["server: splunkd"],"part":"header","case-insensitive":true},{"type":"favicon","hash":["e60c968e8ff3cc2f4fb869588e83afc6"]},{"type":"word","words":["account/login?return_to"],"case-insensitive":true}]}]},{"id":"yiqi-cms","info":{"name":"yiqi-cms","author":"cn-kali-team","tags":"detect,tech,yiqi-cms","severity":"info","metadata":{"product":"yiqi-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"yiqicms"],"case-insensitive":true}]}]},{"id":"bit-service","info":{"name":"bit-service","author":"cn-kali-team","tags":"detect,tech,bit-service","severity":"info","metadata":{"product":"bit-service","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["bit-xxzs","xmlpzs/webissue.asp"],"condition":"and","case-insensitive":true}]}]},{"id":"iceflow-vpn","info":{"name":"iceflow-vpn","author":"cn-kali-team","tags":"detect,tech,iceflow-vpn","severity":"info","metadata":{"product":"iceflow-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["iceflow/tweb","www.icevpn.org"],"case-insensitive":true}]}]},{"id":"ibm-ts3310","info":{"name":"ibm-ts3310","author":"cn-kali-team","tags":"detect,tech,ibm-ts3310","severity":"info","metadata":{"product":"ibm-ts3310","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http-equiv=\"refresh\" content=\"0; url=/main_login.htm\""],"case-insensitive":true}]}]},{"id":"qi-ming-xing-chen-tian-qing-han-mausg-fang-huo-qiang","info":{"name":"启明星辰天清汉马usg防火墙","author":"cn-kali-team","tags":"detect,tech,启明星辰天清汉马usg防火墙","severity":"info","metadata":{"product":"启明星辰天清汉马usg防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["venusense","天清汉马usg防火墙"],"condition":"and","case-insensitive":true},{"type":"word","words":["/cgi-bin/webui?op=get_product_model","天清汉马usg"],"case-insensitive":true}]}]},{"id":"teradata-ncluster","info":{"name":"teradata-ncluster","author":"cn-kali-team","tags":"detect,tech,teradata-ncluster","severity":"info","metadata":{"product":"teradata-ncluster","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["redirecting to aster ncluster management console (amc)"],"case-insensitive":true}]}]},{"id":"tisson-system","info":{"name":"tisson-system","author":"cn-kali-team","tags":"detect,tech,tisson-system","severity":"info","metadata":{"product":"tisson-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dlqaweb_deploy/webresource.axd"],"case-insensitive":true}]}]},{"id":"intelligence-parking-integrated-management-platform","info":{"name":"intelligence-parking-integrated-management-platform","author":"cn-kali-team","tags":"detect,tech,intelligence-parking-integrated-management-platform","severity":"info","metadata":{"product":"intelligence-parking-integrated-management-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["厦门立智通讯科技有限公司 版权所有"],"case-insensitive":true}]}]},{"id":"zfsoft-leaingrn","info":{"name":"zfsoft-leaingrn","author":"cn-kali-team","tags":"detect,tech,zfsoft-leaingrn","severity":"info","metadata":{"product":"zfsoft-leaingrn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/jwglxt/logo/favicon.ico\""],"case-insensitive":true}]}]},{"id":"ciphermail-email-encryption-gateway","info":{"name":"ciphermail-email-encryption-gateway","author":"cn-kali-team","tags":"detect,tech,ciphermail-email-encryption-gateway","severity":"info","metadata":{"product":"ciphermail-email-encryption-gateway","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ciphermail email encryption gateway"],"case-insensitive":true}]}]},{"id":"vmware-site-recovery-manager","info":{"name":"vmware-site-recovery-manager","author":"cn-kali-team","tags":"detect,tech,vmware-site-recovery-manager","severity":"info","metadata":{"product":"vmware-site-recovery-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<header alt=\"vmware site recovery manager"],"case-insensitive":true}]}]},{"id":"c-lodop","info":{"name":"c-lodop","author":"cn-kali-team","tags":"detect,tech,c-lodop","severity":"info","metadata":{"product":"c-lodop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1>关于c-lodop免费和注册授权</h1>","document.getelementbyid(\"reqid\").value==document.getelementbyid(\"licid\").value"],"case-insensitive":true}]}]},{"id":"coremail","info":{"name":"coremail","author":"cn-kali-team","tags":"detect,tech,coremail","severity":"info","metadata":{"product":"coremail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/coremail/bundle/","/coremail/common/","<a href=\"http://www.coremail.cn\" target=\"_blank\">","action=\"/coremail/index.jsp","coremail/common","fmt_logoalt: \"coremail 电子邮件系统"],"case-insensitive":true}]}]},{"id":"53kf","info":{"name":"53kf","author":"cn-kali-team","tags":"detect,tech,53kf","severity":"info","metadata":{"product":"53kf","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["chat.53kf.com/company.php","chat.53kf.com/kf.php"],"condition":"and","case-insensitive":true},{"type":"word","words":["powered by 53kf","tb.53kf.com/code/"],"case-insensitive":true}]}]},{"id":"kxmail","info":{"name":"kxmail","author":"cn-kali-team","tags":"detect,tech,kxmail","severity":"info","metadata":{"product":"kxmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/systemfunction.pack.js","lo_computername","powered by <a href=\"http://www.kxmail.net"],"case-insensitive":true}]}]},{"id":"spring-cloud-netflix","info":{"name":"spring-cloud-netflix","author":"cn-kali-team","tags":"detect,tech,spring-cloud-netflix","severity":"info","metadata":{"product":"spring-cloud-netflix","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-application-context: hystrix-dashboard:"],"part":"header","case-insensitive":true}]}]},{"id":"youphptube-encoder","info":{"name":"youphptube-encoder","author":"cn-kali-team","tags":"detect,tech,youphptube-encoder","severity":"info","metadata":{"product":"youphptube-encoder","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["youphptube"],"case-insensitive":true}]}]},{"id":"ibm-web-traffic-express-caching-proxy","info":{"name":"ibm-web-traffic-express-caching-proxy","author":"cn-kali-team","tags":"detect,tech,ibm-web-traffic-express-caching-proxy","severity":"info","metadata":{"product":"ibm-web-traffic-express-caching-proxy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/admin-bin/webexec/wte.html"],"case-insensitive":true}]}]},{"id":"cns-corenetwork-services","info":{"name":"cns-corenetwork-services","author":"cn-kali-team","tags":"detect,tech,cns-corenetwork-services","severity":"info","metadata":{"product":"cns-corenetwork-services","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!--p>cns网络核心服务自动化开通平台系统. ","<span class=\"left\">cns-app "],"case-insensitive":true}]}]},{"id":"zhu-ji-bao","info":{"name":"zhu-ji-bao","author":"cn-kali-team","tags":"detect,tech,zhu-ji-bao","severity":"info","metadata":{"product":"zhu-ji-bao","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://z.admin5.com/\" target=","您访问的是主机宝服务器默认页"],"case-insensitive":true}]}]},{"id":"turbo-seek","info":{"name":"turbo-seek","author":"cn-kali-team","tags":"detect,tech,turbo-seek","severity":"info","metadata":{"product":"turbo-seek","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var myspecs = \"'menubar=0,status=1,resizable=1,location=0,titlebar=1,toolbar=1,scrollbars=1,width=\" + mywidth + \",height=\" + myheight +"],"case-insensitive":true}]}]},{"id":"aurion","info":{"name":"aurion","author":"cn-kali-team","tags":"detect,tech,aurion","severity":"info","metadata":{"product":"aurion","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/aurion.js","<!-- aurion teal will be used as the login-time default"],"case-insensitive":true}]}]},{"id":"sangfor-data-center","info":{"name":"sangfor-data-center","author":"cn-kali-team","tags":"detect,tech,sangfor-data-center","severity":"info","metadata":{"product":"sangfor-data-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cfwloginout.php","_top"],"condition":"and","case-insensitive":true},{"type":"word","words":["acloglogin.php"],"case-insensitive":true},{"type":"word","words":["location: ./src/acloglogin.php"],"part":"header","case-insensitive":true}]}]},{"id":"am-websystem","info":{"name":"am-websystem","author":"cn-kali-team","tags":"detect,tech,am-websystem","severity":"info","metadata":{"product":"am-websystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"dvlogo\""],"case-insensitive":true}]}]},{"id":"kodcloud-system","info":{"name":"kodcloud-system","author":"cn-kali-team","tags":"detect,tech,kodcloud-system","severity":"info","metadata":{"product":"kodcloud-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/common/loading_simple.gif"],"case-insensitive":true}]}]},{"id":"da-hua-zhi-neng-wu-lian-icc-zong-he-guan-li-ping-tai","info":{"name":"大华智能物联icc综合管理平台","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"大华智能物联icc综合管理平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["*客户端会小于800*","/authlogin"],"condition":"and","case-insensitive":true}]}]},{"id":"hbjr-labbuilder","info":{"name":"hbjr-labbuilder","author":"cn-kali-team","tags":"detect,tech,hbjr-labbuilder","severity":"info","metadata":{"product":"hbjr-labbuilder","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["labbuilder 实验室信息管理系统"],"case-insensitive":true}]}]},{"id":"wei-hong-oa","info":{"name":"微宏oa","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"微宏oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: /wh/serverlogin.jsp"],"part":"header","case-insensitive":true},{"type":"word","words":["/wh/servlet/mainserver"],"case-insensitive":true}]}]},{"id":"elastichd-dashboard","info":{"name":"elastichd-dashboard","author":"cn-kali-team","tags":"detect,tech,elastichd-dashboard","severity":"info","metadata":{"product":"elastichd-dashboard","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>elastic hd dashboard</title>"],"case-insensitive":true}]}]},{"id":"crhms-medical-insurance-review-system","info":{"name":"crhms-medical-insurance-review-system","author":"cn-kali-team","tags":"detect,tech,crhms-medical-insurance-review-system","severity":"info","metadata":{"product":"crhms-medical-insurance-review-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.open(url, \"中公网医疗信息管理系统\", option"],"case-insensitive":true}]}]},{"id":"tulingtech-system","info":{"name":"tulingtech-system","author":"cn-kali-team","tags":"detect,tech,tulingtech-system","severity":"info","metadata":{"product":"tulingtech-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/content/login-ui/static/h-ui.admin/css/h-ui.login.css\""],"case-insensitive":true}]}]},{"id":"dmxready-portfolio-manager","info":{"name":"dmxready-portfolio-manager","author":"cn-kali-team","tags":"detect,tech,dmxready-portfolio-manager","severity":"info","metadata":{"product":"dmxready-portfolio-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/css/portfoliomanager/styles_display_page.css","rememberme_portfoliomanager"],"case-insensitive":true}]}]},{"id":"hcl-sametime","info":{"name":"hcl-sametime","author":"cn-kali-team","tags":"detect,tech,hcl-sametime","severity":"info","metadata":{"product":"hcl-sametime","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/chat/sametime192x192.png"],"case-insensitive":true}]}]},{"id":"e-link","info":{"name":"e-link","author":"cn-kali-team","tags":"detect,tech,e-link","severity":"info","metadata":{"product":"e-link","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["document.writeln(\"(温馨提示:此处为志高美萍分支机构联系方式,志高美萍总部联系方式请点击<a href='javascript:var"],"case-insensitive":true}]}]},{"id":"acsoft-cloud","info":{"name":"acsoft-cloud","author":"cn-kali-team","tags":"detect,tech,acsoft-cloud","severity":"info","metadata":{"product":"acsoft-cloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onrememberpasswordclick","sdiyun.com, all rights reserved"],"case-insensitive":true}]}]},{"id":"django-rest-framework","info":{"name":"django-rest-framework","author":"cn-kali-team","tags":"detect,tech,django-rest-framework","severity":"info","metadata":{"product":"django-rest-framework","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["django rest framework","href='https://www.django-rest-framework.org/'>"],"condition":"and","case-insensitive":true}]}]},{"id":"yonyou-fe","info":{"name":"yonyou-fe","author":"cn-kali-team","tags":"detect,tech,yonyou-fe","severity":"info","metadata":{"product":"yonyou-fe","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["v_hedden","v_show"],"condition":"and","case-insensitive":true}]}]},{"id":"srs-live-server","info":{"name":"srs-live-server","author":"cn-kali-team","tags":"detect,tech,srs-live-server","severity":"info","metadata":{"product":"srs-live-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["players/js/winlin.utility.js"],"case-insensitive":true}]}]},{"id":"an-da-tong-tpn-wang-guan-kong-zhi-tai-deng-lu-xi-tong","info":{"name":"安达通-tpn网关控制台登陆系统","author":"cn-kali-team","tags":"detect,tech,安达通-tpn网关控制台登陆系统","severity":"info","metadata":{"product":"安达通-tpn网关控制台登陆系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["$('#submitid').bind('click',checksubmitfn);\"","tpn-2g网关控制台管理员登录"],"condition":"and","case-insensitive":true}]}]},{"id":"h3c-cloud","info":{"name":"h3c-cloud","author":"cn-kali-team","tags":"detect,tech,h3c-cloud","severity":"info","metadata":{"product":"h3c-cloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["vstor","分布式存储管理系统 </p>"],"case-insensitive":true}]}]},{"id":"cscms","info":{"name":"cscms","author":"cn-kali-team","tags":"detect,tech,cscms","severity":"info","metadata":{"product":"cscms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/js/cscms.js","tag_adfo dis_wap"],"case-insensitive":true}]}]},{"id":"hanwei-hazardous-chemicals-enterprise-early-warning-and-prevention-system","info":{"name":"hanwei-hazardous-chemicals-enterprise-early-warning-and-prevention-system","author":"cn-kali-team","tags":"detect,tech,hanwei-hazardous-chemicals-enterprise-early-warning-and-prevention-system","severity":"info","metadata":{"product":"hanwei-hazardous-chemicals-enterprise-early-warning-and-prevention-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["default value is bootstrapdialog.type_primary","var objheight = document.documentelement.clientheight"],"case-insensitive":true}]}]},{"id":"bluequartz","info":{"name":"bluequartz","author":"cn-kali-team","tags":"detect,tech,bluequartz","severity":"info","metadata":{"product":"bluequartz","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["value=\"copyright (c) 2000, cobalt networks"],"case-insensitive":true}]}]},{"id":"oracle-weblogic","info":{"name":"oracle-weblogic","author":"cn-kali-team","tags":"detect,tech,oracle-weblogic","severity":"info","metadata":{"product":"oracle-weblogic","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/console/framework/skins/wlsconsole/images/login_weblogic_branding.png","<i>hypertext transfer protocol -- http/1.1</i>","error 403--","error 404--not found","hypertext transfer protocol","oracle weblogic server","weblogic","welcome to weblogic application server"],"case-insensitive":true}]}]},{"id":"xie-tong-ban-gong-xi-tong","info":{"name":"协同办公系统","author":"cn-kali-team","tags":"detect,tech,协同办公系统","severity":"info","metadata":{"product":"协同办公系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"ckbisaday\" type=\"checkbox\" name=\"ckbisaday\""],"case-insensitive":true}]}]},{"id":"chinatelecomcustomerbroadbandaddressquerysystem","info":{"name":"chinatelecomcustomerbroadbandaddressquerysystem","author":"cn-kali-team","tags":"detect,tech,chinatelecomcustomerbroadbandaddressquerysystem","severity":"info","metadata":{"product":"chinatelecomcustomerbroadbandaddressquerysystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<strong>客户宽带地址查询"],"case-insensitive":true}]}]},{"id":"dspace","info":{"name":"dspace","author":"cn-kali-team","tags":"detect,tech,dspace","severity":"info","metadata":{"product":"dspace","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.dspace.org\">dspace software","content=\"dspace"],"case-insensitive":true}]}]},{"id":"festos","info":{"name":"festos","author":"cn-kali-team","tags":"detect,tech,festos","severity":"info","metadata":{"product":"festos","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["css/festos.css","title=\"festos"],"case-insensitive":true}]}]},{"id":"apusic","info":{"name":"apusic","author":"cn-kali-team","tags":"detect,tech,apusic","severity":"info","metadata":{"product":"apusic","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<td>管理apusic应用服务器</td>"],"case-insensitive":true},{"type":"word","words":["server: apusic application server"],"part":"header","case-insensitive":true}]}]},{"id":"zhi-yuan-a6s-xie-tong-guan-li-ruan-jian","info":{"name":"致远a6s协同管理软件","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远a6s协同管理软件","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["致远a6s协同管理软件"],"case-insensitive":true}]}]},{"id":"sxzrouter-caching","info":{"name":"sxzrouter-caching","author":"cn-kali-team","tags":"detect,tech,sxzrouter-caching","severity":"info","metadata":{"product":"sxzrouter-caching","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" href=\"http://www.dwcache.com\"","src=\"/public/sec/assets/js/libs/jquery.placeholder.min.js\">"],"case-insensitive":true}]}]},{"id":"act-manager","info":{"name":"act-manager","author":"cn-kali-team","tags":"detect,tech,act-manager","severity":"info","metadata":{"product":"act-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<script>location.href=\"ucenter\";</script>","url:\"/ucenter/login/loginaction!gettitle.action\","],"case-insensitive":true}]}]},{"id":"activeweb-content-server","info":{"name":"activeweb-content-server","author":"cn-kali-team","tags":"detect,tech,activeweb-content-server","severity":"info","metadata":{"product":"activeweb-content-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["activeweb cache extension","awnocachebegin__awnocachebegin__awnocachebegin__awnocachebegin__awnocachebegin"],"case-insensitive":true}]}]},{"id":"chnitc-system","info":{"name":"chnitc-system","author":"cn-kali-team","tags":"detect,tech,chnitc-system","severity":"info","metadata":{"product":"chnitc-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.chnitc.com\" style=\"text-decoration:none;color:#fff;\">","科业开发团队出品"],"case-insensitive":true}]}]},{"id":"foosun","info":{"name":"foosun","author":"cn-kali-team","tags":"detect,tech,foosun","severity":"info","metadata":{"product":"foosun","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["created by dotnetcms","for foosun"],"condition":"and","case-insensitive":true},{"type":"word","words":["search.html?type","encodeuricomponent(obj","function searchgo"],"condition":"and","case-insensitive":true},{"type":"word","words":["powered by www.foosun.net,products:foosun content manage system"],"case-insensitive":true}]}]},{"id":"vmware-esx","info":{"name":"vmware-esx","author":"cn-kali-team","tags":"detect,tech,vmware-esx","severity":"info","metadata":{"product":"vmware-esx","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta http-equiv=\"refresh\" content=\"0;url='/ui'\"/>","content=\"vmware esx ","content=\"vmware esxi","document.write(\"<title>\" + id_eesx_welcome + \"</title>\");","document.write(id_esx_viclientdesc);"],"case-insensitive":true}]}]},{"id":"cnway-ilims","info":{"name":"cnway-ilims","author":"cn-kali-team","tags":"detect,tech,cnway-ilims","severity":"info","metadata":{"product":"cnway-ilims","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/js/allpagefunction.js","src=\"/extjs/adapter/ext/ext-base-js"],"case-insensitive":true}]}]},{"id":"we7","info":{"name":"we7","author":"cn-kali-team","tags":"detect,tech,we7","severity":"info","metadata":{"product":"we7","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>微擎","w7.cc"],"condition":"and","case-insensitive":true}]}]},{"id":"uportal","info":{"name":"uportal","author":"cn-kali-team","tags":"detect,tech,uportal","severity":"info","metadata":{"product":"uportal","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"powered by uportal"],"case-insensitive":true}]}]},{"id":"oracle-webdb","info":{"name":"oracle-webdb","author":"cn-kali-team","tags":"detect,tech,oracle-webdb","severity":"info","metadata":{"product":"oracle-webdb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: oracle_webdb_listener"],"part":"header","case-insensitive":true}]}]},{"id":"supermap-gis","info":{"name":"supermap-gis","author":"cn-kali-team","tags":"detect,tech,supermap-gis","severity":"info","metadata":{"product":"supermap-gis","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["北京超图软件股份有限公司"],"case-insensitive":true}]}]},{"id":"shen-xin-fuweb-fang-cuan-gai-guan-li-xi-tong","info":{"name":"深信服web防篡改管理系统","author":"cn-kali-team","tags":"detect,tech,深信服web防篡改管理系统","severity":"info","metadata":{"product":"深信服web防篡改管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["web防篡改","cgi-bin/tamper_admin.cgi"],"condition":"and","case-insensitive":true}]}]},{"id":"tian-rong-xin-shu-ju-fang-xie-lou-xi-tong","info":{"name":"天融信数据防泄漏系统","author":"cn-kali-team","tags":"detect,tech,天融信数据防泄漏系统","severity":"info","metadata":{"product":"天融信数据防泄漏系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["topdlp_show","天融信数据防泄漏系统"],"condition":"and","case-insensitive":true}]}]},{"id":"yonyou-ufida","info":{"name":"yonyou-ufida","author":"cn-kali-team","tags":"detect,tech,yonyou-ufida","severity":"info","metadata":{"product":"yonyou-ufida","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/system/login/login.asp?appid="],"case-insensitive":true}]}]},{"id":"sdcncsi","info":{"name":"sdcncsi","author":"cn-kali-team","tags":"detect,tech,sdcncsi","severity":"info","metadata":{"product":"sdcncsi","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<em class=\"wk-fl\">在沃系统</em>","refreshcaptchaimgfun"],"case-insensitive":true}]}]},{"id":"smartcityconstructionprojectmanagementsystem","info":{"name":"smartcityconstructionprojectmanagementsystem","author":"cn-kali-team","tags":"detect,tech,smartcityconstructionprojectmanagementsystem","severity":"info","metadata":{"product":"smartcityconstructionprojectmanagementsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"sitenametitle\">智慧城建项目管理系统</p"],"case-insensitive":true}]}]},{"id":"zhi-yuan-g6-n-duo-zu-zhi-ban","info":{"name":"致远g6-n多组织版","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远g6-n多组织版","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/seeyon/common/images/g6n/favicon.ico"],"case-insensitive":true}]}]},{"id":"tornadoserver","info":{"name":"tornadoserver","author":"cn-kali-team","tags":"detect,tech,tornadoserver","severity":"info","metadata":{"product":"tornadoserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: tornadoserver"],"part":"header","case-insensitive":true}]}]},{"id":"vos3000","info":{"name":"vos3000","author":"cn-kali-team","tags":"detect,tech,vos3000","severity":"info","metadata":{"product":"vos3000","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["images/vos3000.ico"],"case-insensitive":true}]}]},{"id":"mathopd","info":{"name":"mathopd","author":"cn-kali-team","tags":"detect,tech,mathopd","severity":"info","metadata":{"product":"mathopd","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: mathopd"],"part":"header","case-insensitive":true}]}]},{"id":"rapid-browser","info":{"name":"rapid-browser","author":"cn-kali-team","tags":"detect,tech,rapid-browser","severity":"info","metadata":{"product":"rapid-browser","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- ### bullet table ### -->","images/login_button.gif\" alt=\"login to rapid browser"],"case-insensitive":true}]}]},{"id":"manageengine-deviceexpert","info":{"name":"manageengine-deviceexpert","author":"cn-kali-team","tags":"detect,tech,manageengine-deviceexpert","severity":"info","metadata":{"product":"manageengine-deviceexpert","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/deviceexpert.js","changepasswordpolicy","password manager pro does not allow","selectpasswordpolicy"],"case-insensitive":true}]}]},{"id":"bitrix-site-manager","info":{"name":"bitrix-site-manager","author":"cn-kali-team","tags":"detect,tech,bitrix-site-manager","severity":"info","metadata":{"product":"bitrix-site-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["bitrix_sm_time_zone","bx.setcsslist"],"case-insensitive":true}]}]},{"id":"sina-sae","info":{"name":"sina-sae","author":"cn-kali-team","tags":"detect,tech,sina-sae","severity":"info","metadata":{"product":"sina-sae","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["lib.sinaapp.com"],"case-insensitive":true}]}]},{"id":"hui-dian-oa","info":{"name":"慧点oa","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"慧点oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["www/mobile-version.txt"],"case-insensitive":true}]}]},{"id":"ning-dun-yi-ti-hua-an-quan-ren-zheng-ping-tai","info":{"name":"宁盾-一体化安全认证平台","author":"cn-kali-team","tags":"detect,tech,宁盾-一体化安全认证平台","severity":"info","metadata":{"product":"宁盾-一体化安全认证平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"dynamicpasswordwithmobile\">"],"case-insensitive":true}]}]},{"id":"ipswitch-imailserver","info":{"name":"ipswitch-imailserver","author":"cn-kali-team","tags":"detect,tech,ipswitch-imailserver","severity":"info","metadata":{"product":"ipswitch-imailserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["myicalusername"],"case-insensitive":true},{"type":"word","words":["server: ipswitch-imail"],"part":"header","case-insensitive":true}]}]},{"id":"jiu-dian-kuan-dai-yun-ying-xi-tong","info":{"name":"酒店宽带运营系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"酒店宽带运营系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: /manager/login.php"],"part":"header","case-insensitive":true},{"type":"favicon","hash":["af545cc70432a9945c33314e9b6546e7"]},{"type":"word","words":["<title>酒店宽带运营系统</title>"],"case-insensitive":true}]}]},{"id":"bitkeeper","info":{"name":"bitkeeper","author":"cn-kali-team","tags":"detect,tech,bitkeeper","severity":"info","metadata":{"product":"bitkeeper","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: bkhttp"],"part":"header","case-insensitive":true}]}]},{"id":"hercules-logistics","info":{"name":"hercules-logistics","author":"cn-kali-team","tags":"detect,tech,hercules-logistics","severity":"info","metadata":{"product":"hercules-logistics","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["document.cookie=\"4pl07username=\"+arraystr"],"case-insensitive":true}]}]},{"id":"twcms","info":{"name":"twcms","author":"cn-kali-team","tags":"detect,tech,twcms","severity":"info","metadata":{"product":"twcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/twcms/theme/default/css/global.css\""],"case-insensitive":true}]}]},{"id":"bilin-uag-xi-lie-wang-guan","info":{"name":"bilin-uag系列网关","author":"cn-kali-team","tags":"detect,tech,bilin-uag系列网关","severity":"info","metadata":{"product":"bilin-uag系列网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["智慧网关配置平台"],"case-insensitive":true}]}]},{"id":"an-heng-xin-xi-ming-yuweb-ying-yong-fang-huo-qiang","info":{"name":"安恒信息-明御web应用防火墙","author":"cn-kali-team","tags":"detect,tech,安恒信息-明御web应用防火墙","severity":"info","metadata":{"product":"安恒信息-明御web应用防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["scripts/app.waf.system.login.js","明御web应用防火墙"],"condition":"and","case-insensitive":true}]}]},{"id":"tradingeye","info":{"name":"tradingeye","author":"cn-kali-team","tags":"detect,tech,tradingeye","severity":"info","metadata":{"product":"tradingeye","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"dpivision.com ltd\" />","id=\"credits\"><a href=\"http://www.tradingeye.com/\">powered by tradingeye</a>"],"case-insensitive":true}]}]},{"id":"shan-shi-wang-ke-fang-huo-qiang","info":{"name":"山石网科防火墙","author":"cn-kali-team","tags":"detect,tech,山石网科防火墙","severity":"info","metadata":{"product":"山石网科防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["global_config.js","hillstone","licenseaggrement"],"condition":"and","case-insensitive":true}]}]},{"id":"rusong-product","info":{"name":"rusong-product","author":"cn-kali-team","tags":"detect,tech,rusong-product","severity":"info","metadata":{"product":"rusong-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["plugins/wbb/barrett.js"],"case-insensitive":true}]}]},{"id":"foxycart","info":{"name":"foxycart","author":"cn-kali-team","tags":"detect,tech,foxycart","severity":"info","metadata":{"product":"foxycart","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<script src=\"//cdn.foxycart.com"],"case-insensitive":true}]}]},{"id":"chinamdm-mobile-device-management","info":{"name":"chinamdm-mobile-device-management","author":"cn-kali-team","tags":"detect,tech,chinamdm-mobile-device-management","severity":"info","metadata":{"product":"chinamdm-mobile-device-management","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["innerhtml=\"chinamdm移动终端管理系统","justsy/user/searchmenusbyusername/"],"case-insensitive":true}]}]},{"id":"enigma2","info":{"name":"enigma2","author":"cn-kali-team","tags":"detect,tech,enigma2","severity":"info","metadata":{"product":"enigma2","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/web/movielist.rss?tag"],"case-insensitive":true}]}]},{"id":"citrix-xenserver","info":{"name":"citrix-xenserver","author":"cn-kali-team","tags":"detect,tech,citrix-xenserver","severity":"info","metadata":{"product":"citrix-xenserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"xencentersetup.exe\">xencenter installer</a>","citrix systems, inc. xenserver"],"case-insensitive":true}]}]},{"id":"superdata-oa","info":{"name":"superdata-oa","author":"cn-kali-team","tags":"detect,tech,superdata-oa","severity":"info","metadata":{"product":"superdata-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["速达软件技术(广州)有限公司"],"case-insensitive":true}]}]},{"id":"yun-shen-hu-lian-hong-xin-an-quan-guan-kong-ping-tai","info":{"name":"云深互联-红芯安全管控平台","author":"cn-kali-team","tags":"detect,tech,云深互联-红芯安全管控平台","severity":"info","metadata":{"product":"云深互联-红芯安全管控平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["红芯安全管控平台"],"case-insensitive":true}]}]},{"id":"pyspider","info":{"name":"pyspider","author":"cn-kali-team","tags":"detect,tech,pyspider","severity":"info","metadata":{"product":"pyspider","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"pyspider dashboard\""],"case-insensitive":true}]}]},{"id":"datalife-engine","info":{"name":"datalife-engine","author":"cn-kali-team","tags":"detect,tech,datalife-engine","severity":"info","metadata":{"product":"datalife-engine","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"datalife engine"],"case-insensitive":true}]}]},{"id":"fangmail","info":{"name":"fangmail","author":"cn-kali-team","tags":"detect,tech,fangmail","severity":"info","metadata":{"product":"fangmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/fangmail/cgi/index.cgi","/fangmail/default/css/em_css.css"],"condition":"and","case-insensitive":true}]}]},{"id":"mailer","info":{"name":"mailer","author":"cn-kali-team","tags":"detect,tech,mailer","severity":"info","metadata":{"product":"mailer","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/jdwm/cgi/login.cgi?login"],"case-insensitive":true}]}]},{"id":"adobe-cq5","info":{"name":"adobe-cq5","author":"cn-kali-team","tags":"detect,tech,adobe-cq5","severity":"info","metadata":{"product":"adobe-cq5","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["_jcr_content"],"case-insensitive":true}]}]},{"id":"networkresourcesauxiliaryplatform","info":{"name":"networkresourcesauxiliaryplatform","author":"cn-kali-team","tags":"detect,tech,networkresourcesauxiliaryplatform","severity":"info","metadata":{"product":"networkresourcesauxiliaryplatform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<b>网络资源综合支撑辅助平台</b>"],"case-insensitive":true}]}]},{"id":"invision-powerboard","info":{"name":"invision-powerboard","author":"cn-kali-team","tags":"detect,tech,invision-powerboard","severity":"info","metadata":{"product":"invision-powerboard","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.invisionboard.com"],"case-insensitive":true}]}]},{"id":"ren-zi-xing-surfnx-an-quan-wang-guan","info":{"name":"任子行-surfnx安全网关","author":"cn-kali-team","tags":"detect,tech,任子行-surfnx安全网关","severity":"info","metadata":{"product":"任子行-surfnx安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["lib/templates/surfilter/images/logo_big.png","安全网关"],"condition":"and","case-insensitive":true}]}]},{"id":"citrix-xenmobile","info":{"name":"citrix-xenmobile","author":"cn-kali-team","tags":"detect,tech,citrix-xenmobile","severity":"info","metadata":{"product":"citrix-xenmobile","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["citrix-transactionid:","set-cookie: xmscookie"],"part":"header","condition":"and","case-insensitive":true},{"type":"word","words":["<title>xenmobile","citrix_logo"],"condition":"and","case-insensitive":true}]}]},{"id":"chelen-system","info":{"name":"chelen-system","author":"cn-kali-team","tags":"detect,tech,chelen-system","severity":"info","metadata":{"product":"chelen-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["iaus/media/js/login/login.js"],"case-insensitive":true}]}]},{"id":"spring-framework","info":{"name":"spring-framework","author":"cn-kali-team","tags":"detect,tech,spring-framework","severity":"info","metadata":{"product":"spring-framework","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["0488faca4c19046b94d07c3ee83cf9d6"]},{"type":"word","words":["\",\"status\":404,\"error\":\"not found\",\"message\":\"no message available\",\"path\":\"/","whitelabel error page"],"case-insensitive":true},{"type":"word","words":["www-authenticate: basic realm=\"spring\"","x-application-context:"],"part":"header","case-insensitive":true}]}]},{"id":"znv-digital-campus","info":{"name":"znv-digital-campus","author":"cn-kali-team","tags":"detect,tech,znv-digital-campus","severity":"info","metadata":{"product":"znv-digital-campus","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["list.asp?caseid="],"case-insensitive":true}]}]},{"id":"qi-an-xin-zhong-duan-an-quan-guan-li-xi-tongqax-tian-qing","info":{"name":"奇安信终端安全管理系统qax天擎","author":"cn-kali-team","tags":"detect,tech,奇安信终端安全管理系统qax天擎","severity":"info","metadata":{"product":"奇安信终端安全管理系统qax天擎","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"rsapubkey\"","奇安信新天擎"],"condition":"and","case-insensitive":true}]}]},{"id":"78oa","info":{"name":"78oa","author":"cn-kali-team","tags":"detect,tech,78oa","severity":"info","metadata":{"product":"78oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/resource/javascript/system/runtime.min.js","<a href=\"http://www.78oa.com\" target=\"_blank\">78oa办公系统</a>","license.78oa.com"],"case-insensitive":true}]}]},{"id":"ganttlab","info":{"name":"ganttlab","author":"cn-kali-team","tags":"detect,tech,ganttlab","severity":"info","metadata":{"product":"ganttlab","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ganttlab-preview.png"],"case-insensitive":true}]}]},{"id":"xiaonaodai","info":{"name":"xiaonaodai","author":"cn-kali-team","tags":"detect,tech,xiaonaodai","severity":"info","metadata":{"product":"xiaonaodai","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http://stat.xiaonaodai.com/stat.php"],"case-insensitive":true}]}]},{"id":"xycms","info":{"name":"xycms","author":"cn-kali-team","tags":"detect,tech,xycms","severity":"info","metadata":{"product":"xycms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["advfile/ad12.js"],"case-insensitive":true}]}]},{"id":"microsoft-silverlight","info":{"name":"microsoft-silverlight","author":"cn-kali-team","tags":"detect,tech,microsoft-silverlight","severity":"info","metadata":{"product":"microsoft-silverlight","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["get microsoft silverlight"],"case-insensitive":true}]}]},{"id":"yonyou-rmis","info":{"name":"yonyou-rmis","author":"cn-kali-team","tags":"detect,tech,yonyou-rmis","severity":"info","metadata":{"product":"yonyou-rmis","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"clientfile/rmisupdate.exe"],"case-insensitive":true}]}]},{"id":"h3c-xia-yi-dai-fang-huo-qiang","info":{"name":"h3c-下一代防火墙","author":"cn-kali-team","tags":"detect,tech,h3c-下一代防火墙","severity":"info","metadata":{"product":"h3c-下一代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/php/common/checknum_creat.php?module=config_authnum","class=\"dl_margin0\" align=\"left\">web网管用户登录</div>"],"condition":"and","case-insensitive":true}]}]},{"id":"nstc-software","info":{"name":"nstc-software","author":"cn-kali-team","tags":"detect,tech,nstc-software","severity":"info","metadata":{"product":"nstc-software","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["skysz.fw.index.validatecodenew = \"/loginaction/validatecodenew.html"],"case-insensitive":true}]}]},{"id":"douphp","info":{"name":"douphp","author":"cn-kali-team","tags":"detect,tech,douphp","severity":"info","metadata":{"product":"douphp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"douphp "],"case-insensitive":true}]}]},{"id":"tian-rong-xin-shu-ju-an-quan-xi-tongsbu","info":{"name":"天融信-数据安全系统sbu","author":"cn-kali-team","tags":"detect,tech,天融信-数据安全系统sbu","severity":"info","metadata":{"product":"天融信-数据安全系统sbu","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["天融信数据安全系统sbu"],"case-insensitive":true}]}]},{"id":"collectionsystem","info":{"name":"collectionsystem","author":"cn-kali-team","tags":"detect,tech,collectionsystem","severity":"info","metadata":{"product":"collectionsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"s_container_left\"","upgrade/ocx/ccdmsshell.cab#version"],"case-insensitive":true}]}]},{"id":"bigdump","info":{"name":"bigdump","author":"cn-kali-team","tags":"detect,tech,bigdump","severity":"info","metadata":{"product":"bigdump","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["bigdump: staggered mysql dump importer"],"case-insensitive":true}]}]},{"id":"h3c-er3100","info":{"name":"h3c-er3100","author":"cn-kali-team","tags":"detect,tech,h3c-er3100","severity":"info","metadata":{"product":"h3c-er3100","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["er3100","h3c.com","login"],"condition":"and","case-insensitive":true}]}]},{"id":"leanote-notepad","info":{"name":"leanote-notepad","author":"cn-kali-team","tags":"detect,tech,leanote-notepad","severity":"info","metadata":{"product":"leanote-notepad","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"author\" content=\"leanote,蚂蚁笔记\""],"case-insensitive":true}]}]},{"id":"luxcal","info":{"name":"luxcal","author":"cn-kali-team","tags":"detect,tech,luxcal","severity":"info","metadata":{"product":"luxcal","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class='footlb'>lux","content=\"luxcal","content=\"roel buining"],"case-insensitive":true}]}]},{"id":"ming-yuan-yunerp","info":{"name":"明源云erp","author":"cn-kali-team","tags":"detect,tech,明源云erp","severity":"info","metadata":{"product":"明源云erp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["明源云erp"],"case-insensitive":true}]}]},{"id":"phpopenchat","info":{"name":"phpopenchat","author":"cn-kali-team","tags":"detect,tech,phpopenchat","severity":"info","metadata":{"product":"phpopenchat","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["phpopenchat installation"],"case-insensitive":true}]}]},{"id":"xinhaisoft-system","info":{"name":"xinhaisoft-system","author":"cn-kali-team","tags":"detect,tech,xinhaisoft-system","severity":"info","metadata":{"product":"xinhaisoft-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["../regist.asp?school=","北京心海导航教育科技股份有限公司-中国心理网版权所有<br>"],"case-insensitive":true}]}]},{"id":"ren-wo-xingcrm","info":{"name":"任我行crm","author":"cn-kali-team","tags":"detect,tech,任我行crm","severity":"info","metadata":{"product":"任我行crm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["crm_lastloginuserkey"],"case-insensitive":true}]}]},{"id":"netapp-netcache-appliance","info":{"name":"netapp-netcache-appliance","author":"cn-kali-team","tags":"detect,tech,netapp-netcache-appliance","severity":"info","metadata":{"product":"netapp-netcache-appliance","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: netcache appliance"],"part":"header","case-insensitive":true}]}]},{"id":"manageengine-assetexplorer","info":{"name":"manageengine-assetexplorer","author":"cn-kali-team","tags":"detect,tech,manageengine-assetexplorer","severity":"info","metadata":{"product":"manageengine-assetexplorer","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"footerf2\">manageengine assetexplorer"],"case-insensitive":true}]}]},{"id":"cuisec-system","info":{"name":"cuisec-system","author":"cn-kali-team","tags":"detect,tech,cuisec-system","severity":"info","metadata":{"product":"cuisec-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["r=e&&e.__esmodule?function"],"case-insensitive":true}]}]},{"id":"threatconnect-platform","info":{"name":"threatconnect-platform","author":"cn-kali-team","tags":"detect,tech,threatconnect-platform","severity":"info","metadata":{"product":"threatconnect-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"threatconnect\" />"],"case-insensitive":true}]}]},{"id":"phpecms","info":{"name":"phpecms","author":"cn-kali-team","tags":"detect,tech,phpecms","severity":"info","metadata":{"product":"phpecms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/plus/laydate/laydate.js"],"case-insensitive":true}]}]},{"id":"yong-you-u8+oa-xie-tong-guan-li-ruan-jian","info":{"name":"用友u8+oa协同管理软件","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"用友u8+oa协同管理软件","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["用友u8+oa协同管理软件"],"case-insensitive":true}]}]},{"id":"grasp-erp","info":{"name":"grasp-erp","author":"cn-kali-team","tags":"detect,tech,grasp-erp","severity":"info","metadata":{"product":"grasp-erp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" alert(\"欢迎使用 【管家婆分销erp)"],"case-insensitive":true}]}]},{"id":"shenri-elevator","info":{"name":"shenri-elevator","author":"cn-kali-team","tags":"detect,tech,shenri-elevator","severity":"info","metadata":{"product":"shenri-elevator","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/frameworks/images/ico.ico","copyright 2015 shenri habiliment co.,ltd. all rights reserved","images/login/btnmobile.gif"],"case-insensitive":true}]}]},{"id":"vrv-nac","info":{"name":"vrv-nac","author":"cn-kali-team","tags":"detect,tech,vrv-nac","severity":"info","metadata":{"product":"vrv-nac","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["localstorage.setitem('doctitle','北信源网络接入控制系统')","欢迎登录北信源网络接入控制系统"],"condition":"and","case-insensitive":true},{"type":"word","words":["id=\"modal_delay\""],"case-insensitive":true}]}]},{"id":"creatsoft-system","info":{"name":"creatsoft-system","author":"cn-kali-team","tags":"detect,tech,creatsoft-system","severity":"info","metadata":{"product":"creatsoft-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/corrosion/charts/ph.jsp\"","href=\"/corrosion/charts/water-pid.jsp"],"case-insensitive":true}]}]},{"id":"bestsch-ecs","info":{"name":"bestsch-ecs","author":"cn-kali-team","tags":"detect,tech,bestsch-ecs","severity":"info","metadata":{"product":"bestsch-ecs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/userfiles/admin/customskin","src=\"/include/ecsserverapi.js"],"case-insensitive":true}]}]},{"id":"oracle-enterprise-performance-management-system","info":{"name":"oracle-enterprise-performance-management-system","author":"cn-kali-team","tags":"detect,tech,oracle-enterprise-performance-management-system","severity":"info","metadata":{"product":"oracle-enterprise-performance-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"workspace/dynamichelp"],"case-insensitive":true}]}]},{"id":"i-doc-view-zai-xian-wen-dang-yu-lan","info":{"name":"i-doc-view 在线文档预览","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"i-doc-view 在线文档预览","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["www.idocv.com","/static/idocv/js/home.js"],"condition":"and","case-insensitive":true},{"type":"word","words":["[email protected]","/idocvpreview/static/idocv/js/home.js"],"condition":"and","case-insensitive":true},{"type":"word","words":["<title>i doc view</title>","<a href=\"http://www.idocv.com\">www.idocv.com</a>"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["1fa66ff1d1d1ce0a8ba05838c1b58a15"]},{"type":"word","words":["<title>在线文档预览 - i doc view</title>"],"case-insensitive":true}]}]},{"id":"knopflerfish-http-server","info":{"name":"knopflerfish-http-server","author":"cn-kali-team","tags":"detect,tech,knopflerfish-http-server","severity":"info","metadata":{"product":"knopflerfish-http-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: the knopflerfish http server"],"part":"header","case-insensitive":true}]}]},{"id":"zhi-zhang-yi","info":{"name":"指掌易","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"指掌易","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: zzy_web"],"part":"header","case-insensitive":true},{"type":"word","words":["build/framework/js/download.js"],"case-insensitive":true}]}]},{"id":"av-arcade","info":{"name":"av-arcade","author":"cn-kali-team","tags":"detect,tech,av-arcade","severity":"info","metadata":{"product":"av-arcade","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.avscripts.net/avarcade/"],"case-insensitive":true}]}]},{"id":"pcitc-cameras-and-surveillance","info":{"name":"pcitc-cameras-and-surveillance","author":"cn-kali-team","tags":"detect,tech,pcitc-cameras-and-surveillance","severity":"info","metadata":{"product":"pcitc-cameras-and-surveillance","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["images/slider/banner-gis.png"],"case-insensitive":true}]}]},{"id":"goodway-integrated-management-information-system","info":{"name":"goodway-integrated-management-information-system","author":"cn-kali-team","tags":"detect,tech,goodway-integrated-management-information-system","severity":"info","metadata":{"product":"goodway-integrated-management-information-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["option value=\"enterprise\"","是否域账户登录"],"case-insensitive":true}]}]},{"id":"qianxing-oa","info":{"name":"qianxing-oa","author":"cn-kali-team","tags":"detect,tech,qianxing-oa","severity":"info","metadata":{"product":"qianxing-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["count/mystat.asp","input name=\"s1\" type=\"image\""],"case-insensitive":true}]}]},{"id":"nps","info":{"name":"nps","author":"cn-kali-team","tags":"detect,tech,nps","severity":"info","metadata":{"product":"nps","vendor":"nps_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ehang","login","nps"],"condition":"and","case-insensitive":true}]}]},{"id":"glodon-console","info":{"name":"glodon-console","author":"cn-kali-team","tags":"detect,tech,glodon-console","severity":"info","metadata":{"product":"glodon-console","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/scripts/dd_belatedpng.js","url: \"/console/account/logon\""],"case-insensitive":true}]}]},{"id":"an-da-tong-vpn","info":{"name":"安达通-vpn","author":"cn-kali-team","tags":"detect,tech,安达通-vpn","severity":"info","metadata":{"product":"安达通-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["$('#submitid').bind('click',checksubmitfn);\"","sjw74 vpn网关控制台管理员登录"],"condition":"and","case-insensitive":true}]}]},{"id":"backbee","info":{"name":"backbee","author":"cn-kali-team","tags":"detect,tech,backbee","severity":"info","metadata":{"product":"backbee","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"bb5-site-wrapper\">"],"case-insensitive":true}]}]},{"id":"zyxel-zywall","info":{"name":"zyxel-zywall","author":"cn-kali-team","tags":"detect,tech,zyxel-zywall","severity":"info","metadata":{"product":"zyxel-zywall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>zywall","zyfunction.js"],"condition":"and","case-insensitive":true}]}]},{"id":"conftool","info":{"name":"conftool","author":"cn-kali-team","tags":"detect,tech,conftool","severity":"info","metadata":{"product":"conftool","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href='http://www.conftool.net'>conference management software","<h2 align=center>conftool conference administration"],"case-insensitive":true}]}]},{"id":"dzzoffice-product","info":{"name":"dzzoffice-product","author":"cn-kali-team","tags":"detect,tech,dzzoffice-product","severity":"info","metadata":{"product":"dzzoffice-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.dzzoffice.com\"","dzz/scripts/dzz_min.js","dzz/system/scripts/jquery.jstree.min.js","misc.php?mod=sendmail"],"case-insensitive":true}]}]},{"id":"posun-sales","info":{"name":"posun-sales","author":"cn-kali-team","tags":"detect,tech,posun-sales","severity":"info","metadata":{"product":"posun-sales","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<p>快易销公众号</p>","src=\"/view/static/js/eidpcommon.min.js\""],"case-insensitive":true}]}]},{"id":"hao-shi-tong-fastmeeting","info":{"name":"好视通-fastmeeting","author":"cn-kali-team","tags":"detect,tech,好视通-fastmeeting","severity":"info","metadata":{"product":"好视通-fastmeeting","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["login/createqrcode.do","resources/commonimage/favicon.ico","用户登录"],"condition":"and","case-insensitive":true}]}]},{"id":"sophos-web-appliance","info":{"name":"sophos-web-appliance","author":"cn-kali-team","tags":"detect,tech,sophos-web-appliance","severity":"info","metadata":{"product":"sophos-web-appliance","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["url(resources/images/en/login_swa.jpg)"],"case-insensitive":true}]}]},{"id":"visualware-myconnection-server","info":{"name":"visualware-myconnection-server","author":"cn-kali-team","tags":"detect,tech,visualware-myconnection-server","severity":"info","metadata":{"product":"visualware-myconnection-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- begin myconnection server applet -->"],"case-insensitive":true}]}]},{"id":"kolab","info":{"name":"kolab","author":"cn-kali-team","tags":"detect,tech,kolab","severity":"info","metadata":{"product":"kolab","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"kolab"],"case-insensitive":true}]}]},{"id":"shenguyun-sgc8000","info":{"name":"shenguyun-sgc8000","author":"cn-kali-team","tags":"detect,tech,shenguyun-sgc8000","severity":"info","metadata":{"product":"shenguyun-sgc8000","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var granttype=\"authorization_code"],"case-insensitive":true}]}]},{"id":"bossmail","info":{"name":"bossmail","author":"cn-kali-team","tags":"detect,tech,bossmail","severity":"info","metadata":{"product":"bossmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span class=\"footer_t\">powered by bossmail</span>","href=\"http://apps.microsoft.com/windows/zh-cn/app/bossmail/24f4bdb3-1bca-467e-9dd9-15a5d278aec6"],"case-insensitive":true}]}]},{"id":"cmstop","info":{"name":"cmstop","author":"cn-kali-team","tags":"detect,tech,cmstop","severity":"info","metadata":{"product":"cmstop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a class=\"poweredby\" href=\"http://www.cmstop.com\"","cmstop-list-text.css"],"condition":"and","case-insensitive":true},{"type":"word","words":["/css/cmstop-common.css","/js/cmstop-common.js"],"case-insensitive":true}]}]},{"id":"zhi-yuan-a8+-ji-tuan-ban","info":{"name":"致远a8+集团版","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远a8+集团版","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["v8_0sp2_211020_2025240"],"case-insensitive":true}]}]},{"id":"dradis-framework","info":{"name":"dradis-framework","author":"cn-kali-team","tags":"detect,tech,dradis-framework","severity":"info","metadata":{"product":"dradis-framework","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<p class=\"copyright\">dradis"],"case-insensitive":true}]}]},{"id":"php-cloud","info":{"name":"php-cloud","author":"cn-kali-team","tags":"detect,tech,php-cloud","severity":"info","metadata":{"product":"php-cloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["$(this).removeclass('dn'","<div class=\"index_link_list_name\">","phpyun","yun_index.css","yun_toplogin a.yun_more"],"case-insensitive":true}]}]},{"id":"hua-yu-shu-an-shi-pin-zong-he-an-quan-wang-guan","info":{"name":"华域数安-视频综合安全网关","author":"cn-kali-team","tags":"detect,tech,华域数安-视频综合安全网关","severity":"info","metadata":{"product":"华域数安-视频综合安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"sys-name\">视频综合安全网关</div>","华域数安"],"condition":"and","case-insensitive":true}]}]},{"id":"huawei-rbt-wang-guan-guan-li-xi-tong","info":{"name":"huawei-rbt网关管理系统","author":"cn-kali-team","tags":"detect,tech,huawei-rbt网关管理系统","severity":"info","metadata":{"product":"huawei-rbt网关管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["rbt gateway management system"],"case-insensitive":true}]}]},{"id":"chiliproject","info":{"name":"chiliproject","author":"cn-kali-team","tags":"detect,tech,chiliproject","severity":"info","metadata":{"product":"chiliproject","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"chiliproject","powered by <a href=\"https://www.chiliproject.org/"],"case-insensitive":true}]}]},{"id":"cnrdm-product","info":{"name":"cnrdm-product","author":"cn-kali-team","tags":"detect,tech,cnrdm-product","severity":"info","metadata":{"product":"cnrdm-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["登录青铜器rdm</b></div>"],"case-insensitive":true}]}]},{"id":"bjqit-crm","info":{"name":"bjqit-crm","author":"cn-kali-team","tags":"detect,tech,bjqit-crm","severity":"info","metadata":{"product":"bjqit-crm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=/css/ordercomplaint"],"case-insensitive":true}]}]},{"id":"qz-safe-mail","info":{"name":"qz-safe-mail","author":"cn-kali-team","tags":"detect,tech,qz-safe-mail","severity":"info","metadata":{"product":"qz-safe-mail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/qzmail/index.php"],"case-insensitive":true}]}]},{"id":"teamdoc-filesystem","info":{"name":"teamdoc-filesystem","author":"cn-kali-team","tags":"detect,tech,teamdoc-filesystem","severity":"info","metadata":{"product":"teamdoc-filesystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"labellink\""],"case-insensitive":true}]}]},{"id":"phorum","info":{"name":"phorum","author":"cn-kali-team","tags":"detect,tech,phorum","severity":"info","metadata":{"product":"phorum","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.phorum.org"],"case-insensitive":true}]}]},{"id":"synology-diskstation-nas","info":{"name":"synology-diskstation-nas","author":"cn-kali-team","tags":"detect,tech,synology-diskstation-nas","severity":"info","metadata":{"product":"synology-diskstation-nas","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["diskstation","modules"],"condition":"and","case-insensitive":true},{"type":"word","words":["<meta name=\"application-name\" content=\"synology diskstation","webman/modules"],"case-insensitive":true}]}]},{"id":"h2-database","info":{"name":"h2-database","author":"cn-kali-team","tags":"detect,tech,h2-database","severity":"info","metadata":{"product":"h2-database","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["login.jsp?jsessionid=","welcome to h2"],"case-insensitive":true}]}]},{"id":"trs-hybase","info":{"name":"trs-hybase","author":"cn-kali-team","tags":"detect,tech,trs-hybase","severity":"info","metadata":{"product":"trs-hybase","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"#\">trs hybase</a>"],"case-insensitive":true}]}]},{"id":"laobanmail-visualhost","info":{"name":"laobanmail-visualhost","author":"cn-kali-team","tags":"detect,tech,laobanmail-visualhost","severity":"info","metadata":{"product":"laobanmail-visualhost","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/public/js/util/xg_oyang.js"],"case-insensitive":true}]}]},{"id":"yichao-crmreporting","info":{"name":"yichao-crmreporting","author":"cn-kali-team","tags":"detect,tech,yichao-crmreporting","severity":"info","metadata":{"product":"yichao-crmreporting","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/css/vendors~index.acfeb.css\""],"case-insensitive":true}]}]},{"id":"gridsite","info":{"name":"gridsite","author":"cn-kali-team","tags":"detect,tech,gridsite","severity":"info","metadata":{"product":"gridsite","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.gridsite.org/\">gridsite","gridsite-admin.cgi?cmd"],"case-insensitive":true}]}]},{"id":"barracuda-ssl-vpn","info":{"name":"barracuda-ssl-vpn","author":"cn-kali-team","tags":"detect,tech,barracuda-ssl-vpn","severity":"info","metadata":{"product":"barracuda-ssl-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["barracuda ssl vpn"],"case-insensitive":true}]}]},{"id":"apc-management","info":{"name":"apc-management","author":"cn-kali-team","tags":"detect,tech,apc-management","severity":"info","metadata":{"product":"apc-management","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["this object on the apc management web server is protected"],"case-insensitive":true}]}]},{"id":"yonyou-grp-u8","info":{"name":"yonyou-grp-u8","author":"cn-kali-team","tags":"detect,tech,yonyou-grp-u8","severity":"info","metadata":{"product":"yonyou-grp-u8","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["key2 = \"grp\", key3 = \"u8\"","用友grp-u8"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["b41be1ccc6f9f2894e0cfcf23acf5fc0"]}]}]},{"id":"tsm","info":{"name":"tsm","author":"cn-kali-team","tags":"detect,tech,tsm","severity":"info","metadata":{"product":"tsm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var url = getcontextname() + \"?service=ajaxdirect/1/"],"case-insensitive":true}]}]},{"id":"infomaster","info":{"name":"infomaster","author":"cn-kali-team","tags":"detect,tech,infomaster","severity":"info","metadata":{"product":"infomaster","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/masterview.css","/masterview.js","/masterview/mpleftnavstyle/panelbar.mpifma.css"],"case-insensitive":true}]}]},{"id":"coldfusion","info":{"name":"coldfusion","author":"cn-kali-team","tags":"detect,tech,coldfusion","severity":"info","metadata":{"product":"coldfusion","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cfajax/","<cfscript>"],"case-insensitive":true}]}]},{"id":"hai-xiang-yun-ping-tai","info":{"name":"海翔云平台","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"海翔云平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>登录海翔</title>","./css/seafly/login.css"],"condition":"and","case-insensitive":true}]}]},{"id":"varmour-product","info":{"name":"varmour-product","author":"cn-kali-team","tags":"detect,tech,varmour-product","severity":"info","metadata":{"product":"varmour-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["function loadmunchkinkey()"],"case-insensitive":true}]}]},{"id":"jeecgboot","info":{"name":"jeecgboot","author":"cn-kali-team","tags":"detect,tech,jeecgboot","severity":"info","metadata":{"product":"jeecgboot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["color: #222222;","lang=zh-cmn-hans","loader-"],"condition":"and","case-insensitive":true},{"type":"word","words":["jeecgboot","polyfill_"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["dc7a0b69060a0262530b47b46ba7f9b6"]},{"type":"word","words":["onlinepreviewdomainurl'] = 'http://fileview.jeecg.com"],"case-insensitive":true}]}]},{"id":"openconf","info":{"name":"openconf","author":"cn-kali-team","tags":"detect,tech,openconf","severity":"info","metadata":{"product":"openconf","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.openconf.org","src=\"openconf.js?"],"case-insensitive":true},{"type":"word","words":["set-cookie: openconf="],"part":"header","case-insensitive":true}]}]},{"id":"h3c-cas","info":{"name":"h3c-cas","author":"cn-kali-team","tags":"detect,tech,h3c-cas","severity":"info","metadata":{"product":"h3c-cas","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"cas.css"],"case-insensitive":true}]}]},{"id":"nextjs","info":{"name":"nextjs","author":"cn-kali-team","tags":"detect,tech,nextjs","severity":"info","metadata":{"product":"nextjs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta name=\"next-head-count"],"case-insensitive":true},{"type":"word","words":["x-powered-by: next.js"],"part":"header","case-insensitive":true}]}]},{"id":"avantfax-ictfax","info":{"name":"avantfax-ictfax","author":"cn-kali-team","tags":"detect,tech,avantfax-ictfax","severity":"info","metadata":{"product":"avantfax-ictfax","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"images/avantfax-big.png\" border=\"0\" alt=\"ictfax","content=\"ictfax"],"case-insensitive":true}]}]},{"id":"wiserice-system","info":{"name":"wiserice-system","author":"cn-kali-team","tags":"detect,tech,wiserice-system","severity":"info","metadata":{"product":"wiserice-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/resources/metronic/scripts/hz-tools.js","<h4>请在下框里画图形来提交登录"],"case-insensitive":true}]}]},{"id":"zfsoft-oa","info":{"name":"zfsoft-oa","author":"cn-kali-team","tags":"detect,tech,zfsoft-oa","severity":"info","metadata":{"product":"zfsoft-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["zfoausername"],"case-insensitive":true}]}]},{"id":"etcd-viewer","info":{"name":"etcd-viewer","author":"cn-kali-team","tags":"detect,tech,etcd-viewer","severity":"info","metadata":{"product":"etcd-viewer","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a class=\"navbar-brand\" href=\"./home\">etcd viewer</a>"],"case-insensitive":true}]}]},{"id":"ibm-chassis-management","info":{"name":"ibm-chassis-management","author":"cn-kali-team","tags":"detect,tech,ibm-chassis-management","severity":"info","metadata":{"product":"ibm-chassis-management","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[",\"chassis_name\":"],"case-insensitive":true}]}]},{"id":"hikvision-intelligentsafeguardsystems","info":{"name":"hikvision-intelligentsafeguardsystems","author":"cn-kali-team","tags":"detect,tech,hikvision-intelligentsafeguardsystems","severity":"info","metadata":{"product":"hikvision-intelligentsafeguardsystems","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location.href.indexof(\"/index/carfile/\""],"case-insensitive":true}]}]},{"id":"iwebshop","info":{"name":"iwebshop","author":"cn-kali-team","tags":"detect,tech,iwebshop","severity":"info","metadata":{"product":"iwebshop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["_weburl","class=\"pro_title\">iwebshop支付测试"],"condition":"and","case-insensitive":true},{"type":"word","words":["_skinpath","_themepath"],"case-insensitive":true}]}]},{"id":"crhms-medical-insurance-decision-support-system","info":{"name":"crhms-medical-insurance-decision-support-system","author":"cn-kali-team","tags":"detect,tech,crhms-medical-insurance-decision-support-system","severity":"info","metadata":{"product":"crhms-medical-insurance-decision-support-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"source\" value=\"clientbin/cisdasystem.xap\""],"case-insensitive":true}]}]},{"id":"promail","info":{"name":"promail","author":"cn-kali-team","tags":"detect,tech,promail","severity":"info","metadata":{"product":"promail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by squirrelmail.org. squirrelmail","promail ™ - login"],"condition":"and","case-insensitive":true}]}]},{"id":"mkey","info":{"name":"mkey","author":"cn-kali-team","tags":"detect,tech,mkey","severity":"info","metadata":{"product":"mkey","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["北京数字天堂信息科技有限责任公司"],"case-insensitive":true}]}]},{"id":"asus-aicloud","info":{"name":"asus-aicloud","author":"cn-kali-team","tags":"detect,tech,asus-aicloud","severity":"info","metadata":{"product":"asus-aicloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/smb/css/startup.png\""],"case-insensitive":true}]}]},{"id":"proscan","info":{"name":"proscan","author":"cn-kali-team","tags":"detect,tech,proscan","severity":"info","metadata":{"product":"proscan","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: proscan"],"part":"header","case-insensitive":true}]}]},{"id":"maop-oa","info":{"name":"maop-oa","author":"cn-kali-team","tags":"detect,tech,maop-oa","severity":"info","metadata":{"product":"maop-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.oooa.cn\">重庆猫扑网络科技有限公司</a>","pwd yahei16","www.oooa.cn"],"case-insensitive":true}]}]},{"id":"opendocman","info":{"name":"opendocman","author":"cn-kali-team","tags":"detect,tech,opendocman","severity":"info","metadata":{"product":"opendocman","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["target=\"_new\">opendocman","welcome to opendocman"],"case-insensitive":true}]}]},{"id":"poweralert","info":{"name":"poweralert","author":"cn-kali-team","tags":"detect,tech,poweralert","severity":"info","metadata":{"product":"poweralert","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: poweralert http server"],"part":"header","case-insensitive":true}]}]},{"id":"panabit-ixcache","info":{"name":"panabit-ixcache","author":"cn-kali-team","tags":"detect,tech,panabit-ixcache","severity":"info","metadata":{"product":"panabit-ixcache","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>ixcache</title>"],"case-insensitive":true}]}]},{"id":"interred","info":{"name":"interred","author":"cn-kali-team","tags":"detect,tech,interred","severity":"info","metadata":{"product":"interred","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"interred","created with interred"],"case-insensitive":true}]}]},{"id":"h3c-router","info":{"name":"h3c-router","author":"cn-kali-team","tags":"detect,tech,h3c-router","severity":"info","metadata":{"product":"h3c-router","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["restore.htm","[email protected]"],"condition":"and","case-insensitive":true}]}]},{"id":"teamviewer","info":{"name":"teamviewer","author":"cn-kali-team","tags":"detect,tech,teamviewer","severity":"info","metadata":{"product":"teamviewer","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["teamviewer","this site is running"],"condition":"and","case-insensitive":true},{"type":"word","words":["<a href='http://www.teamviewer.com'>teamviewer</a>","this site is running"],"case-insensitive":true}]}]},{"id":"sangfor-ba","info":{"name":"sangfor-ba","author":"cn-kali-team","tags":"detect,tech,sangfor-ba","severity":"info","metadata":{"product":"sangfor-ba","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["haovuytkjlnvxpuhsecmbljplpvjz = function(str, key) "],"case-insensitive":true}]}]},{"id":"dell-n1108p-on","info":{"name":"dell-n1108p-on","author":"cn-kali-team","tags":"detect,tech,dell-n1108p-on","severity":"info","metadata":{"product":"dell-n1108p-on","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"login_server_default\">n1108p-on"],"case-insensitive":true}]}]},{"id":"qibosoft-microsite","info":{"name":"qibosoft-microsite","author":"cn-kali-team","tags":"detect,tech,qibosoft-microsite","severity":"info","metadata":{"product":"qibosoft-microsite","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by qibosoft v1.0"],"case-insensitive":true}]}]},{"id":"emc-onefs","info":{"name":"emc-onefs","author":"cn-kali-team","tags":"detect,tech,emc-onefs","severity":"info","metadata":{"product":"emc-onefs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/onefs/styles/onefs.css"],"case-insensitive":true}]}]},{"id":"webalizer-log","info":{"name":"webalizer-log","author":"cn-kali-team","tags":"detect,tech,webalizer-log","severity":"info","metadata":{"product":"webalizer-log","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- generated by the webalizer ver","<!-- webalizer version","<a href=\"http://www.webalizer.org"],"case-insensitive":true}]}]},{"id":"lflflf","info":{"name":"lflflf","author":"cn-kali-team","tags":"detect,tech,lflflf","severity":"info","metadata":{"product":"lflflf","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/lfradius/"],"case-insensitive":true}]}]},{"id":"haidaoshop","info":{"name":"haidaoshop","author":"cn-kali-team","tags":"detect,tech,haidaoshop","severity":"info","metadata":{"product":"haidaoshop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["haidao.web.general.js"],"case-insensitive":true}]}]},{"id":"clientexec","info":{"name":"clientexec","author":"cn-kali-team","tags":"detect,tech,clientexec","severity":"info","metadata":{"product":"clientexec","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by clientexec"],"case-insensitive":true}]}]},{"id":"vectr","info":{"name":"vectr","author":"cn-kali-team","tags":"detect,tech,vectr","severity":"info","metadata":{"product":"vectr","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: /sra-purpletools-webui/app"],"part":"header","case-insensitive":true}]}]},{"id":"igenus-webmail","info":{"name":"igenus-webmail","author":"cn-kali-team","tags":"detect,tech,igenus-webmail","severity":"info","metadata":{"product":"igenus-webmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.igenus.org/\" target=\"_blank\">","igenus webmail system"],"condition":"and","case-insensitive":true}]}]},{"id":"yonyou-u8-cloud","info":{"name":"yonyou-u8-cloud","author":"cn-kali-team","tags":"detect,tech,yonyou-u8-cloud","severity":"info","metadata":{"product":"yonyou-u8-cloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["开启u8 cloud云端之旅"],"case-insensitive":true}]}]},{"id":"spring-boot-admin","info":{"name":"spring-boot-admin","author":"cn-kali-team","tags":"detect,tech,spring-boot-admin","severity":"info","metadata":{"product":"spring-boot-admin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"assets/img/icon-spring-boot-admin.svg","spring boot admin"],"case-insensitive":true}]}]},{"id":"mobileiron-mdm","info":{"name":"mobileiron-mdm","author":"cn-kali-team","tags":"detect,tech,mobileiron-mdm","severity":"info","metadata":{"product":"mobileiron-mdm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/whitelabel/mobileiron/img/favicon.ico"],"case-insensitive":true}]}]},{"id":"afterlogic-webmail","info":{"name":"afterlogic-webmail","author":"cn-kali-team","tags":"detect,tech,afterlogic-webmail","severity":"info","metadata":{"product":"afterlogic-webmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["afterlogic webmail pro"],"case-insensitive":true}]}]},{"id":"victorysoft","info":{"name":"victorysoft","author":"cn-kali-team","tags":"detect,tech,victorysoft","severity":"info","metadata":{"product":"victorysoft","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"webstyles/webstyle1/style1/css.css\"","value=\"style2012/style1/scripts/expressinstall.swf\""],"case-insensitive":true}]}]},{"id":"cmspro","info":{"name":"cmspro","author":"cn-kali-team","tags":"detect,tech,cmspro","severity":"info","metadata":{"product":"cmspro","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cms内容管理系统","开普互联"],"condition":"and","case-insensitive":true}]}]},{"id":"3kits-cms","info":{"name":"3kits-cms","author":"cn-kali-team","tags":"detect,tech,3kits-cms","severity":"info","metadata":{"product":"3kits-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["3kits</a>","href=\"http://www.3kits.com\""],"case-insensitive":true}]}]},{"id":"ueditor","info":{"name":"ueditor","author":"cn-kali-team","tags":"detect,tech,ueditor","severity":"info","metadata":{"product":"ueditor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ueditor.all.js"],"case-insensitive":true}]}]},{"id":"smartcds","info":{"name":"smartcds","author":"cn-kali-team","tags":"detect,tech,smartcds","severity":"info","metadata":{"product":"smartcds","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: smartcds"],"part":"header","case-insensitive":true}]}]},{"id":"zhong-ke-wang-wei-an-quan-jie-ru-wang-guan","info":{"name":"中科网威-安全接入网关","author":"cn-kali-team","tags":"detect,tech,中科网威-安全接入网关","severity":"info","metadata":{"product":"中科网威-安全接入网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<form id=\"form1\" name=\"form1\" method=\"post\" action=\"login_commit.php\" class=\"mainbox\">","document.getelementbyid(\"dkey_login\").checked=false;"],"condition":"and","case-insensitive":true}]}]},{"id":"netartmedia-real-estate-portal","info":{"name":"netartmedia-real-estate-portal","author":"cn-kali-team","tags":"detect,tech,netartmedia-real-estate-portal","severity":"info","metadata":{"product":"netartmedia-real-estate-portal","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.netartmedia.net/realestate"],"case-insensitive":true}]}]},{"id":"faqrobot","info":{"name":"faqrobot","author":"cn-kali-team","tags":"detect,tech,faqrobot","severity":"info","metadata":{"product":"faqrobot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"faq客服机器人","南京云问网络技术有限公司"],"case-insensitive":true}]}]},{"id":"canal-admin","info":{"name":"canal-admin","author":"cn-kali-team","tags":"detect,tech,canal-admin","severity":"info","metadata":{"product":"canal-admin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["canal admin"],"case-insensitive":true}]}]},{"id":"softbiz-online-auctions-script","info":{"name":"softbiz-online-auctions-script","author":"cn-kali-team","tags":"detect,tech,softbiz-online-auctions-script","severity":"info","metadata":{"product":"softbiz-online-auctions-script","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.softbizscripts.com"],"case-insensitive":true}]}]},{"id":"gitstack-code","info":{"name":"gitstack-code","author":"cn-kali-team","tags":"detect,tech,gitstack-code","severity":"info","metadata":{"product":"gitstack-code","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["^gitstack/"],"case-insensitive":true}]}]},{"id":"zuitu","info":{"name":"zuitu","author":"cn-kali-team","tags":"detect,tech,zuitu","severity":"info","metadata":{"product":"zuitu","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["help/zuitu.php"],"case-insensitive":true}]}]},{"id":"sysaid-help-desk","info":{"name":"sysaid-help-desk","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"sysaid-help-desk","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sysaid-logo-dark-green.png","www.sysaid.com","<title>sysaid help desk software</title>"],"case-insensitive":true}]}]},{"id":"inspinia","info":{"name":"inspinia","author":"cn-kali-team","tags":"detect,tech,inspinia","severity":"info","metadata":{"product":"inspinia","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["inspinia","name=\"password"],"condition":"and","case-insensitive":true}]}]},{"id":"wang-kang-ke-ji-hu-lian-wang-kong-zhi-wang-guan","info":{"name":"网康科技-互联网控制网关","author":"cn-kali-team","tags":"detect,tech,网康科技-互联网控制网关","severity":"info","metadata":{"product":"网康科技-互联网控制网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["网康互联网控制网关","网康科技互联网控制网关"],"condition":"and","case-insensitive":true}]}]},{"id":"tai-xin-tmailer-you-jian-xi-tong","info":{"name":"泰信tmailer邮件系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"泰信tmailer邮件系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["set-cookie: tm_test=true","server: theproxy"],"part":"header","case-insensitive":true},{"type":"favicon","hash":["9f99176691d4caf44367865e2602f555"]}]}]},{"id":"sanshuichinatelecombusinesssupportroomsystem","info":{"name":"sanshuichinatelecombusinesssupportroomsystem","author":"cn-kali-team","tags":"detect,tech,sanshuichinatelecombusinesssupportroomsystem","severity":"info","metadata":{"product":"sanshuichinatelecombusinesssupportroomsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["background=\"images/vista.jpg\""],"case-insensitive":true}]}]},{"id":"cockpit","info":{"name":"cockpit","author":"cn-kali-team","tags":"detect,tech,cockpit","severity":"info","metadata":{"product":"cockpit","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cockpit/static/login.css","cockpit/static/login.js"],"condition":"and","case-insensitive":true}]}]},{"id":"ruijie-cloud","info":{"name":"ruijie-cloud","author":"cn-kali-team","tags":"detect,tech,ruijie-cloud","severity":"info","metadata":{"product":"ruijie-cloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"rcp, 管理平台\""],"case-insensitive":true}]}]},{"id":"apereo-cas","info":{"name":"apereo-cas","author":"cn-kali-team","tags":"detect,tech,apereo-cas","severity":"info","metadata":{"product":"apereo-cas","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cas – central authentication service"],"case-insensitive":true}]}]},{"id":"wellcare-health-management-system","info":{"name":"wellcare-health-management-system","author":"cn-kali-team","tags":"detect,tech,wellcare-health-management-system","severity":"info","metadata":{"product":"wellcare-health-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/web/vfyphrmedical\">健康档案</a></li>","www.wellcare.cn"],"case-insensitive":true}]}]},{"id":"kordil-edms","info":{"name":"kordil-edms","author":"cn-kali-team","tags":"detect,tech,kordil-edms","severity":"info","metadata":{"product":"kordil-edms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[">kordil edms"],"case-insensitive":true}]}]},{"id":"xray-clandbeta","info":{"name":"xray-clandbeta","author":"cn-kali-team","tags":"detect,tech,xray-clandbeta","severity":"info","metadata":{"product":"xray-clandbeta","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["2fdaf65cb9342b76c97b027fc6f545e8"]},{"type":"word","words":["/cland/css/"],"case-insensitive":true}]}]},{"id":"yong-you-zhi-yuan-a6-xie-tong-ban-gong-ruan-jian","info":{"name":"用友致远a6协同办公软件","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"用友致远a6协同办公软件","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["images/login/a6flash.swf","辅助程序安装"],"condition":"and","case-insensitive":true},{"type":"word","words":["用友致远a6协同办公软件","辅助程序安装"],"condition":"and","case-insensitive":true}]}]},{"id":"yi-dong-ban-gongoa","info":{"name":"移动办公oa","author":"cn-kali-team","tags":"detect,tech,移动办公oa","severity":"info","metadata":{"product":"移动办公oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"pad-0 pt-2 pb-2 text-center tc-gray mt-1\"","qccodewidth1 = document.getelementbyid(\"divqrcode\")"],"condition":"and","case-insensitive":true}]}]},{"id":"winmail-server","info":{"name":"winmail-server","author":"cn-kali-team","tags":"detect,tech,winmail-server","severity":"info","metadata":{"product":"winmail-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["encryptpwd","sessid"],"condition":"and","case-insensitive":true},{"type":"word","words":["f_theme","pwdplaceholder"],"condition":"and","case-insensitive":true},{"type":"word","words":["(build ","background=\"customer/winmail_bg11.jpg"],"condition":"and","case-insensitive":true},{"type":"word","words":["amax information technologies inc.","pop3,smtp server: <font color=red>","src=\"customer/index_winmail_new.gif","src=\"themes/default/images/mail_pic.jpg","winmail mail server"],"case-insensitive":true}]}]},{"id":"tian-wen-wu-ye-erp-xi-tong","info":{"name":"天问物业erp系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"天问物业erp系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["www.tw369.com","天问互联"],"case-insensitive":true}]}]},{"id":"uqcms","info":{"name":"uqcms","author":"cn-kali-team","tags":"detect,tech,uqcms","severity":"info","metadata":{"product":"uqcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/public/css/common_uqcms.css"],"case-insensitive":true}]}]},{"id":"orenosv","info":{"name":"orenosv","author":"cn-kali-team","tags":"detect,tech,orenosv","severity":"info","metadata":{"product":"orenosv","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: orenosv"],"part":"header","case-insensitive":true}]}]},{"id":"alibaba-qi-ye-you-xiang","info":{"name":"alibaba-企业邮箱","author":"cn-kali-team","tags":"detect,tech,alibaba-企业邮箱","severity":"info","metadata":{"product":"alibaba-企业邮箱","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/alimail/error/browserlog","content=\"阿里企业邮箱"],"condition":"and","case-insensitive":true}]}]},{"id":"interactivevirtualshipdisplaysystem","info":{"name":"interactivevirtualshipdisplaysystem","author":"cn-kali-team","tags":"detect,tech,interactivevirtualshipdisplaysystem","severity":"info","metadata":{"product":"interactivevirtualshipdisplaysystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["交互式虚拟船舶展示系统</a>"],"case-insensitive":true}]}]},{"id":"avaya-system-platform","info":{"name":"avaya-system-platform","author":"cn-kali-team","tags":"detect,tech,avaya-system-platform","severity":"info","metadata":{"product":"avaya-system-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"0;url=vsplogin.action"],"case-insensitive":true}]}]},{"id":"advantech_wise","info":{"name":"advantech_wise","author":"cn-kali-team","tags":"detect,tech,advantech_wise","severity":"info","metadata":{"product":"advantech_wise","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["remote manage your intelligent systems"],"case-insensitive":true}]}]},{"id":"lg-supersign","info":{"name":"lg-supersign","author":"cn-kali-team","tags":"detect,tech,lg-supersign","severity":"info","metadata":{"product":"lg-supersign","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/ssw/js/user/index.js\""],"case-insensitive":true}]}]},{"id":"genieatm","info":{"name":"genieatm","author":"cn-kali-team","tags":"detect,tech,genieatm","severity":"info","metadata":{"product":"genieatm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["copyright© genie networks ltd.","defect 3531"],"case-insensitive":true}]}]},{"id":"hp-virtual-connect-manager","info":{"name":"hp-virtual-connect-manager","author":"cn-kali-team","tags":"detect,tech,hp-virtual-connect-manager","severity":"info","metadata":{"product":"hp-virtual-connect-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name='mx_hidden' src=\"common/hiddenframe.html"],"case-insensitive":true}]}]},{"id":"zheng-tong-hui-feng-shi-li-kong-zhi-tai-oa","info":{"name":"正通慧丰实例控制台-oa","author":"cn-kali-team","tags":"detect,tech,正通慧丰实例控制台-oa","severity":"info","metadata":{"product":"正通慧丰实例控制台-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["f07d5960a56ea44c35496bf1dea9a015"]}]}]},{"id":"seagull-php-framework","info":{"name":"seagull-php-framework","author":"cn-kali-team","tags":"detect,tech,seagull-php-framework","severity":"info","metadata":{"product":"seagull-php-framework","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var sgl_js_sessid"],"case-insensitive":true}]}]},{"id":"zhi-yuan-oa-(-wei-zhi-ban-ben-)","info":{"name":"致远oa (未知版本)","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远oa (未知版本)","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["seeyon.ui.core-debug.js","common/js/jquery.json-debug.js"],"condition":"and","case-insensitive":true},{"type":"word","words":["weixin.seeyon.com/mobilehelp.jsp?random=","/seeyon/common/js/passwdcheck.js?v="],"condition":"and","case-insensitive":true}]}]},{"id":"libsys-library","info":{"name":"libsys-library","author":"cn-kali-team","tags":"detect,tech,libsys-library","severity":"info","metadata":{"product":"libsys-library","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"header_opac_logo\">"],"case-insensitive":true}]}]},{"id":"zhi-yuan-a8-m-qi-ye-ji-tuan-ban","info":{"name":"致远a8-m企业集团版","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远a8-m企业集团版","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/seeyon/user-data/images/login/login.gif","/seeyon/common/skin/default/images/login.gif"],"case-insensitive":true}]}]},{"id":"ranzhi-oa","info":{"name":"ranzhi-oa","author":"cn-kali-team","tags":"detect,tech,ranzhi-oa","severity":"info","metadata":{"product":"ranzhi-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/sys/index.php?m=user&f=login&referer="],"case-insensitive":true}]}]},{"id":"ecwapoa","info":{"name":"ecwapoa","author":"cn-kali-team","tags":"detect,tech,ecwapoa","severity":"info","metadata":{"product":"ecwapoa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ecwapoa"],"case-insensitive":true}]}]},{"id":"hanweb-system","info":{"name":"hanweb-system","author":"cn-kali-team","tags":"detect,tech,hanweb-system","severity":"info","metadata":{"product":"hanweb-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/jcms_files/jcms","<a href='http://www.hanweb.com' style='display:none'>","<meta name='author' content='大汉网络'>","<meta name='generator' content='大汉版通'>","produced by 大汉网络"],"case-insensitive":true}]}]},{"id":"apache-axis","info":{"name":"apache-axis","author":"cn-kali-team","tags":"detect,tech,apache-axis","severity":"info","metadata":{"product":"apache-axis","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http://ws.apache.org/axis2"],"case-insensitive":true}]}]},{"id":"pivotx","info":{"name":"pivotx","author":"cn-kali-team","tags":"detect,tech,pivotx","severity":"info","metadata":{"product":"pivotx","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"pivotx","src=\"includes/js/pivotx.js","templates_internal/assets/pivotx.png\" alt=\"pivotx"],"case-insensitive":true}]}]},{"id":"zhong-duan-an-quan-guan-li-xi-tong-bao-biao-xi-tong","info":{"name":"终端安全管理系统报表系统","author":"cn-kali-team","tags":"detect,tech,终端安全管理系统报表系统","severity":"info","metadata":{"product":"终端安全管理系统报表系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"loadprogress.gif\" alt=\"loading\""],"case-insensitive":true}]}]},{"id":"ilas","info":{"name":"ilas","author":"cn-kali-team","tags":"detect,tech,ilas","severity":"info","metadata":{"product":"ilas","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<iframe name=\"content\" src=\"index_middle.html\" frameborder=\"auto","<select id=\"selprovince\" onchange=\"getcity(this.options[this.selectedindex].value)\">"],"case-insensitive":true}]}]},{"id":"fourseasonsvpn","info":{"name":"fourseasonsvpn","author":"cn-kali-team","tags":"detect,tech,fourseasonsvpn","severity":"info","metadata":{"product":"fourseasonsvpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["fs vpn","imgs/fs-black-box.jpg"],"condition":"and","case-insensitive":true}]}]},{"id":"yi-dong-ban-gong-ji-gong-zuo-du-ban-xi-tong","info":{"name":"移动办公及工作督办系统","author":"cn-kali-team","tags":"detect,tech,移动办公及工作督办系统","severity":"info","metadata":{"product":"移动办公及工作督办系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"icon iconxinan\"","class=\"icon-container wrapper\""],"condition":"and","case-insensitive":true}]}]},{"id":"jltech","info":{"name":"jltech","author":"cn-kali-team","tags":"detect,tech,jltech","severity":"info","metadata":{"product":"jltech","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jlwcs","京伦建站系统 "],"condition":"and","case-insensitive":true}]}]},{"id":"hua-qing-xin-an-tong-yi-an-quan-fang-yu-ping-tai","info":{"name":"华清信安-统一安全防御平台","author":"cn-kali-team","tags":"detect,tech,华清信安-统一安全防御平台","severity":"info","metadata":{"product":"华清信安-统一安全防御平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"华清信安统一安全防御平台","window.dmsdefaultlanguage"],"condition":"and","case-insensitive":true}]}]},{"id":"wdlinux-wdcpsystem","info":{"name":"wdlinux-wdcpsystem","author":"cn-kali-team","tags":"detect,tech,wdlinux-wdcpsystem","severity":"info","metadata":{"product":"wdlinux-wdcpsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.wdlinux.cn/bbs/index.php","linux云主机"],"case-insensitive":true},{"type":"word","words":["set-cookie: wdcpsessionid"],"part":"header","case-insensitive":true}]}]},{"id":"runda-supervisory-platform","info":{"name":"runda-supervisory-platform","author":"cn-kali-team","tags":"detect,tech,runda-supervisory-platform","severity":"info","metadata":{"product":"runda-supervisory-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"log_rbox\""],"case-insensitive":true}]}]},{"id":"pivot","info":{"name":"pivot","author":"cn-kali-team","tags":"detect,tech,pivot","severity":"info","metadata":{"product":"pivot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.pivotlog.net/?ver=pivot","powered bypivot"],"case-insensitive":true}]}]},{"id":"ruijie-it","info":{"name":"ruijie-it","author":"cn-kali-team","tags":"detect,tech,ruijie-it","severity":"info","metadata":{"product":"ruijie-it","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var logincookiename = 'riil_id'"],"case-insensitive":true}]}]},{"id":"avaya-aura-utility-server","info":{"name":"avaya-aura-utility-server","author":"cn-kali-team","tags":"detect,tech,avaya-aura-utility-server","severity":"info","metadata":{"product":"avaya-aura-utility-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/webhelp/base/utility_toc.htm","avaya aura® utility services","avaya inc. all rights reserved","vmstitle\">avaya aura™ utility server"],"case-insensitive":true}]}]},{"id":"softbiz-online-classifieds","info":{"name":"softbiz-online-classifieds","author":"cn-kali-team","tags":"detect,tech,softbiz-online-classifieds","severity":"info","metadata":{"product":"softbiz-online-classifieds","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http://www.softbizscripts.com/classified-ads-plus-script-features.php"],"case-insensitive":true}]}]},{"id":"fan-pu-jian-zhu-gong-cheng-shi-gong-oa","info":{"name":"泛普建筑工程施工oa","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"泛普建筑工程施工oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dwr/interface/loginservice.js","dwr/interface/loginservice.js"],"case-insensitive":true}]}]},{"id":"simbix-framework","info":{"name":"simbix-framework","author":"cn-kali-team","tags":"detect,tech,simbix-framework","severity":"info","metadata":{"product":"simbix-framework","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"image\"><img src=\"/logo-lpage.png\" width=\"40\" height=\"40\" alt=\"simbix framework\" /></div>","content=\"simbix framework v","logo-lpage-owner.png"],"case-insensitive":true}]}]},{"id":"ewebs","info":{"name":"ewebs","author":"cn-kali-team","tags":"detect,tech,ewebs","severity":"info","metadata":{"product":"ewebs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["clientdownload.xgi","newsoft"],"condition":"and","case-insensitive":true},{"type":"word","words":["/js/xajax05/xajax_js/xajax_core.js","<a href='../client/ewebsclientsetup.exe'></a> </td>"],"case-insensitive":true}]}]},{"id":"cdr-stats","info":{"name":"cdr-stats","author":"cn-kali-team","tags":"detect,tech,cdr-stats","severity":"info","metadata":{"product":"cdr-stats","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/static/cdr-stats/js/jquery"],"case-insensitive":true}]}]},{"id":"sophos-cyberoam-sslvpn","info":{"name":"sophos-cyberoam-sslvpn","author":"cn-kali-team","tags":"detect,tech,sophos-cyberoam-sslvpn","severity":"info","metadata":{"product":"sophos-cyberoam-sslvpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cyberoam ssl vpn portal","sslvpnuserportalloginform"],"condition":"and","case-insensitive":true}]}]},{"id":"esri-arcgis","info":{"name":"esri-arcgis","author":"cn-kali-team","tags":"detect,tech,esri-arcgis","severity":"info","metadata":{"product":"esri-arcgis","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["esri/discovery/admin.js"],"case-insensitive":true}]}]},{"id":"pritlog","info":{"name":"pritlog","author":"cn-kali-team","tags":"detect,tech,pritlog","severity":"info","metadata":{"product":"pritlog","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<em id=\"jserror\">please enable javascript for full functionality","powered by <a href=\"http://pritlog.com/\">pritlog"],"case-insensitive":true}]}]},{"id":"codepush-server","info":{"name":"codepush-server","author":"cn-kali-team","tags":"detect,tech,codepush-server","severity":"info","metadata":{"product":"codepush-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"codepush service is hotupdate services"],"case-insensitive":true}]}]},{"id":"egroupware","info":{"name":"egroupware","author":"cn-kali-team","tags":"detect,tech,egroupware","severity":"info","metadata":{"product":"egroupware","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"egroupware"],"case-insensitive":true}]}]},{"id":"cisco-prime-infrastructure","info":{"name":"cisco-prime-infrastructure","author":"cn-kali-team","tags":"detect,tech,cisco-prime-infrastructure","severity":"info","metadata":{"product":"cisco-prime-infrastructure","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/webacs/lib/xwt/themes/prime/prime-xwt.css","<div class=\"xwtproductname\" >cisco prime infrastructure","webacs/welcomeaction.do"],"case-insensitive":true},{"type":"word","words":["server: prime"],"part":"header","case-insensitive":true}]}]},{"id":"tiki-wiki-cms","info":{"name":"tiki-wiki-cms","author":"cn-kali-team","tags":"detect,tech,tiki-wiki-cms","severity":"info","metadata":{"product":"tiki-wiki-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jquerytiki = new object"],"case-insensitive":true}]}]},{"id":"lemis-management-system","info":{"name":"lemis-management-system","author":"cn-kali-team","tags":"detect,tech,lemis-management-system","severity":"info","metadata":{"product":"lemis-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["lemis.web_app_name"],"case-insensitive":true}]}]},{"id":"ali-monitoring-system","info":{"name":"ali-monitoring-system","author":"cn-kali-team","tags":"detect,tech,ali-monitoring-system","severity":"info","metadata":{"product":"ali-monitoring-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/monitor/css/monitor.css","href=\"/monitor/monitoritem/monitoritemlist.htm"],"case-insensitive":true}]}]},{"id":"an-heng-xin-xi-ming-jian-wang-zhan-an-quan-jian-ce-ping-tai","info":{"name":"安恒信息-明鉴网站安全监测平台","author":"cn-kali-team","tags":"detect,tech,安恒信息-明鉴网站安全监测平台","severity":"info","metadata":{"product":"安恒信息-明鉴网站安全监测平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["网站安全检测平台","网站安全监测平台"],"condition":"and","case-insensitive":true}]}]},{"id":"appserv","info":{"name":"appserv","author":"cn-kali-team","tags":"detect,tech,appserv","severity":"info","metadata":{"product":"appserv","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["appserv/softicon.gif","index.php?appservlang=th"],"case-insensitive":true}]}]},{"id":"aardvark-topsites","info":{"name":"aardvark-topsites","author":"cn-kali-team","tags":"detect,tech,aardvark-topsites","severity":"info","metadata":{"product":"aardvark-topsites","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["aardvark topsites"],"case-insensitive":true}]}]},{"id":"tong-cheng-duo-yong-hu-shang-cheng","info":{"name":"同城多用户商城","author":"cn-kali-team","tags":"detect,tech,同城多用户商城","severity":"info","metadata":{"product":"同城多用户商城","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/style_chaoshi/"],"case-insensitive":true}]}]},{"id":"ibm-cognos","info":{"name":"ibm-cognos","author":"cn-kali-team","tags":"detect,tech,ibm-cognos","severity":"info","metadata":{"product":"ibm-cognos","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cgi-bin/cognos.cgi","cognos 是 international business machines corp"],"condition":"and","case-insensitive":true}]}]},{"id":"sun-web-server","info":{"name":"sun-web-server","author":"cn-kali-team","tags":"detect,tech,sun-web-server","severity":"info","metadata":{"product":"sun-web-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: sun-web-server"],"part":"header","case-insensitive":true}]}]},{"id":"u-mail","info":{"name":"u-mail","author":"cn-kali-team","tags":"detect,tech,u-mail","severity":"info","metadata":{"product":"u-mail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<body link=\"white\" vlink=\"white\" alink=\"white\">","<meta http-equiv=\"refresh\" content=\"0;url=./webmail/\">","power by <a href=\"http://www.comingchina.com\">u-mail邮件服务器</a>","u-mail webadmin 要求启用 javascript"],"case-insensitive":true}]}]},{"id":"yonyou-ksoa","info":{"name":"yonyou-ksoa","author":"cn-kali-team","tags":"detect,tech,yonyou-ksoa","severity":"info","metadata":{"product":"yonyou-ksoa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onmouseout=\"this.classname='btn btnoff'\""],"case-insensitive":true}]}]},{"id":"topper-nms","info":{"name":"topper-nms","author":"cn-kali-team","tags":"detect,tech,topper-nms","severity":"info","metadata":{"product":"topper-nms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mailto:[email protected]"],"case-insensitive":true}]}]},{"id":"chinatelecomarrearsrecoverymanagementsystem","info":{"name":"chinatelecomarrearsrecoverymanagementsystem","author":"cn-kali-team","tags":"detect,tech,chinatelecomarrearsrecoverymanagementsystem","severity":"info","metadata":{"product":"chinatelecomarrearsrecoverymanagementsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"v_login_container\""],"case-insensitive":true}]}]},{"id":"5k-crm","info":{"name":"5k-crm","author":"cn-kali-team","tags":"detect,tech,5k-crm","severity":"info","metadata":{"product":"5k-crm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/public/js/5kcrm.js"],"case-insensitive":true}]}]},{"id":"outline","info":{"name":"outline","author":"cn-kali-team","tags":"detect,tech,outline","severity":"info","metadata":{"product":"outline","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>outline</title>","title=\"outline\"/>"],"condition":"and","case-insensitive":true}]}]},{"id":"jie-shun-jielink-zhi-neng-zhong-duan-cao-zuo-ping-tai","info":{"name":"捷顺 jielink智能终端操作平台","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"捷顺 jielink智能终端操作平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["2f809c4759399cae458a29f24490a114"]},{"type":"word","words":["/resources/images/jielink_logo.png"],"case-insensitive":true}]}]},{"id":"stardot-express","info":{"name":"stardot-express","author":"cn-kali-team","tags":"detect,tech,stardot-express","severity":"info","metadata":{"product":"stardot-express","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<tr><td><a href=\"http://www.stardot.com\" target=\"_blank\"><img src=\"logo.gif\" alt=\"\" width=\"227\" height=\"45\"></a></td>"],"case-insensitive":true}]}]},{"id":"shen-xin-fu-xing-wei-gan-zhi-xi-tong","info":{"name":"深信服行为感知系统","author":"cn-kali-team","tags":"detect,tech,深信服行为感知系统","severity":"info","metadata":{"product":"深信服行为感知系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>loading...</title>","location.href = \"./ui/\";"],"condition":"and","case-insensitive":true}]}]},{"id":"nmap-log","info":{"name":"nmap-log","author":"cn-kali-team","tags":"detect,tech,nmap-log","severity":"info","metadata":{"product":"nmap-log","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["interesting ports on","starting nmap"],"condition":"and","case-insensitive":true}]}]},{"id":"formmail","info":{"name":"formmail","author":"cn-kali-team","tags":"detect,tech,formmail","severity":"info","metadata":{"product":"formmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/formmail.pl","aboutus/magicmail.gif","href=\"http://www.worldwidemart.com/scripts/formmail.shtml"],"case-insensitive":true}]}]},{"id":"zoom-search-engine","info":{"name":"zoom-search-engine","author":"cn-kali-team","tags":"detect,tech,zoom-search-engine","severity":"info","metadata":{"product":"zoom-search-engine","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"zoom_query\""],"case-insensitive":true}]}]},{"id":"thoughtconduit","info":{"name":"thoughtconduit","author":"cn-kali-team","tags":"detect,tech,thoughtconduit","severity":"info","metadata":{"product":"thoughtconduit","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<html><head><title>error</title></head><body>your request produced an error.</body></html>"],"case-insensitive":true}]}]},{"id":"adaptec-maxview","info":{"name":"adaptec-maxview","author":"cn-kali-team","tags":"detect,tech,adaptec-maxview","severity":"info","metadata":{"product":"adaptec-maxview","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/maxview/manager/login.xhtml"],"case-insensitive":true}]}]},{"id":"yabb","info":{"name":"yabb","author":"cn-kali-team","tags":"detect,tech,yabb","severity":"info","metadata":{"product":"yabb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/yabb.js","yabbtime.gettime()"],"case-insensitive":true}]}]},{"id":"huawei-anyoffice","info":{"name":"huawei-anyoffice","author":"cn-kali-team","tags":"detect,tech,huawei-anyoffice","severity":"info","metadata":{"product":"huawei-anyoffice","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<form id=\"jvform\" action=\"admin/business/login","cancelchangepwbtn","mdmserver","src=\"assets/conn-service/admin/"],"case-insensitive":true}]}]},{"id":"cerebro","info":{"name":"cerebro","author":"cn-kali-team","tags":"detect,tech,cerebro","severity":"info","metadata":{"product":"cerebro","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["lang=\"en\" ng-app=\"cerebro"],"case-insensitive":true}]}]},{"id":"dahua-wpms","info":{"name":"dahua-wpms","author":"cn-kali-team","tags":"detect,tech,dahua-wpms","severity":"info","metadata":{"product":"dahua-wpms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<li id=\"dss-help\">","<span>dss助手</span>"],"condition":"and","case-insensitive":true}]}]},{"id":"35mail","info":{"name":"35mail","author":"cn-kali-team","tags":"detect,tech,35mail","severity":"info","metadata":{"product":"35mail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["35","images/mail/35pushmail.app.png","switchingserverpopup"],"condition":"and","case-insensitive":true},{"type":"word","words":["class=\"user_define_img_btn6\" href=\"http://help.mail.35.com/mailman/81.html"],"case-insensitive":true}]}]},{"id":"adt-sjw74-vpn-wang-guan","info":{"name":"adt-sjw74-vpn网关","author":"cn-kali-team","tags":"detect,tech,adt-sjw74-vpn网关","severity":"info","metadata":{"product":"adt-sjw74-vpn网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sjw74","src=\"./system/usbkey.js\""],"condition":"and","case-insensitive":true}]}]},{"id":"qm-system","info":{"name":"qm-system","author":"cn-kali-team","tags":"detect,tech,qm-system","severity":"info","metadata":{"product":"qm-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["assets/css/fdb.css","src=\"polyfills.js"],"case-insensitive":true}]}]},{"id":"httpfs","info":{"name":"httpfs","author":"cn-kali-team","tags":"detect,tech,httpfs","severity":"info","metadata":{"product":"httpfs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<b>httpfs service</b"],"case-insensitive":true}]}]},{"id":"pear-project","info":{"name":"pear-project","author":"cn-kali-team","tags":"detect,tech,pear-project","severity":"info","metadata":{"product":"pear-project","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["4a912be52af99e4407d53651ccde64e6"]}]}]},{"id":"qi-ming-xing-chen-tai-he-xin-xi-an-quan-yun-ying-zhong-xin","info":{"name":"启明星辰-泰合信息安全运营中心","author":"cn-kali-team","tags":"detect,tech,启明星辰-泰合信息安全运营中心","severity":"info","metadata":{"product":"启明星辰-泰合信息安全运营中心","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["泰合信息安全运营中心"],"case-insensitive":true}]}]},{"id":"dian-qingmis-guan-li-xin-xi-xi-tong","info":{"name":"点晴mis管理信息系统","author":"cn-kali-team","tags":"detect,tech,点晴mis管理信息系统","severity":"info","metadata":{"product":"点晴mis管理信息系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["837f7af9a5509a71122fe77505e4451c"]}]}]},{"id":"ecology-fan-wei-yun-qiaoe-bridge","info":{"name":"ecology泛微云桥e-bridge","author":"cn-kali-team","tags":"detect,tech,ecology泛微云桥e-bridge","severity":"info","metadata":{"product":"ecology泛微云桥e-bridge","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta name=\"searchtitle\" content=\"泛微云桥e-bridge\"> ","content=\"泛微云桥e-bridge\"","e-bridge","wx.weaver"],"case-insensitive":true}]}]},{"id":"zhi-yuan-ufida-nc-xie-tong-oa-v5.71","info":{"name":"致远ufida nc协同-oa v5.71","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远ufida nc协同-oa v5.71","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["v3_20sp1_2011-12-31","/seeyon/common/js/v3x.js"],"condition":"and","case-insensitive":true}]}]},{"id":"ruijie-smart-web","info":{"name":"ruijie-smart-web","author":"cn-kali-team","tags":"detect,tech,ruijie-smart-web","severity":"info","metadata":{"product":"ruijie-smart-web","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["锐捷交换机"],"case-insensitive":true}]}]},{"id":"public-security-checkpoint-document-verification-system","info":{"name":"public-security-checkpoint-document-verification-system","author":"cn-kali-team","tags":"detect,tech,public-security-checkpoint-document-verification-system","severity":"info","metadata":{"product":"public-security-checkpoint-document-verification-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"公安检查站人脸/证件合一核录系统"],"case-insensitive":true}]}]},{"id":"spark","info":{"name":"spark","author":"cn-kali-team","tags":"detect,tech,spark","severity":"info","metadata":{"product":"spark","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["serversparkversion"],"case-insensitive":true}]}]},{"id":"realtime-web-acars","info":{"name":"realtime-web-acars","author":"cn-kali-team","tags":"detect,tech,realtime-web-acars","severity":"info","metadata":{"product":"realtime-web-acars","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"realtime web acars"],"case-insensitive":true}]}]},{"id":"network-tracker","info":{"name":"network-tracker","author":"cn-kali-team","tags":"detect,tech,network-tracker","severity":"info","metadata":{"product":"network-tracker","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[">network tracker<"],"case-insensitive":true}]}]},{"id":"pommo","info":{"name":"pommo","author":"cn-kali-team","tags":"detect,tech,pommo","severity":"info","metadata":{"product":"pommo","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pommo.confirmmsg = ","powered by <a href=\"http://www.pommo.org/"],"case-insensitive":true}]}]},{"id":"synology-dms","info":{"name":"synology-dms","author":"cn-kali-team","tags":"detect,tech,synology-dms","severity":"info","metadata":{"product":"synology-dms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"logo-dsm\"","class=\"logo-synology\""],"case-insensitive":true}]}]},{"id":"qi-ming-xing-chen-tian-yue-wang-luo-an-quan-shen-ji","info":{"name":"启明星辰-天玥网络安全审计","author":"cn-kali-team","tags":"detect,tech,启明星辰-天玥网络安全审计","severity":"info","metadata":{"product":"启明星辰-天玥网络安全审计","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["天玥网络安全审计"],"case-insensitive":true}]}]},{"id":"xenapp","info":{"name":"xenapp","author":"cn-kali-team","tags":"detect,tech,xenapp","severity":"info","metadata":{"product":"xenapp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location=\"/citrix/xenapp\""],"case-insensitive":true}]}]},{"id":"guahao-appointmentregistrationsystem","info":{"name":"guahao-appointmentregistrationsystem","author":"cn-kali-team","tags":"detect,tech,guahao-appointmentregistrationsystem","severity":"info","metadata":{"product":"guahao-appointmentregistrationsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var title = \"预约挂号系统\";"],"case-insensitive":true}]}]},{"id":"sql-buddy","info":{"name":"sql-buddy","author":"cn-kali-team","tags":"detect,tech,sql-buddy","severity":"info","metadata":{"product":"sql-buddy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["h3><a href=\"http://www.sqlbuddy.com/help","href=\"themes/bittersweet/css/main.css"],"case-insensitive":true}]}]},{"id":"bxemail","info":{"name":"bxemail","author":"cn-kali-team","tags":"detect,tech,bxemail","severity":"info","metadata":{"product":"bxemail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["请输入正确的电子邮件地址,如:[email protected]"],"case-insensitive":true}]}]},{"id":"mahara","info":{"name":"mahara","author":"cn-kali-team","tags":"detect,tech,mahara","severity":"info","metadata":{"product":"mahara","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"powered-by\"><a href=\"http://mahara.org/","this site is powered by mahara","{\"namedfieldempty\":"],"case-insensitive":true}]}]},{"id":"ws-server","info":{"name":"ws-server","author":"cn-kali-team","tags":"detect,tech,ws-server","severity":"info","metadata":{"product":"ws-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["websocket servers index.html"],"case-insensitive":true}]}]},{"id":"zi-guang-ji-tuan-zi-guang-fang-huo-qiang","info":{"name":"紫光集团-紫光防火墙","author":"cn-kali-team","tags":"detect,tech,紫光集团-紫光防火墙","severity":"info","metadata":{"product":"紫光集团-紫光防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"adminlogin\" action=\"/cgi-bin/manageaccount\">","紫光防火墙"],"condition":"and","case-insensitive":true}]}]},{"id":"aspnet-requestvalidationmode","info":{"name":"aspnet-requestvalidationmode","author":"cn-kali-team","tags":"detect,tech,aspnet-requestvalidationmode","severity":"info","metadata":{"product":"aspnet-requestvalidationmode","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["httprequestvalidationexception","request validation has detected a potentially dangerous client input value"],"case-insensitive":true}]}]},{"id":"aspnet-mvc","info":{"name":"aspnet-mvc","author":"cn-kali-team","tags":"detect,tech,aspnet-mvc","severity":"info","metadata":{"product":"aspnet-mvc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h2>modify this template to jump-start your asp.net mvc application.</h2>","asp.net mvc application</p>"],"case-insensitive":true}]}]},{"id":"oracle-adf-faces","info":{"name":"oracle-adf-faces","author":"cn-kali-team","tags":"detect,tech,oracle-adf-faces","severity":"info","metadata":{"product":"oracle-adf-faces","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- created by oracle adf faces","content=\"oracle adf","var _adfwindowopenerror"],"case-insensitive":true}]}]},{"id":"keil-embedded-web-server","info":{"name":"keil-embedded-web-server","author":"cn-kali-team","tags":"detect,tech,keil-embedded-web-server","severity":"info","metadata":{"product":"keil-embedded-web-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: keil-eweb"],"part":"header","case-insensitive":true}]}]},{"id":"topbpm-user-authorization-center","info":{"name":"topbpm-user-authorization-center","author":"cn-kali-team","tags":"detect,tech,topbpm-user-authorization-center","severity":"info","metadata":{"product":"topbpm-user-authorization-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/images/sinopeclogo.png\""],"case-insensitive":true}]}]},{"id":"mylittleforum","info":{"name":"mylittleforum","author":"cn-kali-team","tags":"detect,tech,mylittleforum","severity":"info","metadata":{"product":"mylittleforum","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["index.php?mode=js_defaults","powered by my little forum"],"case-insensitive":true}]}]},{"id":"haoshitong-cloud-conference","info":{"name":"haoshitong-cloud-conference","author":"cn-kali-team","tags":"detect,tech,haoshitong-cloud-conference","severity":"info","metadata":{"product":"haoshitong-cloud-conference","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"fsmeeting","images/common/logina_1.gif","type=\"hidden\" id=\"app.index.configsuclogin"],"case-insensitive":true}]}]},{"id":"diancms","info":{"name":"diancms","author":"cn-kali-team","tags":"detect,tech,diancms","severity":"info","metadata":{"product":"diancms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["diancms_sitename","diancms_用户登陆引用"],"case-insensitive":true}]}]},{"id":"lime-survey","info":{"name":"lime-survey","author":"cn-kali-team","tags":"detect,tech,lime-survey","severity":"info","metadata":{"product":"lime-survey","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"limesurvey","href=\"http://www.limesurvey.org\" target=\"_blank"],"condition":"and","case-insensitive":true}]}]},{"id":"snb-stock-trading-software","info":{"name":"snb-stock-trading-software","author":"cn-kali-team","tags":"detect,tech,snb-stock-trading-software","severity":"info","metadata":{"product":"snb-stock-trading-software","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["copyright 2005–2009 <a href=\"http://www.s-mo.com\">"],"case-insensitive":true}]}]},{"id":"pygopherd","info":{"name":"pygopherd","author":"cn-kali-team","tags":"detect,tech,pygopherd","severity":"info","metadata":{"product":"pygopherd","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["generated by <a href=\"http://www.quux.org/devel/gopher/pygopherd"],"case-insensitive":true}]}]},{"id":"riicy-rui-bo-shi-yun-ban-gong-xi-tong","info":{"name":"riicy-睿博士云办公系统","author":"cn-kali-team","tags":"detect,tech,riicy-睿博士云办公系统","severity":"info","metadata":{"product":"riicy-睿博士云办公系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/studentsign/tologin.di","/user/toupdatepasswordpage.di"],"condition":"and","case-insensitive":true}]}]},{"id":"promise-webpam","info":{"name":"promise-webpam","author":"cn-kali-team","tags":"detect,tech,promise-webpam","severity":"info","metadata":{"product":"promise-webpam","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["js/promise/themes/apple/images/logo_promise.png","src=\"js/dojo/promise.js"],"case-insensitive":true}]}]},{"id":"jymusic","info":{"name":"jymusic","author":"cn-kali-team","tags":"detect,tech,jymusic","severity":"info","metadata":{"product":"jymusic","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"jymusic音乐管理系统","public/static/libs/jymusic/css"],"case-insensitive":true}]}]},{"id":"qingyuan-hsse","info":{"name":"qingyuan-hsse","author":"cn-kali-team","tags":"detect,tech,qingyuan-hsse","severity":"info","metadata":{"product":"qingyuan-hsse","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hsse 系统"],"case-insensitive":true}]}]},{"id":"netwin-dbabble","info":{"name":"netwin-dbabble","author":"cn-kali-team","tags":"detect,tech,netwin-dbabble","severity":"info","metadata":{"product":"netwin-dbabble","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cgi/dbabble.cgi",">dbabble online help</a>","action=\"/dbabble"],"case-insensitive":true}]}]},{"id":"apache-apisix-dashboard","info":{"name":"apache-apisix-dashboard","author":"cn-kali-team","tags":"detect,tech,apache-apisix-dashboard","severity":"info","metadata":{"product":"apache-apisix-dashboard","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["6d07440dcda38480ac6fd8c32edf0102"]},{"type":"word","words":["<title>apache apisix dashboard</title>"],"case-insensitive":true}]}]},{"id":"maritimeselectionsystem","info":{"name":"maritimeselectionsystem","author":"cn-kali-team","tags":"detect,tech,maritimeselectionsystem","severity":"info","metadata":{"product":"maritimeselectionsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["海事选船系统</el-col>"],"case-insensitive":true}]}]},{"id":"avaya-application-enablement-services","info":{"name":"avaya-application-enablement-services","author":"cn-kali-team","tags":"detect,tech,avaya-application-enablement-services","severity":"info","metadata":{"product":"avaya-application-enablement-services","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<b>application enablement services </b>","avaya"],"case-insensitive":true}]}]},{"id":"diao-bao-bao-lei-ji-chan-pin","info":{"name":"碉堡堡垒机-产品","author":"cn-kali-team","tags":"detect,tech,碉堡堡垒机-产品","severity":"info","metadata":{"product":"碉堡堡垒机-产品","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["碉堡堡垒机"],"case-insensitive":true}]}]},{"id":"dell-networker-management-console","info":{"name":"dell-networker-management-console","author":"cn-kali-team","tags":"detect,tech,dell-networker-management-console","severity":"info","metadata":{"product":"dell-networker-management-console","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["emc corporation"],"case-insensitive":true}]}]},{"id":"you-shi-kang-wang-guan","info":{"name":"优仕康-网关","author":"cn-kali-team","tags":"detect,tech,优仕康-网关","severity":"info","metadata":{"product":"优仕康-网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"ipxweb/login.html"],"case-insensitive":true}]}]},{"id":"array-vpn","info":{"name":"array-vpn","author":"cn-kali-team","tags":"detect,tech,array-vpn","severity":"info","metadata":{"product":"array-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["an_util.js"],"case-insensitive":true}]}]},{"id":"bitnami-redmine-stack","info":{"name":"bitnami-redmine-stack","author":"cn-kali-team","tags":"detect,tech,bitnami-redmine-stack","severity":"info","metadata":{"product":"bitnami-redmine-stack","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"bitnami redmine stack"],"case-insensitive":true}]}]},{"id":"yirui-iras","info":{"name":"yirui-iras","author":"cn-kali-team","tags":"detect,tech,yirui-iras","severity":"info","metadata":{"product":"yirui-iras","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/authjsp/login.jsp","fe0174bb-f093-42af-ab20-7ec621d10488"],"case-insensitive":true}]}]},{"id":"huawei-auth-server","info":{"name":"huawei-auth-server","author":"cn-kali-team","tags":"detect,tech,huawei-auth-server","severity":"info","metadata":{"product":"huawei-auth-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["75718c9a-f029-11d1-a1ac-00c04fb6c223"],"case-insensitive":true}]}]},{"id":"lanyeye","info":{"name":"lanyeye","author":"cn-kali-team","tags":"detect,tech,lanyeye","severity":"info","metadata":{"product":"lanyeye","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/skin/admin/img/login/laneye.png","<font>兰眼下一代威胁感知系统</font>"],"case-insensitive":true}]}]},{"id":"shwatermeter-system","info":{"name":"shwatermeter-system","author":"cn-kali-team","tags":"detect,tech,shwatermeter-system","severity":"info","metadata":{"product":"shwatermeter-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["关于正则表达式的内容在本书的第10章中有较详细的讨论"],"case-insensitive":true}]}]},{"id":"kloxo-single-server","info":{"name":"kloxo-single-server","author":"cn-kali-team","tags":"detect,tech,kloxo-single-server","severity":"info","metadata":{"product":"kloxo-single-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/htmllib/js/preop.js","src=\"/img/hypervm-logo.gif"],"case-insensitive":true}]}]},{"id":"totvs-smartclient","info":{"name":"totvs-smartclient","author":"cn-kali-team","tags":"detect,tech,totvs-smartclient","severity":"info","metadata":{"product":"totvs-smartclient","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<param name=\"environment\" value="],"case-insensitive":true}]}]},{"id":"oracle-application-server","info":{"name":"oracle-application-server","author":"cn-kali-team","tags":"detect,tech,oracle-application-server","severity":"info","metadata":{"product":"oracle-application-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mod_ose documentation","mod_ssl web site","oracle http server</font></font></b></h1>","oracle jsp documentation"],"case-insensitive":true}]}]},{"id":"hws-host","info":{"name":"hws-host","author":"cn-kali-team","tags":"detect,tech,hws-host","severity":"info","metadata":{"product":"hws-host","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"护卫神·主机大师 前台管理登录\""],"case-insensitive":true}]}]},{"id":"netflow-analyzer-zoho-traffic-management","info":{"name":"netflow-analyzer-zoho-traffic-management","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"netflow-analyzer-zoho-traffic-management","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["netflow analyzer","zoho","href=\"/netflow/css/netflow.css"],"case-insensitive":true}]}]},{"id":"oracle-xdb","info":{"name":"oracle-xdb","author":"cn-kali-team","tags":"detect,tech,oracle-xdb","severity":"info","metadata":{"product":"oracle-xdb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: oracle xml db"],"part":"header","case-insensitive":true}]}]},{"id":"veritas-netbackup","info":{"name":"veritas-netbackup","author":"cn-kali-team","tags":"detect,tech,veritas-netbackup","severity":"info","metadata":{"product":"veritas-netbackup","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/opscenter/features/common/images/favicon.ico\""],"case-insensitive":true}]}]},{"id":"cinvoice","info":{"name":"cinvoice","author":"cn-kali-team","tags":"detect,tech,cinvoice","severity":"info","metadata":{"product":"cinvoice","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.forperfect.com/"],"case-insensitive":true}]}]},{"id":"zong-he-an-fang-guan-li-ping-tai-hikvision-isecure-center","info":{"name":"综合安防管理平台 hikvision-isecure-center","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"综合安防管理平台 hikvision-isecure-center","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/portal/conf/icon/logo.png","nginxservice/v1/download/installrootcert.exe"],"condition":"and","case-insensitive":true},{"type":"word","words":["/portal/ui/static/favicon.ico","/portal/ui/static/js/chunk-"],"condition":"and","case-insensitive":true},{"type":"word","words":["/isecure/ui/static/favicon.ico","/isecure/ui/static/js/chunk-"],"condition":"and","case-insensitive":true},{"type":"word","words":["/isecure/ui/favicon.ico","/isecure/ui/static/js/"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["4209fe52e5c15345d0a1250f68a14d1e","288e14bff231111157309a4cdf3d545e"]},{"type":"word","words":["综合安防管理平台","0x26e11001","/portal/lida-icon/lidaicon.css"],"case-insensitive":true}]}]},{"id":"youhuaopt-system","info":{"name":"youhuaopt-system","author":"cn-kali-team","tags":"detect,tech,youhuaopt-system","severity":"info","metadata":{"product":"youhuaopt-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/ashx/log/logincheck.ashx?fresh=\" + math.random()"],"case-insensitive":true}]}]},{"id":"minergate-claymore-miner","info":{"name":"minergate-claymore-miner","author":"cn-kali-team","tags":"detect,tech,minergate-claymore-miner","severity":"info","metadata":{"product":"minergate-claymore-miner","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["eth: gpu0","eth — total speed:"],"case-insensitive":true}]}]},{"id":"hanmasoft","info":{"name":"hanmasoft","author":"cn-kali-team","tags":"detect,tech,hanmasoft","severity":"info","metadata":{"product":"hanmasoft","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"汉码软件logo","content=\"汉码软件"],"case-insensitive":true}]}]},{"id":"ntop","info":{"name":"ntop","author":"cn-kali-team","tags":"detect,tech,ntop","severity":"info","metadata":{"product":"ntop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/css/ntopng.css","global traffic statistics","ntopmenuid"],"case-insensitive":true}]}]},{"id":"brewblogger","info":{"name":"brewblogger","author":"cn-kali-team","tags":"detect,tech,brewblogger","severity":"info","metadata":{"product":"brewblogger","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["developed by <a href=\"http://www.zkdigital.com"],"case-insensitive":true}]}]},{"id":"netshare-vpn","info":{"name":"netshare-vpn","author":"cn-kali-team","tags":"detect,tech,netshare-vpn","severity":"info","metadata":{"product":"netshare-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["netshare","vpn"],"condition":"and","case-insensitive":true}]}]},{"id":"sangfor-virtualization-management","info":{"name":"sangfor-virtualization-management","author":"cn-kali-team","tags":"detect,tech,sangfor-virtualization-management","severity":"info","metadata":{"product":"sangfor-virtualization-management","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"webkit|ie-stand\"","id=\"privacytipwin\""],"condition":"and","case-insensitive":true}]}]},{"id":"photostore","info":{"name":"photostore","author":"cn-kali-team","tags":"detect,tech,photostore","severity":"info","metadata":{"product":"photostore","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.ktools.net/photostore/index.php"],"case-insensitive":true}]}]},{"id":"easysite","info":{"name":"easysite","author":"cn-kali-team","tags":"detect,tech,easysite","severity":"info","metadata":{"product":"easysite","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["_desktopmodules_picturenews","copyright 2009 by huilan","generator\" content=\"easysite"],"case-insensitive":true}]}]},{"id":"dell-unisphere","info":{"name":"dell-unisphere","author":"cn-kali-team","tags":"detect,tech,dell-unisphere","severity":"info","metadata":{"product":"dell-unisphere","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["unisphere for sc series","用于 sc 系列的 unisphere"],"case-insensitive":true}]}]},{"id":"vcalendar","info":{"name":"vcalendar","author":"cn-kali-team","tags":"detect,tech,vcalendar","severity":"info","metadata":{"product":"vcalendar","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<link href=\"styles/basic/style.css\"","powered by <a href=\"http://www.vcalendar.org\">vcalendar</a>"],"case-insensitive":true}]}]},{"id":"netdoit","info":{"name":"netdoit","author":"cn-kali-team","tags":"detect,tech,netdoit","severity":"info","metadata":{"product":"netdoit","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["align=\"center\"><a href=\"http://www.net-doit.com\" target=\"_blank","power by netdoit"],"case-insensitive":true}]}]},{"id":"rui-zhi-kang-cheng-vpn","info":{"name":"瑞智康诚-vpn","author":"cn-kali-team","tags":"detect,tech,瑞智康诚-vpn","severity":"info","metadata":{"product":"瑞智康诚-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"col-md-12 col-xs-12 col-lg-12 external_signin_links\"","class=\"no-js\">请先启用javascript"],"condition":"and","case-insensitive":true}]}]},{"id":"supermap-iserver","info":{"name":"supermap-iserver","author":"cn-kali-team","tags":"detect,tech,supermap-iserver","severity":"info","metadata":{"product":"supermap-iserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"copyright\"><a href=\"http://www.supermap.com.cn","window.location.href=\"iserver\";"],"case-insensitive":true}]}]},{"id":"sco-openserver","info":{"name":"sco-openserver","author":"cn-kali-team","tags":"detect,tech,sco-openserver","severity":"info","metadata":{"product":"sco-openserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["gif/rlogo1.gif","sco corporate web site"],"case-insensitive":true}]}]},{"id":"teradici-pcoip-zero-client","info":{"name":"teradici-pcoip-zero-client","author":"cn-kali-team","tags":"detect,tech,teradici-pcoip-zero-client","severity":"info","metadata":{"product":"teradici-pcoip-zero-client","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["password_value","pcoip® zero client"],"case-insensitive":true}]}]},{"id":"unimas-cameraaudit","info":{"name":"unimas-cameraaudit","author":"cn-kali-team","tags":"detect,tech,unimas-cameraaudit","severity":"info","metadata":{"product":"unimas-cameraaudit","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["txtpasswordcssclass"],"case-insensitive":true}]}]},{"id":"ruijie-router-nbr","info":{"name":"ruijie-router-nbr","author":"cn-kali-team","tags":"detect,tech,ruijie-router-nbr","severity":"info","metadata":{"product":"ruijie-router-nbr","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["web_monitor_config.htm","锐捷网络"],"condition":"and","case-insensitive":true},{"type":"word","words":["nbr路由器","support.ruijie.com.cn"],"condition":"and","case-insensitive":true}]}]},{"id":"ejinshan-zhong-duan","info":{"name":"ejinshan终端","author":"cn-kali-team","tags":"detect,tech,ejinshan终端","severity":"info","metadata":{"product":"ejinshan终端","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["net.ejinshan.avclient.apk","金山终端安全系统"],"condition":"and","case-insensitive":true}]}]},{"id":"boxiao-system","info":{"name":"boxiao-system","author":"cn-kali-team","tags":"detect,tech,boxiao-system","severity":"info","metadata":{"product":"boxiao-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var bxnstaticresroot='/bxn-static-resource/resources'"],"case-insensitive":true}]}]},{"id":"shi-kong-zhi-you-qi-ye-xin-xi-guan-li","info":{"name":"时空智友企业信息管理","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"时空智友企业信息管理","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["您的账号已在另一台设备登录,继续登录将挤掉原登录设备,是否继续登录","时空智友"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["2464cbce5dd2681dd4fb62d055520d78"]}]}]},{"id":"redflag-linux-cluster-management-system","info":{"name":"redflag-linux-cluster-management-system","author":"cn-kali-team","tags":"detect,tech,redflag-linux-cluster-management-system","severity":"info","metadata":{"product":"redflag-linux-cluster-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<b>登录到红旗集群管理系统</b></td>"],"case-insensitive":true}]}]},{"id":"ceph","info":{"name":"ceph","author":"cn-kali-team","tags":"detect,tech,ceph","severity":"info","metadata":{"product":"ceph","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"ceph-none-found\" rv-hide=\"rbd_pools"],"case-insensitive":true}]}]},{"id":"surdoc","info":{"name":"surdoc","author":"cn-kali-team","tags":"detect,tech,surdoc","severity":"info","metadata":{"product":"surdoc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1>欢迎使用360书生云盘!</h1>","<p>copyright@2016 pan.surdoc.net all rights</p>"],"case-insensitive":true}]}]},{"id":"you-you-mailgard-webmail","info":{"name":"佑友-mailgard-webmail","author":"cn-kali-team","tags":"detect,tech,佑友-mailgard-webmail","severity":"info","metadata":{"product":"佑友-mailgard-webmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mailgard webmail","window.open('http://www.hechen.com')"],"condition":"and","case-insensitive":true}]}]},{"id":"s-cms","info":{"name":"s-cms","author":"cn-kali-team","tags":"detect,tech,s-cms","severity":"info","metadata":{"product":"s-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<p class=\"alignright\">powered by s:cms - copyright ©","class=\"scms_container w1200\""],"condition":"and","case-insensitive":true},{"type":"word","words":["/media/20151019095214828.png","<h2>闪灵cms建站系统</h2>","type=news&s_id=","type=newsinfo&s_id="],"case-insensitive":true}]}]},{"id":"opennewsletter","info":{"name":"opennewsletter","author":"cn-kali-team","tags":"detect,tech,opennewsletter","severity":"info","metadata":{"product":"opennewsletter","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://netmeans.net\">netmeans.net","this software is based on the opennewsletter project"],"case-insensitive":true}]}]},{"id":"ban-gong-ping-tai","info":{"name":"办公平台","author":"cn-kali-team","tags":"detect,tech,办公平台","severity":"info","metadata":{"product":"办公平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" href=\"xbsj/css/login.css\""],"case-insensitive":true}]}]},{"id":"radware-appwall","info":{"name":"radware-appwall","author":"cn-kali-team","tags":"detect,tech,radware-appwall","severity":"info","metadata":{"product":"radware-appwall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["unauthorized activity has been detected."],"case-insensitive":true}]}]},{"id":"novell-sentinel-log-manager","info":{"name":"novell-sentinel-log-manager","author":"cn-kali-team","tags":"detect,tech,novell-sentinel-log-manager","severity":"info","metadata":{"product":"novell-sentinel-log-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"0;url=/novelllogmanager\">","title=\"novell sentinel log manager"],"case-insensitive":true}]}]},{"id":"solidyne-inet-server","info":{"name":"solidyne-inet-server","author":"cn-kali-team","tags":"detect,tech,solidyne-inet-server","severity":"info","metadata":{"product":"solidyne-inet-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<frame name=\"frleft\" scrolling=\"no\" id=\"frleft\" src=\"qfrleft.aspx\">","<meta http-equiv=\"refresh\" content=\"0; url=/hmi/\">"],"case-insensitive":true}]}]},{"id":"neusoft-senginx","info":{"name":"neusoft-senginx","author":"cn-kali-team","tags":"detect,tech,neusoft-senginx","severity":"info","metadata":{"product":"neusoft-senginx","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["senginx-robot-mitigation"],"case-insensitive":true}]}]},{"id":"phpdisk","info":{"name":"phpdisk","author":"cn-kali-team","tags":"detect,tech,phpdisk","severity":"info","metadata":{"product":"phpdisk","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"phpdisk","powered by phpdisk"],"case-insensitive":true}]}]},{"id":"atutor-elearning","info":{"name":"atutor-elearning","author":"cn-kali-team","tags":"detect,tech,atutor-elearning","severity":"info","metadata":{"product":"atutor-elearning","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"atutor"],"case-insensitive":true},{"type":"word","words":["set-cookie: atutorid"],"part":"header","case-insensitive":true}]}]},{"id":"nextcloud-product","info":{"name":"nextcloud-product","author":"cn-kali-team","tags":"detect,tech,nextcloud-product","severity":"info","metadata":{"product":"nextcloud-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["nextcloud</a> – 给您所有数据一个安全的家"],"case-insensitive":true}]}]},{"id":"dfe-scada","info":{"name":"dfe-scada","author":"cn-kali-team","tags":"detect,tech,dfe-scada","severity":"info","metadata":{"product":"dfe-scada","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["536870912"],"case-insensitive":true}]}]},{"id":"emc-dd-system-manager","info":{"name":"emc-dd-system-manager","author":"cn-kali-team","tags":"detect,tech,emc-dd-system-manager","severity":"info","metadata":{"product":"emc-dd-system-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dd system manager","emc-favicon.ico"],"case-insensitive":true}]}]},{"id":"pcitc-logistics-management-mystem","info":{"name":"pcitc-logistics-management-mystem","author":"cn-kali-team","tags":"detect,tech,pcitc-logistics-management-mystem","severity":"info","metadata":{"product":"pcitc-logistics-management-mystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" href=\"/newimages/login/logo_icon.ico"],"case-insensitive":true}]}]},{"id":"dsview","info":{"name":"dsview","author":"cn-kali-team","tags":"detect,tech,dsview","severity":"info","metadata":{"product":"dsview","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/dsview/images/favicon.ico","/dsview/protected/login.do","href=\"/dsview/themes/","src=\"/dsview/images/avocent-logo.png"],"case-insensitive":true},{"type":"word","words":["server: avocent dsview"],"part":"header","case-insensitive":true}]}]},{"id":"hp-3com-officeconnect-vpn-firewall","info":{"name":"hp-3com-officeconnect-vpn-firewall","author":"cn-kali-team","tags":"detect,tech,hp-3com-officeconnect-vpn-firewall","severity":"info","metadata":{"product":"hp-3com-officeconnect-vpn-firewall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["3com - officeconnect vpn firewall"],"case-insensitive":true}]}]},{"id":"zhuofansoft-cms","info":{"name":"zhuofansoft-cms","author":"cn-kali-team","tags":"detect,tech,zhuofansoft-cms","severity":"info","metadata":{"product":"zhuofansoft-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["session.infocss.infocssurl"],"case-insensitive":true}]}]},{"id":"fortinet-fortiguard","info":{"name":"fortinet-fortiguard","author":"cn-kali-team","tags":"detect,tech,fortinet-fortiguard","severity":"info","metadata":{"product":"fortinet-fortiguard","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/xx/yy/zz/ci/mgpghgpgpfghcdpfggogfgeh","fortiguard web filtering"],"case-insensitive":true}]}]},{"id":"ewebeditor","info":{"name":"ewebeditor","author":"cn-kali-team","tags":"detect,tech,ewebeditor","severity":"info","metadata":{"product":"ewebeditor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/ewebeditor.htm?"],"case-insensitive":true}]}]},{"id":"hui-er-dun-xia-yi-dai-fang-huo-qiang","info":{"name":"惠尔顿-下一代防火墙","author":"cn-kali-team","tags":"detect,tech,惠尔顿-下一代防火墙","severity":"info","metadata":{"product":"惠尔顿-下一代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/base/img/login_logo_ngaf.jpg","惠尔顿下一代防火墙"],"condition":"and","case-insensitive":true}]}]},{"id":"tinyrise-tinyshop","info":{"name":"tinyrise-tinyshop","author":"cn-kali-team","tags":"detect,tech,tinyrise-tinyshop","severity":"info","metadata":{"product":"tinyrise-tinyshop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tiny_token_","var server_url = '/__con__/__act__';"],"case-insensitive":true}]}]},{"id":"munin","info":{"name":"munin","author":"cn-kali-team","tags":"detect,tech,munin","severity":"info","metadata":{"product":"munin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["auto-generated by munin","munin-month.html"],"case-insensitive":true}]}]},{"id":"invision-ipboard","info":{"name":"invision-ipboard","author":"cn-kali-team","tags":"detect,tech,invision-ipboard","severity":"info","metadata":{"product":"invision-ipboard","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ipb.vars"],"case-insensitive":true}]}]},{"id":"phpfox","info":{"name":"phpfox","author":"cn-kali-team","tags":"detect,tech,phpfox","severity":"info","metadata":{"product":"phpfox","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.phpfox.com","powered by phpfox"],"case-insensitive":true}]}]},{"id":"zcms","info":{"name":"zcms","author":"cn-kali-team","tags":"detect,tech,zcms","severity":"info","metadata":{"product":"zcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["_zcms_shownewmessage","zcms_skin"],"condition":"and","case-insensitive":true},{"type":"word","words":["_zcms_shownewmessage","zcms_skin"],"condition":"and","case-insensitive":true},{"type":"word","words":["app=zcms"],"case-insensitive":true}]}]},{"id":"kkfileview","info":{"name":"kkfileview","author":"cn-kali-team","tags":"detect,tech,kkfileview","severity":"info","metadata":{"product":"kkfileview","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["repo: 'kkfileview'"],"case-insensitive":true}]}]},{"id":"hikvision-ivms-8700","info":{"name":"hikvision-ivms-8700","author":"cn-kali-team","tags":"detect,tech,hikvision-ivms-8700","severity":"info","metadata":{"product":"hikvision-ivms-8700","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/portal/common/js/commonvar.js"],"case-insensitive":true}]}]},{"id":"qi-yue-suo-dian-zi-qian-zhang-xi-tong","info":{"name":"契约锁电子签章系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"契约锁电子签章系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["qyswebapp","<title>电子签署平台</title>"],"condition":"and","case-insensitive":true},{"type":"word","words":["p3p: cp=cao psa our"],"part":"header","case-insensitive":true},{"type":"favicon","hash":["ad17b1fc5025ca47f743f7e69c956b26"]}]}]},{"id":"mcms","info":{"name":"mcms","author":"cn-kali-team","tags":"detect,tech,mcms","severity":"info","metadata":{"product":"mcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/mcms/search.do\" method="],"case-insensitive":true}]}]},{"id":"qi-an-xin-tian-qing","info":{"name":"奇安信-天擎","author":"cn-kali-team","tags":"detect,tech,奇安信-天擎","severity":"info","metadata":{"product":"奇安信-天擎","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["360新天擎","appid\":\"skylar6"],"condition":"and","case-insensitive":true}]}]},{"id":"newton","info":{"name":"newton","author":"cn-kali-team","tags":"detect,tech,newton","severity":"info","metadata":{"product":"newton","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"group_sn\""],"case-insensitive":true}]}]},{"id":"uin-meeting","info":{"name":"uin-meeting","author":"cn-kali-team","tags":"detect,tech,uin-meeting","severity":"info","metadata":{"product":"uin-meeting","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["uin.plist"],"case-insensitive":true}]}]},{"id":"maccms","info":{"name":"maccms","author":"cn-kali-team","tags":"detect,tech,maccms","severity":"info","metadata":{"product":"maccms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<script>var maccms={\"path"],"case-insensitive":true}]}]},{"id":"lasso-web-data-engine","info":{"name":"lasso-web-data-engine","author":"cn-kali-team","tags":"detect,tech,lasso-web-data-engine","severity":"info","metadata":{"product":"lasso-web-data-engine","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: lasso"],"part":"header","case-insensitive":true}]}]},{"id":"asproxy","info":{"name":"asproxy","author":"cn-kali-team","tags":"detect,tech,asproxy","severity":"info","metadata":{"product":"asproxy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["btnasproxydisplaybutton","surf the web invisibly using asproxy power"],"case-insensitive":true}]}]},{"id":"opennemas","info":{"name":"opennemas","author":"cn-kali-team","tags":"detect,tech,opennemas","severity":"info","metadata":{"product":"opennemas","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"opennemas "],"case-insensitive":true}]}]},{"id":"urp-integrated-educational-system","info":{"name":"urp-integrated-educational-system","author":"cn-kali-team","tags":"detect,tech,urp-integrated-educational-system","severity":"info","metadata":{"product":"urp-integrated-educational-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["北京清元优软科技有限公司","教务系统"],"condition":"and","case-insensitive":true},{"type":"word","words":["<input name=\"j_captcha_response\" type=\"hidden"],"case-insensitive":true}]}]},{"id":"ymail-optical-content-reading","info":{"name":"ymail-optical-content-reading","author":"cn-kali-team","tags":"detect,tech,ymail-optical-content-reading","severity":"info","metadata":{"product":"ymail-optical-content-reading","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/ymail/default/js/menu.js"],"case-insensitive":true}]}]},{"id":"sony-liv","info":{"name":"sony-liv","author":"cn-kali-team","tags":"detect,tech,sony-liv","severity":"info","metadata":{"product":"sony-liv","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta name=\"author\" content=\"sony pictures networks india pvt. ltd\">","<meta name=\"twitter:image\" content=\"http://sonyliv.com/asset/socialsharelogo\"/>","content=\"sony liv"],"case-insensitive":true}]}]},{"id":"reddoxx","info":{"name":"reddoxx","author":"cn-kali-team","tags":"detect,tech,reddoxx","severity":"info","metadata":{"product":"reddoxx","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["148779de-1cf1-49bb-8bdb-129321cf8974"],"case-insensitive":true}]}]},{"id":"thinkjs","info":{"name":"thinkjs","author":"cn-kali-team","tags":"detect,tech,thinkjs","severity":"info","metadata":{"product":"thinkjs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-powered-by: thinkjs"],"part":"header","case-insensitive":true}]}]},{"id":"h3c-ssl-vpn","info":{"name":"h3c-ssl-vpn","author":"cn-kali-team","tags":"detect,tech,h3c-ssl-vpn","severity":"info","metadata":{"product":"h3c-ssl-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["keep me signed in</span>","welcome to ssl vpn</h1>"],"condition":"and","case-insensitive":true}]}]},{"id":"ip-guard","info":{"name":"ip-guard","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"ip-guard","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["eca5de8afe00f5b9990cfdf11f4d1de4","210a3c89d4ab5effa18d6dd7a9627376"]},{"type":"word","words":["<title>ip-guard</title>"],"case-insensitive":true}]}]},{"id":"freejoomlas","info":{"name":"freejoomlas","author":"cn-kali-team","tags":"detect,tech,freejoomlas","severity":"info","metadata":{"product":"freejoomlas","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a title=\"free joomla hosting\" href=\"http://freejoomlas.com"],"case-insensitive":true}]}]},{"id":"javashop","info":{"name":"javashop","author":"cn-kali-team","tags":"detect,tech,javashop","severity":"info","metadata":{"product":"javashop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["易族智汇javashop"],"case-insensitive":true}]}]},{"id":"lie-ying-an-quan-jin-shan-du-ba-qi-ye-ban","info":{"name":"猎鹰安全-金山毒霸企业版","author":"cn-kali-team","tags":"detect,tech,猎鹰安全-金山毒霸企业版","severity":"info","metadata":{"product":"猎鹰安全-金山毒霸企业版","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"title\">关于全网部署金山毒霸企业版","金山毒霸企业版"],"condition":"and","case-insensitive":true}]}]},{"id":"inspur-incloud-sphere","info":{"name":"inspur-incloud-sphere","author":"cn-kali-team","tags":"detect,tech,inspur-incloud-sphere","severity":"info","metadata":{"product":"inspur-incloud-sphere","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"easyui-layout"],"case-insensitive":true}]}]},{"id":"examstar","info":{"name":"examstar","author":"cn-kali-team","tags":"detect,tech,examstar","severity":"info","metadata":{"product":"examstar","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/examstar_icon.ico","<div class=\"content-bottom-text\">考试星为您提供方便、高效的考试服务</div>"],"case-insensitive":true}]}]},{"id":"mgb-opensource-guestbook","info":{"name":"mgb-opensource-guestbook","author":"cn-kali-team","tags":"detect,tech,mgb-opensource-guestbook","severity":"info","metadata":{"product":"mgb-opensource-guestbook","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"mgb opensource guestbook","title=\"mgb homepage"],"case-insensitive":true}]}]},{"id":"web-data-administrator","info":{"name":"web-data-administrator","author":"cn-kali-team","tags":"detect,tech,web-data-administrator","severity":"info","metadata":{"product":"web-data-administrator","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<form name=\"webform1\" method=\"post\" action=\"default.aspx\" onsubmit=\"javascript:return webform_onsubmit();\" id=\"webform1"],"case-insensitive":true}]}]},{"id":"manageengine-adaudit","info":{"name":"manageengine-adaudit","author":"cn-kali-team","tags":"detect,tech,manageengine-adaudit","severity":"info","metadata":{"product":"manageengine-adaudit","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["title=\"manageengine admanager plus"],"case-insensitive":true}]}]},{"id":"netscout-ngeniusone","info":{"name":"netscout-ngeniusone","author":"cn-kali-team","tags":"detect,tech,netscout-ngeniusone","severity":"info","metadata":{"product":"netscout-ngeniusone","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var newpath = \"/common/ngeniusdirect.jsp"],"case-insensitive":true}]}]},{"id":"vrv-desktop-application-system","info":{"name":"vrv-desktop-application-system","author":"cn-kali-team","tags":"detect,tech,vrv-desktop-application-system","severity":"info","metadata":{"product":"vrv-desktop-application-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span id=\"lblvalidcompany\" class=\"validcompany\">vrv","var vver = $('#hidverify').val();"],"case-insensitive":true}]}]},{"id":"doccms","info":{"name":"doccms","author":"cn-kali-team","tags":"detect,tech,doccms","severity":"info","metadata":{"product":"doccms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["power by doccms x1.0&grysoft"],"case-insensitive":true}]}]},{"id":"ya-dong-ke-ji-shen-dunfs3-wen-dang-an-quan-gong-xiang","info":{"name":"亚东科技-神盾fs3文档安全共享","author":"cn-kali-team","tags":"detect,tech,亚东科技-神盾fs3文档安全共享","severity":"info","metadata":{"product":"亚东科技-神盾fs3文档安全共享","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["神盾fs3文档安全共享系统v2.0","神盾fs<sup>3</sup>文档安全共享系统v2.0</div>"],"condition":"and","case-insensitive":true}]}]},{"id":"lpse","info":{"name":"lpse","author":"cn-kali-team","tags":"detect,tech,lpse","severity":"info","metadata":{"product":"lpse","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/eproc/assets/application.css"],"case-insensitive":true}]}]},{"id":"xin-xi-an-quan-guan-li-xi-tong","info":{"name":"信息安全管理系统","author":"cn-kali-team","tags":"detect,tech,信息安全管理系统","severity":"info","metadata":{"product":"信息安全管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"lblmsg_container\"","src=\"js/piwik.js\""],"condition":"and","case-insensitive":true}]}]},{"id":"lepus","info":{"name":"lepus","author":"cn-kali-team","tags":"detect,tech,lepus","severity":"info","metadata":{"product":"lepus","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["language/switchover\"+'/'+current_language","登录"],"condition":"and","case-insensitive":true}]}]},{"id":"iwebsns","info":{"name":"iwebsns","author":"cn-kali-team","tags":"detect,tech,iwebsns","severity":"info","metadata":{"product":"iwebsns","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/jooyea/images/sns_idea1.jpg","/jooyea/images/snslogo.gif"],"case-insensitive":true}]}]},{"id":"greencms","info":{"name":"greencms","author":"cn-kali-team","tags":"detect,tech,greencms","severity":"info","metadata":{"product":"greencms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-powered-by: greencms"],"part":"header","case-insensitive":true}]}]},{"id":"led-control-software","info":{"name":"led-control-software","author":"cn-kali-team","tags":"detect,tech,led-control-software","severity":"info","metadata":{"product":"led-control-software","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- 记录当前电视墙的序号 end-->","j_setcon j_sub_new j_padt30 j_padb30"],"case-insensitive":true}]}]},{"id":"nexpose","info":{"name":"nexpose","author":"cn-kali-team","tags":"detect,tech,nexpose","severity":"info","metadata":{"product":"nexpose","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["f64ce96bbacc76d6db4d4eb0e78881da"]},{"type":"word","words":["<label for=\"nexposeccusername\">username</label>"],"case-insensitive":true}]}]},{"id":"officeweb365","info":{"name":"officeweb365","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"officeweb365","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-powered-by: officeweb365"],"part":"header","case-insensitive":true},{"type":"word","words":["请输入furl参数"],"case-insensitive":true}]}]},{"id":"yii-framework","info":{"name":"yii-framework","author":"cn-kali-team","tags":"detect,tech,yii-framework","severity":"info","metadata":{"product":"yii-framework","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["get started with yii","yii_csrf_token"],"case-insensitive":true}]}]},{"id":"whatweb","info":{"name":"whatweb","author":"cn-kali-team","tags":"detect,tech,whatweb","severity":"info","metadata":{"product":"whatweb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<body><center><table border=0><tr align=center><td><font color=red size=5>troy serial server</font></td></tr>","network card access password: </b><input type=password size=16 maxlength=16 name=access_psw>"],"case-insensitive":true}]}]},{"id":"qi-an-xin-qi-ye-ban-kong-zhi-zhong-xin","info":{"name":"奇安信-企业版控制中心","author":"cn-kali-team","tags":"detect,tech,奇安信-企业版控制中心","severity":"info","metadata":{"product":"奇安信-企业版控制中心","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["360企业版控制中心"],"case-insensitive":true}]}]},{"id":"manageengine-adselfservice","info":{"name":"manageengine-adselfservice","author":"cn-kali-team","tags":"detect,tech,manageengine-adselfservice","severity":"info","metadata":{"product":"manageengine-adselfservice","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"images/adssp_favicon.ico","manageengine","small_status_box","src=\"adsf/js/"],"case-insensitive":true}]}]},{"id":"magtech-journalx","info":{"name":"magtech-journalx","author":"cn-kali-team","tags":"detect,tech,magtech-journalx","severity":"info","metadata":{"product":"magtech-journalx","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["journalx/authorlogon.action?mag_id"],"case-insensitive":true}]}]},{"id":"broadcom-ca-pam","info":{"name":"broadcom-ca-pam","author":"cn-kali-team","tags":"detect,tech,broadcom-ca-pam","severity":"info","metadata":{"product":"broadcom-ca-pam","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cspm/cleansession.jsp","ispamclient = false"],"case-insensitive":true}]}]},{"id":"boastmachine","info":{"name":"boastmachine","author":"cn-kali-team","tags":"detect,tech,boastmachine","severity":"info","metadata":{"product":"boastmachine","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://boastology.com","powered by boastmachine"],"case-insensitive":true}]}]},{"id":"geonode","info":{"name":"geonode","author":"cn-kali-team","tags":"detect,tech,geonode","severity":"info","metadata":{"product":"geonode","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/catalogue/opensearch\" title=\"geonode search","powered by <a href=\"http://geonode.org"],"case-insensitive":true}]}]},{"id":"mercurial","info":{"name":"mercurial","author":"cn-kali-team","tags":"detect,tech,mercurial","severity":"info","metadata":{"product":"mercurial","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["title=\"mercurial\" style="],"case-insensitive":true}]}]},{"id":"qi-ming-xing-chen-tian-qingweb-ying-yong-an-quan-wang-guan","info":{"name":"启明星辰-天清web应用安全网关","author":"cn-kali-team","tags":"detect,tech,启明星辰-天清web应用安全网关","severity":"info","metadata":{"product":"启明星辰-天清web应用安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["v2/global/vendor/modernizr/modernizr.js","天清web应用安全网关"],"condition":"and","case-insensitive":true}]}]},{"id":"thehostingtool","info":{"name":"thehostingtool","author":"cn-kali-team","tags":"detect,tech,thehostingtool","severity":"info","metadata":{"product":"thehostingtool","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://thehostingtool.com\" target=\"_blank\">thehostingtool</a>","<td width=\"20%\"><strong>server os:</strong></td>","page=status&sub=phpinfo\">phpinfo</a>)</td>"],"case-insensitive":true}]}]},{"id":"vmware-vrealize-operations-manager","info":{"name":"vmware-vrealize-operations-manager","author":"cn-kali-team","tags":"detect,tech,vmware-vrealize-operations-manager","severity":"info","metadata":{"product":"vmware-vrealize-operations-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["identity manager","vmware"],"condition":"and","case-insensitive":true}]}]},{"id":"flyspray","info":{"name":"flyspray","author":"cn-kali-team","tags":"detect,tech,flyspray","severity":"info","metadata":{"product":"flyspray","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by flyspray"],"case-insensitive":true}]}]},{"id":"quiz-system","info":{"name":"quiz-system","author":"cn-kali-team","tags":"detect,tech,quiz-system","severity":"info","metadata":{"product":"quiz-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>| online quiz system |</title>","quiz system"],"condition":"and","case-insensitive":true}]}]},{"id":"utt-an-quan-wang-luo-guan-li-xi-tong","info":{"name":"utt-安全网络管理系统","author":"cn-kali-team","tags":"detect,tech,utt-安全网络管理系统","severity":"info","metadata":{"product":"utt-安全网络管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["technology, inc.","上海艾泰科技有限公司"],"condition":"and","case-insensitive":true}]}]},{"id":"hanyuan-wanfa-fax-server","info":{"name":"hanyuan-wanfa-fax-server","author":"cn-kali-team","tags":"detect,tech,hanyuan-wanfa-fax-server","severity":"info","metadata":{"product":"hanyuan-wanfa-fax-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["background-image:url(images/bgfax0.jpg);","background=\"images/centerfax0.gif\""],"case-insensitive":true}]}]},{"id":"sangfor-employee-internet-management","info":{"name":"sangfor-employee-internet-management","author":"cn-kali-team","tags":"detect,tech,sangfor-employee-internet-management","severity":"info","metadata":{"product":"sangfor-employee-internet-management","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" = function(str, key)","content=\"must-revalidate\""],"condition":"and","case-insensitive":true},{"type":"word","words":["document.cookie = 'sangfor_session_hash=0'","href=\"http://sec.sangfor.com.cn/events/89.html\"","internet authentication system","上网优化管理"],"case-insensitive":true}]}]},{"id":"terminal-feature-collection-and-control-system","info":{"name":"terminal-feature-collection-and-control-system","author":"cn-kali-team","tags":"detect,tech,terminal-feature-collection-and-control-system","severity":"info","metadata":{"product":"terminal-feature-collection-and-control-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/home/pkibinduser?subjectname="],"case-insensitive":true}]}]},{"id":"imageview","info":{"name":"imageview","author":"cn-kali-team","tags":"detect,tech,imageview","severity":"info","metadata":{"product":"imageview","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["by jorge schrauwen","content=\"imageview","href=\"http://www.blackdot.be\" title=\"blackdot.be"],"case-insensitive":true}]}]},{"id":"suitecrm","info":{"name":"suitecrm","author":"cn-kali-team","tags":"detect,tech,suitecrm","severity":"info","metadata":{"product":"suitecrm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"suitecrm\"","src=\"custom/themes/default/images/company_logo.png","src=\"img/suitecrm.png\" alt=\"bitnami suitecrm stack\"","sugar.themes.theme_name = 'suiter'","sugar.themes.theme_name = 'suitep'","supercharged by suitecrm"],"case-insensitive":true},{"type":"word","words":["set-cookie: sugar_user_theme=suitep"],"part":"header","case-insensitive":true}]}]},{"id":"symfony","info":{"name":"symfony","author":"cn-kali-team","tags":"detect,tech,symfony","severity":"info","metadata":{"product":"symfony","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.symfony-project.org/\">","powered by symfony"],"case-insensitive":true}]}]},{"id":"pmway-e5","info":{"name":"pmway-e5","author":"cn-kali-team","tags":"detect,tech,pmway-e5","severity":"info","metadata":{"product":"pmway-e5","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tip_browsertoolow:\"您当前使用的浏览器版本或模式太低,鹏为e5为了您更好的体验,请升级您的ie版本至8.0或以上。\""],"case-insensitive":true}]}]},{"id":"powermta","info":{"name":"powermta","author":"cn-kali-team","tags":"detect,tech,powermta","severity":"info","metadata":{"product":"powermta","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<html><body>access denied. please consult the http-access directive in the user's guide for more information.</body>"],"case-insensitive":true}]}]},{"id":"zonghousc-system","info":{"name":"zonghousc-system","author":"cn-kali-team","tags":"detect,tech,zonghousc-system","severity":"info","metadata":{"product":"zonghousc-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["data-errormessage-value-missing=\"* 请录入用户名","style/default/frui.css"],"case-insensitive":true}]}]},{"id":"magicmail","info":{"name":"magicmail","author":"cn-kali-team","tags":"detect,tech,magicmail","severity":"info","metadata":{"product":"magicmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/aboutus/magicmail.gif"],"case-insensitive":true}]}]},{"id":"mobilityguard","info":{"name":"mobilityguard","author":"cn-kali-team","tags":"detect,tech,mobilityguard","severity":"info","metadata":{"product":"mobilityguard","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["click here for more information about mobilityguard"],"case-insensitive":true}]}]},{"id":"smart-cms","info":{"name":"smart-cms","author":"cn-kali-team","tags":"detect,tech,smart-cms","severity":"info","metadata":{"product":"smart-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"formdoc\" action=\"/hz/sys/login/logined.jsp"],"case-insensitive":true}]}]},{"id":"articlepublisherpro","info":{"name":"articlepublisherpro","author":"cn-kali-team","tags":"detect,tech,articlepublisherpro","severity":"info","metadata":{"product":"articlepublisherpro","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"article publisher pro","www.articlepublisherpro.com"],"case-insensitive":true}]}]},{"id":"xpaper","info":{"name":"xpaper","author":"cn-kali-team","tags":"detect,tech,xpaper","severity":"info","metadata":{"product":"xpaper","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"template/paper/"],"case-insensitive":true}]}]},{"id":"hesk","info":{"name":"hesk","author":"cn-kali-team","tags":"detect,tech,hesk","severity":"info","metadata":{"product":"hesk","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hesk_javascript.js","hesk_style.css","powered by <a href=\"http://www.hesk.com","powered by <a href=\"https://www.hesk.com"],"case-insensitive":true}]}]},{"id":"360-tianqing","info":{"name":"360-tianqing","author":"cn-kali-team","tags":"detect,tech,360-tianqing","severity":"info","metadata":{"product":"360-tianqing","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/task/index/detail?id={item.id}","appid\":\"skylar6","已过期或者未授权,购买请联系4008-136-360"],"case-insensitive":true}]}]},{"id":"jetty","info":{"name":"jetty","author":"cn-kali-team","tags":"detect,tech,jetty","severity":"info","metadata":{"product":"jetty","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["ed7d5c39c69262f4ba95418d4f909b10"]},{"type":"word","words":["powered by jetty://"],"case-insensitive":true},{"type":"word","words":["server: jetty"],"part":"header","case-insensitive":true}]}]},{"id":"bridge5asia-amss","info":{"name":"bridge5asia-amss","author":"cn-kali-team","tags":"detect,tech,bridge5asia-amss","severity":"info","metadata":{"product":"bridge5asia-amss","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/statics/js/mdo-angular-cryptography.js","education area management support system : amss++"],"case-insensitive":true}]}]},{"id":"cc-customer-service","info":{"name":"cc-customer-service","author":"cn-kali-team","tags":"detect,tech,cc-customer-service","severity":"info","metadata":{"product":"cc-customer-service","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<script src=\"http://kefu.qycn.com/"],"case-insensitive":true}]}]},{"id":"gfsoft-akuntansi-2008","info":{"name":"gfsoft-akuntansi-2008","author":"cn-kali-team","tags":"detect,tech,gfsoft-akuntansi-2008","severity":"info","metadata":{"product":"gfsoft-akuntansi-2008","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"images/box%20akuntansi%202008.png\""],"case-insensitive":true}]}]},{"id":"tcexam","info":{"name":"tcexam","author":"cn-kali-team","tags":"detect,tech,tcexam","severity":"info","metadata":{"product":"tcexam","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a name=\"topofdoc\" id=\"topofdoc\"></a>","content=\"nicola asuni - tecnick.com s.r.l.\" />"],"case-insensitive":true}]}]},{"id":"tai-yi-xing-chen-xia-yi-dai-fang-huo-qiang","info":{"name":"太一星晨-下一代防火墙","author":"cn-kali-team","tags":"detect,tech,太一星晨-下一代防火墙","severity":"info","metadata":{"product":"太一星晨-下一代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["t-force下一代防火墙"],"case-insensitive":true}]}]},{"id":"shen-xin-fu-ying-yong-jiao-fu-bao-biao-xi-tong","info":{"name":"深信服应用交付报表系统","author":"cn-kali-team","tags":"detect,tech,深信服应用交付报表系统","severity":"info","metadata":{"product":"深信服应用交付报表系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/reportcenter/index.php?cls_mode=cluster_mode_others"],"case-insensitive":true}]}]},{"id":"xtoa-oa","info":{"name":"xtoa-oa","author":"cn-kali-team","tags":"detect,tech,xtoa-oa","severity":"info","metadata":{"product":"xtoa-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/app_qjuserinfo/qjuserinfoadd.jsp","/images/default/first/xtoa_logo.png","src=\"systemfiles/js/iawebclientactivexcheck.js\""],"case-insensitive":true}]}]},{"id":"yun-wei-an-quan-guan-li-ping-tai","info":{"name":"运维安全管理平台","author":"cn-kali-team","tags":"detect,tech,运维安全管理平台","severity":"info","metadata":{"product":"运维安全管理平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["usm","运维安全管理平台"],"condition":"and","case-insensitive":true}]}]},{"id":"datanet","info":{"name":"datanet","author":"cn-kali-team","tags":"detect,tech,datanet","severity":"info","metadata":{"product":"datanet","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href='/scada'>datanet scada interface"],"case-insensitive":true}]}]},{"id":"trs-wcm","info":{"name":"trs-wcm","author":"cn-kali-team","tags":"detect,tech,trs-wcm","severity":"info","metadata":{"product":"trs-wcm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wcm\" target=\"_blank\">网站管理","wcm"],"condition":"and","case-insensitive":true},{"type":"word","words":["/wcm\" target=\"_blank\">管理","/wcm/app/js","0;url=/wcm","forum.trs.com.cn","window.location.href = \"/wcm\";"],"case-insensitive":true}]}]},{"id":"web-control-panel","info":{"name":"web-control-panel","author":"cn-kali-team","tags":"detect,tech,web-control-panel","severity":"info","metadata":{"product":"web-control-panel","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<td><img src=\"/images/wcpe.gif"],"case-insensitive":true}]}]},{"id":"thinksaas","info":{"name":"thinksaas","author":"cn-kali-team","tags":"detect,tech,thinksaas","severity":"info","metadata":{"product":"thinksaas","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"https://www.thinksaas.cn/app/home/skins/default/style.css\""],"case-insensitive":true}]}]},{"id":"xinnet-mail","info":{"name":"xinnet-mail","author":"cn-kali-team","tags":"detect,tech,xinnet-mail","severity":"info","metadata":{"product":"xinnet-mail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/webmail//cssv2/tamail.css","src=\"cgijson/getloginimg.php?img=logo"],"case-insensitive":true}]}]},{"id":"jian-wang-ke-ji-fang-huo-qiang","info":{"name":"简网科技-防火墙","author":"cn-kali-team","tags":"detect,tech,简网科技-防火墙","severity":"info","metadata":{"product":"简网科技-防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/logincheck\"","class=\"login-head clearfix\""],"condition":"and","case-insensitive":true}]}]},{"id":"yunsuo","info":{"name":"yunsuo","author":"cn-kali-team","tags":"detect,tech,yunsuo","severity":"info","metadata":{"product":"yunsuo","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img class=\"yunsuologo\"","href=\"http://bbs.yunsuo.com.cn"],"case-insensitive":true}]}]},{"id":"mailmax-you-jian-fu-wu-qi","info":{"name":"mailmax-邮件服务器","author":"cn-kali-team","tags":"detect,tech,mailmax-邮件服务器","severity":"info","metadata":{"product":"mailmax-邮件服务器","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mailmax"],"case-insensitive":true}]}]},{"id":"inspur-zheng-wu-xi-tong","info":{"name":"inspur-政务系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"inspur-政务系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["langchao.ecgap.outportal","onlinequery/querylist.aspx"],"case-insensitive":true}]}]},{"id":"san-ling-sheng-an-an-quan-you-jian-xi-tong","info":{"name":"三零盛安-安全邮件系统","author":"cn-kali-team","tags":"detect,tech,三零盛安-安全邮件系统","severity":"info","metadata":{"product":"三零盛安-安全邮件系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["30san.all rights reserved.</div>"],"case-insensitive":true}]}]},{"id":"campus-card-management-system","info":{"name":"campus-card-management-system","author":"cn-kali-team","tags":"detect,tech,campus-card-management-system","severity":"info","metadata":{"product":"campus-card-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/shouyeziti.css","document.formpostds.action=\"xxsearch.action","harbin synjones electronic"],"case-insensitive":true}]}]},{"id":"open-edx","info":{"name":"open-edx","author":"cn-kali-team","tags":"detect,tech,open-edx","severity":"info","metadata":{"product":"open-edx","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"powered by open edx","class=\"footer-about-openedx","id=\"footer-openedx"],"case-insensitive":true}]}]},{"id":"apache2-ubuntu-mo-ren-ye-mian","info":{"name":"apache2-ubuntu默认页面","author":"cn-kali-team","tags":"detect,tech,apache2-ubuntu默认页面","severity":"info","metadata":{"product":"apache2-ubuntu默认页面","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["apache2 ubuntu default page","ubuntu-logo.png"],"condition":"and","case-insensitive":true}]}]},{"id":"huawei-ar-min-jie-wang-guan","info":{"name":"huawei-ar敏捷网关","author":"cn-kali-team","tags":"detect,tech,huawei-ar敏捷网关","severity":"info","metadata":{"product":"huawei-ar敏捷网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/verifycode.cgi?vrfcodeid=","document.title = 'ar web登录"],"condition":"and","case-insensitive":true}]}]},{"id":"sangfor-managementsystem","info":{"name":"sangfor-managementsystem","author":"cn-kali-team","tags":"detect,tech,sangfor-managementsystem","severity":"info","metadata":{"product":"sangfor-managementsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cgi-bin/login.cgi?requestname=","var msg = '对不起, '+str+'暂不支持您当前使用的浏览器","var msg = '对不起,集中管理平台暂不支持您当前使用的浏览器"],"case-insensitive":true}]}]},{"id":"host-security-and-management-system","info":{"name":"host-security-and-management-system","author":"cn-kali-team","tags":"detect,tech,host-security-and-management-system","severity":"info","metadata":{"product":"host-security-and-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=./static/css/app.edb681c84a53277f9336fc297ebca96e.css"],"case-insensitive":true}]}]},{"id":"logsign-siem","info":{"name":"logsign-siem","author":"cn-kali-team","tags":"detect,tech,logsign-siem","severity":"info","metadata":{"product":"logsign-siem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["window.location = '/ui/modules/login/'"],"case-insensitive":true}]}]},{"id":"he-fei-yi-yong-xin-xi-ke-ji-you-xian-gong-sicrm-xi-tong","info":{"name":"合肥易用信息科技有限公司crm系统","author":"cn-kali-team","tags":"detect,tech,合肥易用信息科技有限公司crm系统","severity":"info","metadata":{"product":"合肥易用信息科技有限公司crm系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["2e7ead236832180553dab45ba77db6b7"]}]}]},{"id":"jamf-panel","info":{"name":"jamf-panel","author":"cn-kali-team","tags":"detect,tech,jamf-panel","severity":"info","metadata":{"product":"jamf-panel","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jamf cloud node","jamf pro login"],"condition":"and","case-insensitive":true}]}]},{"id":"web2project","info":{"name":"web2project","author":"cn-kali-team","tags":"detect,tech,web2project","severity":"info","metadata":{"product":"web2project","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["</head><body>fatal error. you haven't created a config file yet.<br/><a href="],"case-insensitive":true}]}]},{"id":"smartertools-smartermail","info":{"name":"smartertools-smartermail","author":"cn-kali-team","tags":"detect,tech,smartertools-smartermail","severity":"info","metadata":{"product":"smartertools-smartermail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href='http://www.smartertools.com/smartermail/mail-server-software.aspx' target='_blank'>smartermail","login - smartermail"],"condition":"and","case-insensitive":true}]}]},{"id":"ren-wo-xing-dian-shang","info":{"name":"任我行电商","author":"cn-kali-team","tags":"detect,tech,任我行电商","severity":"info","metadata":{"product":"任我行电商","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"366ec"],"case-insensitive":true}]}]},{"id":"daydao-system","info":{"name":"daydao-system","author":"cn-kali-team","tags":"detect,tech,daydao-system","severity":"info","metadata":{"product":"daydao-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["$(document).attr(\"title\",\"我被修改啦.哈哈\""],"case-insensitive":true}]}]},{"id":"guo-biao-wang-guan-guan-li-xi-tong","info":{"name":"国标网关管理系统","author":"cn-kali-team","tags":"detect,tech,国标网关管理系统","severity":"info","metadata":{"product":"国标网关管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["title>国标网关管理系统</title"],"case-insensitive":true}]}]},{"id":"teslamate","info":{"name":"teslamate","author":"cn-kali-team","tags":"detect,tech,teslamate","severity":"info","metadata":{"product":"teslamate","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["0e3b30468f89fa98cb22983c89e49d0a"]},{"type":"word","words":["<img alt=\"teslamate\" src="],"case-insensitive":true}]}]},{"id":"thinksns","info":{"name":"thinksns","author":"cn-kali-team","tags":"detect,tech,thinksns","severity":"info","metadata":{"product":"thinksns","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["_static/image/favicon.ico","powered by <a href=\"http://www.thinksns.com\">"],"case-insensitive":true}]}]},{"id":"jeesite","info":{"name":"jeesite","author":"cn-kali-team","tags":"detect,tech,jeesite","severity":"info","metadata":{"product":"jeesite","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jeesite.com","jeesite.css","jeesite.js"],"case-insensitive":true},{"type":"word","words":["set-cookie: jeesite.session.id="],"part":"header","case-insensitive":true}]}]},{"id":"sheng-bo-run-lansecs-di-er-dai-fang-huo-qiang","info":{"name":"圣博润-lansecs第二代防火墙","author":"cn-kali-team","tags":"detect,tech,圣博润-lansecs第二代防火墙","severity":"info","metadata":{"product":"圣博润-lansecs第二代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["lansecs第二代防火墙"],"case-insensitive":true}]}]},{"id":"ibm-watchfire","info":{"name":"ibm-watchfire","author":"cn-kali-team","tags":"detect,tech,ibm-watchfire","severity":"info","metadata":{"product":"ibm-watchfire","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["set-cookie: watchfiresessionid"],"part":"header","case-insensitive":true}]}]},{"id":"kouton-ctbs","info":{"name":"kouton-ctbs","author":"cn-kali-team","tags":"detect,tech,kouton-ctbs","severity":"info","metadata":{"product":"kouton-ctbs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["欢迎使用 kouton ctbs advanced web client 系统!"],"case-insensitive":true}]}]},{"id":"slideshowpro-director","info":{"name":"slideshowpro-director","author":"cn-kali-team","tags":"detect,tech,slideshowpro-director","severity":"info","metadata":{"product":"slideshowpro-director","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["</div> <!--close login-container--></body>","<div id=\"simple-footer\"><span>slideshowpro director"],"case-insensitive":true}]}]},{"id":"qi-wang-zhi-zao-erp-xi-tong","info":{"name":"企望制造erp系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"企望制造erp系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/javascript/js/witfunctions.js"],"case-insensitive":true}]}]},{"id":"wise-education-cloud-masters","info":{"name":"wise-education-cloud-masters","author":"cn-kali-team","tags":"detect,tech,wise-education-cloud-masters","severity":"info","metadata":{"product":"wise-education-cloud-masters","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ctl00_contentplaceholder1_dlttopvideos"],"case-insensitive":true}]}]},{"id":"apache-haus","info":{"name":"apache-haus","author":"cn-kali-team","tags":"detect,tech,apache-haus","severity":"info","metadata":{"product":"apache-haus","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["copyright © 2008-2017 <a href=\"http://www.apachehaus.com\">the apache haus</a>","href=\"/apachehaus.ico"],"case-insensitive":true}]}]},{"id":"asterisk","info":{"name":"asterisk","author":"cn-kali-team","tags":"detect,tech,asterisk","severity":"info","metadata":{"product":"asterisk","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["asterisk_rawmanpath"],"case-insensitive":true}]}]},{"id":"baishijia-cms","info":{"name":"baishijia-cms","author":"cn-kali-team","tags":"detect,tech,baishijia-cms","severity":"info","metadata":{"product":"baishijia-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/resource/images/cms.ico"],"case-insensitive":true}]}]},{"id":"hillstone-zhi-neng-an-quan-yun-ying-xi-tong","info":{"name":"hillstone-智能安全运营系统","author":"cn-kali-team","tags":"detect,tech,hillstone-智能安全运营系统","severity":"info","metadata":{"product":"hillstone-智能安全运营系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/static/css/main.4672616b.chunk.css","智源"],"condition":"and","case-insensitive":true}]}]},{"id":"forcepoint-websense-email-security-gateway","info":{"name":"forcepoint-websense-email-security-gateway","author":"cn-kali-team","tags":"detect,tech,forcepoint-websense-email-security-gateway","severity":"info","metadata":{"product":"forcepoint-websense-email-security-gateway","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["websense email security gateway"],"case-insensitive":true}]}]},{"id":"kafka-manager","info":{"name":"kafka-manager","author":"cn-kali-team","tags":"detect,tech,kafka-manager","severity":"info","metadata":{"product":"kafka-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["vassets/images/2af62f58ee2baf495c9b3a9a1c30ce03-favicon.png"],"case-insensitive":true}]}]},{"id":"huaease-medication","info":{"name":"huaease-medication","author":"cn-kali-team","tags":"detect,tech,huaease-medication","severity":"info","metadata":{"product":"huaease-medication","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"专业的web医学影像浏览器"],"case-insensitive":true}]}]},{"id":"wang-kang-ke-ji-xia-yi-dai-fang-huo-qiang","info":{"name":"网康科技-下一代防火墙","author":"cn-kali-team","tags":"detect,tech,网康科技-下一代防火墙","severity":"info","metadata":{"product":"网康科技-下一代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/images/dashboard/dashboard.png","网康下一代防火墙"],"condition":"and","case-insensitive":true}]}]},{"id":"sgp-managerial-system","info":{"name":"sgp-managerial-system","author":"cn-kali-team","tags":"detect,tech,sgp-managerial-system","severity":"info","metadata":{"product":"sgp-managerial-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/static/all/img/logo/sgp"],"case-insensitive":true}]}]},{"id":"project-management-system","info":{"name":"project-management-system","author":"cn-kali-team","tags":"detect,tech,project-management-system","severity":"info","metadata":{"product":"project-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var right = regexp.rightcontext","window.top.location = \"login.aspx?url=\" + right\""],"case-insensitive":true}]}]},{"id":"pc4uploader","info":{"name":"pc4uploader","author":"cn-kali-team","tags":"detect,tech,pc4uploader","severity":"info","metadata":{"product":"pc4uploader","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pc4uploader <font color","powered by pc4uploader"],"case-insensitive":true}]}]},{"id":"machttp","info":{"name":"machttp","author":"cn-kali-team","tags":"detect,tech,machttp","severity":"info","metadata":{"product":"machttp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: machttp"],"part":"header","case-insensitive":true}]}]},{"id":"tccms","info":{"name":"tccms","author":"cn-kali-team","tags":"detect,tech,tccms","severity":"info","metadata":{"product":"tccms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["index.php?ac=link_more","index.php?ac=news_list"],"case-insensitive":true}]}]},{"id":"ji-teng-ying-yong-an-quan-wang-guan","info":{"name":"技腾-应用安全网关","author":"cn-kali-team","tags":"detect,tech,技腾-应用安全网关","severity":"info","metadata":{"product":"技腾-应用安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["webui/images/basic/login/main_logo.gif","应用安全网关"],"condition":"and","case-insensitive":true}]}]},{"id":"zhong-guo-dian-xin-tian-yi-kuan-dai-zheng-qi-wang-guan","info":{"name":"中国电信-天翼宽带政企网关","author":"cn-kali-team","tags":"detect,tech,中国电信-天翼宽带政企网关","severity":"info","metadata":{"product":"中国电信-天翼宽带政企网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["login","loid_regist()"],"condition":"and","case-insensitive":true}]}]},{"id":"tightvnc","info":{"name":"tightvnc","author":"cn-kali-team","tags":"detect,tech,tightvnc","severity":"info","metadata":{"product":"tightvnc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.tightvnc.com/\">www.tightvnc.com","js/thinvnc.app.js","js/thinvnc.sdk.js"],"case-insensitive":true}]}]},{"id":"diaowen-system","info":{"name":"diaowen-system","author":"cn-kali-team","tags":"detect,tech,diaowen-system","severity":"info","metadata":{"product":"diaowen-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.dwsurvey.net\" style="],"case-insensitive":true}]}]},{"id":"upyun-js-library","info":{"name":"upyun-js-library","author":"cn-kali-team","tags":"detect,tech,upyun-js-library","severity":"info","metadata":{"product":"upyun-js-library","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["b0.upaiyun.com"],"case-insensitive":true}]}]},{"id":"springer","info":{"name":"springer","author":"cn-kali-team","tags":"detect,tech,springer","severity":"info","metadata":{"product":"springer","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"//static.springer.com/"],"case-insensitive":true}]}]},{"id":"byzoro-bai-zhuo-shen-ji-wang-guan","info":{"name":"byzoro-百卓审计网关","author":"cn-kali-team","tags":"detect,tech,byzoro-百卓审计网关","severity":"info","metadata":{"product":"byzoro-百卓审计网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title> technology, inc.</title>","百卓网络"],"condition":"and","case-insensitive":true}]}]},{"id":"peoplenet-ikey","info":{"name":"peoplenet-ikey","author":"cn-kali-team","tags":"detect,tech,peoplenet-ikey","severity":"info","metadata":{"product":"peoplenet-ikey","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"ikey,众人科技,ikey"],"case-insensitive":true}]}]},{"id":"wayos-wei-mengac-ji-zhong-guan-li-xi-tong","info":{"name":"wayos维盟ac集中管理系统","author":"cn-kali-team","tags":"detect,tech,wayos维盟ac集中管理系统","severity":"info","metadata":{"product":"wayos维盟ac集中管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>维盟(wayos)智能路由管理系统 www.wayos.cn</title>"],"case-insensitive":true}]}]},{"id":"ruoyi-system","info":{"name":"ruoyi-system","author":"cn-kali-team","tags":"detect,tech,ruoyi-system","severity":"info","metadata":{"product":"ruoyi-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/ruoyi/css/ry-ui.css","src=\"/ruoyi/js/ry-ui.js"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["e49fd30ea870c7a820464ca56a113e6e"]}]}]},{"id":"axcms","info":{"name":"axcms","author":"cn-kali-team","tags":"detect,tech,axcms","severity":"info","metadata":{"product":"axcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"axcms.net","generated by axcms.net"],"case-insensitive":true}]}]},{"id":"zen_cart-shopping","info":{"name":"zen_cart-shopping","author":"cn-kali-team","tags":"detect,tech,zen_cart-shopping","severity":"info","metadata":{"product":"zen_cart-shopping","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["shopping cart program by zen cart"],"case-insensitive":true},{"type":"word","words":["set-cookie: zenid="],"part":"header","case-insensitive":true}]}]},{"id":"rising-wang-luo-an-quan-yu-jing-xi-tong","info":{"name":"rising-网络安全预警系统","author":"cn-kali-team","tags":"detect,tech,rising-网络安全预警系统","severity":"info","metadata":{"product":"rising-网络安全预警系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["瑞星网络安全预警系统"],"case-insensitive":true}]}]},{"id":"gitorious","info":{"name":"gitorious","author":"cn-kali-team","tags":"detect,tech,gitorious","severity":"info","metadata":{"product":"gitorious","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by gitorious"],"case-insensitive":true}]}]},{"id":"harbor","info":{"name":"harbor","author":"cn-kali-team","tags":"detect,tech,harbor","severity":"info","metadata":{"product":"harbor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>harbor</title>"],"case-insensitive":true}]}]},{"id":"uccc-iot","info":{"name":"uccc-iot","author":"cn-kali-team","tags":"detect,tech,uccc-iot","severity":"info","metadata":{"product":"uccc-iot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hidden-xs\">物联网云平台"],"case-insensitive":true}]}]},{"id":"centos-mo-ren-ye-mian","info":{"name":"centos默认页面","author":"cn-kali-team","tags":"detect,tech,centos默认页面","severity":"info","metadata":{"product":"centos默认页面","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>welcome to centos</title>","centos.org","img/centos-logo.png"],"condition":"and","case-insensitive":true}]}]},{"id":"hikvision-ip-camera","info":{"name":"hikvision-ip-camera","author":"cn-kali-team","tags":"detect,tech,hikvision-ip-camera","severity":"info","metadata":{"product":"hikvision-ip-camera","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["89b932fcc47cf4ca3faadb0cfdef89cf"]}]}]},{"id":"xdoa-oa","info":{"name":"xdoa-oa","author":"cn-kali-team","tags":"detect,tech,xdoa-oa","severity":"info","metadata":{"product":"xdoa-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http://www.xdoa.cn</a>","北京创信达科技有限公司"],"case-insensitive":true}]}]},{"id":"synology-router-manager","info":{"name":"synology-router-manager","author":"cn-kali-team","tags":"detect,tech,synology-router-manager","severity":"info","metadata":{"product":"synology-router-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"synologyrouter","hostname\" : \"synologyrouter\""],"case-insensitive":true}]}]},{"id":"geotrust-cert","info":{"name":"geotrust-cert","author":"cn-kali-team","tags":"detect,tech,geotrust-cert","severity":"info","metadata":{"product":"geotrust-cert","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["//smarticon.geotrust.com/si.js"],"case-insensitive":true}]}]},{"id":"quan-xi-ruo-hai-cang-chu-ban-gong-fu-zhu-guan-li-xi-tong","info":{"name":"全息若海-仓储办公辅助管理系统","author":"cn-kali-team","tags":"detect,tech,全息若海-仓储办公辅助管理系统","severity":"info","metadata":{"product":"全息若海-仓储办公辅助管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/scripts/easyui/jquery.easyui.min.js\"","广州全息若海信息科技有限公司"],"condition":"and","case-insensitive":true}]}]},{"id":"shen-xin-fu-shang-wang-xing-wei-guan-li-xi-tong","info":{"name":"深信服上网行为管理系统","author":"cn-kali-team","tags":"detect,tech,深信服上网行为管理系统","severity":"info","metadata":{"product":"深信服上网行为管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["document.write(wrfwwcsfbxmigkrkhxfj","utccjfaewjb = function(str, key)"],"case-insensitive":true}]}]},{"id":"nsfocus-qi-ye-an-quan-zhong-xin","info":{"name":"nsfocus-企业安全中心","author":"cn-kali-team","tags":"detect,tech,nsfocus-企业安全中心","severity":"info","metadata":{"product":"nsfocus-企业安全中心","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/login_logo_espc_zh_cn.png","绿盟科技企业安全中心"],"condition":"and","case-insensitive":true}]}]},{"id":"hisense-webpos","info":{"name":"hisense-webpos","author":"cn-kali-team","tags":"detect,tech,hisense-webpos","severity":"info","metadata":{"product":"hisense-webpos","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<legend><img src=\"../../content/images/hisense.bmp\" style=\"height:20px; padding-left:-10px\"/>webpos登录</legend>","content/images/hisense.bmp"],"case-insensitive":true}]}]},{"id":"ieslab-scada","info":{"name":"ieslab-scada","author":"cn-kali-team","tags":"detect,tech,ieslab-scada","severity":"info","metadata":{"product":"ieslab-scada","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["copyrightpt12","青岛积成电子有限公司"],"case-insensitive":true}]}]},{"id":"filevista","info":{"name":"filevista","author":"cn-kali-team","tags":"detect,tech,filevista","severity":"info","metadata":{"product":"filevista","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.gleamtech.com/products/filevista/web-file-manager","welcome to filevista"],"condition":"and","case-insensitive":true}]}]},{"id":"xjhyt-system","info":{"name":"xjhyt-system","author":"cn-kali-team","tags":"detect,tech,xjhyt-system","severity":"info","metadata":{"product":"xjhyt-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<input class=\"an1\" name=\"btnrst\" id=\"btnrst\" type=\"reset\" value=\" \" />","class=\"wrap login_wrap\"","url(images/yh.jpg)"],"case-insensitive":true}]}]},{"id":"epoint-devops-monitor","info":{"name":"epoint-devops-monitor","author":"cn-kali-team","tags":"detect,tech,epoint-devops-monitor","severity":"info","metadata":{"product":"epoint-devops-monitor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>新点运维监控平台单机版</title>","新点运维监控平台单机版,请耐心等待"],"condition":"and","case-insensitive":true}]}]},{"id":"umami","info":{"name":"umami","author":"cn-kali-team","tags":"detect,tech,umami","severity":"info","metadata":{"product":"umami","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["e7acd200faa2134fc17bce2e39304292"]}]}]},{"id":"ren-zi-xing-xia-yi-dai-fang-huo-qiang","info":{"name":"任子行-下一代防火墙","author":"cn-kali-team","tags":"detect,tech,任子行-下一代防火墙","severity":"info","metadata":{"product":"任子行-下一代防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["任子行下一代防火墙"],"case-insensitive":true}]}]},{"id":"ultrapower-me-yi-dong-xie-diao-ban-gong-ping-tai","info":{"name":"ultrapower-me移动协调办公平台","author":"cn-kali-team","tags":"detect,tech,ultrapower-me移动协调办公平台","severity":"info","metadata":{"product":"ultrapower-me移动协调办公平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["me移动协调办公平台"],"case-insensitive":true}]}]},{"id":"sosen-airsoft","info":{"name":"sosen-airsoft","author":"cn-kali-team","tags":"detect,tech,sosen-airsoft","severity":"info","metadata":{"product":"sosen-airsoft","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pages/[email protected]"],"case-insensitive":true}]}]},{"id":"rsupport-remotecall","info":{"name":"rsupport-remotecall","author":"cn-kali-team","tags":"detect,tech,rsupport-remotecall","severity":"info","metadata":{"product":"rsupport-remotecall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http://www.remotecall.com","msg_abortservice"],"case-insensitive":true}]}]},{"id":"hong-fanioffice","info":{"name":"红帆ioffice","author":"cn-kali-team","tags":"detect,tech,红帆ioffice","severity":"info","metadata":{"product":"红帆ioffice","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>ioffice.net</title>"],"case-insensitive":true}]}]},{"id":"sinosoft-technology-e-government-system","info":{"name":"sinosoft-technology-e-government-system","author":"cn-kali-team","tags":"detect,tech,sinosoft-technology-e-government-system","severity":"info","metadata":{"product":"sinosoft-technology-e-government-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["app_themes/1/style.css","homepages/content_page.aspx","window.location = \"homepages/index.aspx"],"case-insensitive":true}]}]},{"id":"cnoa-oa","info":{"name":"cnoa-oa","author":"cn-kali-team","tags":"detect,tech,cnoa-oa","severity":"info","metadata":{"product":"cnoa-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["[email protected]","powered by 协众oa"],"condition":"and","case-insensitive":true},{"type":"word","words":["powered by cnoa.cn"],"case-insensitive":true}]}]},{"id":"zhongan-xdecision","info":{"name":"zhongan-xdecision","author":"cn-kali-team","tags":"detect,tech,zhongan-xdecision","severity":"info","metadata":{"product":"zhongan-xdecision","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"g-alert-content\" id=\"g-alert-contentsystem\">"],"case-insensitive":true}]}]},{"id":"pypiserver","info":{"name":"pypiserver","author":"cn-kali-team","tags":"detect,tech,pypiserver","severity":"info","metadata":{"product":"pypiserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>welcome to pypiserver!</title>"],"case-insensitive":true}]}]},{"id":"netease-enterprise-mailbox","info":{"name":"netease-enterprise-mailbox","author":"cn-kali-team","tags":"detect,tech,netease-enterprise-mailbox","severity":"info","metadata":{"product":"netease-enterprise-mailbox","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"网易企业邮箱","src=\"http://mimg.qiye.163.com/"],"condition":"and","case-insensitive":true},{"type":"word","words":["<span class=\"warn\">请您从网易企业邮箱用户登录页登录</span>","frmvalidator"],"case-insensitive":true}]}]},{"id":"paraview-uams","info":{"name":"paraview-uams","author":"cn-kali-team","tags":"detect,tech,paraview-uams","severity":"info","metadata":{"product":"paraview-uams","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- <title>派拉统一身份管理系统</title> -->"],"case-insensitive":true}]}]},{"id":"hadoop-administration","info":{"name":"hadoop-administration","author":"cn-kali-team","tags":"detect,tech,hadoop-administration","severity":"info","metadata":{"product":"hadoop-administration","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/static/hadoop.css","class=\"navbar-brand\">hadoop</div>"],"case-insensitive":true}]}]},{"id":"serendipity-php-architecture","info":{"name":"serendipity-php-architecture","author":"cn-kali-team","tags":"detect,tech,serendipity-php-architecture","severity":"info","metadata":{"product":"serendipity-php-architecture","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["serendipity_editor.js"],"case-insensitive":true}]}]},{"id":"colasoft-mdp","info":{"name":"colasoft-mdp","author":"cn-kali-team","tags":"detect,tech,colasoft-mdp","severity":"info","metadata":{"product":"colasoft-mdp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"processtime\" time=\"0.000033\" >#processtime</div>","科来 版权所有 保留所有权利"],"case-insensitive":true}]}]},{"id":"hikvision-v23-control","info":{"name":"hikvision-v23-control","author":"cn-kali-team","tags":"detect,tech,hikvision-v23-control","severity":"info","metadata":{"product":"hikvision-v23-control","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hikvision v2.3控件网页demo","if(m_bdvrcontrol.stoptalk())","杭州海康威视数字技术股份有限公司"],"case-insensitive":true}]}]},{"id":"phpfreechat","info":{"name":"phpfreechat","author":"cn-kali-team","tags":"detect,tech,phpfreechat","severity":"info","metadata":{"product":"phpfreechat","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by phpfreechat","src=\"http://www.phpfreechat.net/pub/"],"case-insensitive":true}]}]},{"id":"redseal-system","info":{"name":"redseal-system","author":"cn-kali-team","tags":"detect,tech,redseal-system","severity":"info","metadata":{"product":"redseal-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"redseal, inc.\"/></a>"],"case-insensitive":true}]}]},{"id":"glpi","info":{"name":"glpi","author":"cn-kali-team","tags":"detect,tech,glpi","severity":"info","metadata":{"product":"glpi","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["c9339a2ecde0980f40ba22c2d237b94b"]}]}]},{"id":"zidesoft-e6","info":{"name":"zidesoft-e6","author":"cn-kali-team","tags":"detect,tech,zidesoft-e6","severity":"info","metadata":{"product":"zidesoft-e6","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/static/images/login/btn-login.gif\""],"case-insensitive":true}]}]},{"id":"wso2-carbon-server","info":{"name":"wso2-carbon-server","author":"cn-kali-team","tags":"detect,tech,wso2-carbon-server","severity":"info","metadata":{"product":"wso2-carbon-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: wso2 carbon server"],"part":"header","case-insensitive":true}]}]},{"id":"epoint-web-zwdt","info":{"name":"epoint-web-zwdt","author":"cn-kali-team","tags":"detect,tech,epoint-web-zwdt","severity":"info","metadata":{"product":"epoint-web-zwdt","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["epoint-web-zwdt"],"case-insensitive":true}]}]},{"id":"dong-fang-tong-tongweb-ying-yong-fu-wu-qi","info":{"name":"东方通tongweb应用服务器","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"东方通tongweb应用服务器","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: tongweb server"],"part":"header","case-insensitive":true}]}]},{"id":"adobe-experience-manager","info":{"name":"adobe-experience-manager","author":"cn-kali-team","tags":"detect,tech,adobe-experience-manager","severity":"info","metadata":{"product":"adobe-experience-manager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tag{background:url(login/clientlib/resources/adobe-logo.png)"],"case-insensitive":true}]}]},{"id":"jin-he-xie-tong-guan-li-ping-tai","info":{"name":"金和协同管理平台","author":"cn-kali-team","tags":"detect,tech,金和协同管理平台","severity":"info","metadata":{"product":"金和协同管理平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jhsoft.web.login","password.aspx"],"condition":"and","case-insensitive":true},{"type":"word","words":["c6/jhsoft.web.login","closewindownoask"],"condition":"and","case-insensitive":true},{"type":"word","words":["jinher network","js/passwordcommon.js","js/passwordnew.js"],"case-insensitive":true}]}]},{"id":"tian-xing-wang-an-an-quan-dan-xiang-dao-ru-xi-tong","info":{"name":"天行网安-安全单向导入系统","author":"cn-kali-team","tags":"detect,tech,天行网安-安全单向导入系统","severity":"info","metadata":{"product":"天行网安-安全单向导入系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta http-equiv=\"refresh\" content=\"0;url=/usermainaction.action\" />","天行安全单向导入系统"],"condition":"and","case-insensitive":true}]}]},{"id":"proxmox-ve","info":{"name":"proxmox-ve","author":"cn-kali-team","tags":"detect,tech,proxmox-ve","severity":"info","metadata":{"product":"proxmox-ve","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"boxheadline\">proxmox virtual environment","ext.create('pve.stdworkspace')","href='http://www.proxmox.com' target='_blank' class=\"boxheadline"],"case-insensitive":true}]}]},{"id":"ruijie-fang-huo-qiang","info":{"name":"ruijie-防火墙","author":"cn-kali-team","tags":"detect,tech,ruijie-防火墙","severity":"info","metadata":{"product":"ruijie-防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["4008 111 000","ssl_index_next.html"],"condition":"and","case-insensitive":true}]}]},{"id":"hillstone-hsa","info":{"name":"hillstone-hsa","author":"cn-kali-team","tags":"detect,tech,hillstone-hsa","severity":"info","metadata":{"product":"hillstone-hsa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"resources/login-all.css\""],"case-insensitive":true}]}]},{"id":"hdwiki","info":{"name":"hdwiki","author":"cn-kali-team","tags":"detect,tech,hdwiki","severity":"info","metadata":{"product":"hdwiki","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"hdwiki","http://kaiyuan.hudong.com?hf=hdwiki_copyright_kaiyuan"],"case-insensitive":true}]}]},{"id":"maipu-isg1000-an-quan-wang-guan","info":{"name":"maipu-isg1000安全网关","author":"cn-kali-team","tags":"detect,tech,maipu-isg1000安全网关","severity":"info","metadata":{"product":"maipu-isg1000安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/php/common/checknum_creat.php?module=config_authnum\")?","isg1000"],"condition":"and","case-insensitive":true}]}]},{"id":"net2ftp","info":{"name":"net2ftp","author":"cn-kali-team","tags":"detect,tech,net2ftp","severity":"info","metadata":{"product":"net2ftp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- end of net2ftp login form","<!-- net2ftp version","content=\"net2ftp","href=\"http://www.net2ftp.com\">net2ftp</a>"],"case-insensitive":true}]}]},{"id":"fujitsu-netshelter-vpn","info":{"name":"fujitsu-netshelter-vpn","author":"cn-kali-team","tags":"detect,tech,fujitsu-netshelter-vpn","severity":"info","metadata":{"product":"fujitsu-netshelter-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["welcome to netshelter"],"case-insensitive":true}]}]},{"id":"rising-antivirus-wall","info":{"name":"rising-antivirus-wall","author":"cn-kali-team","tags":"detect,tech,rising-antivirus-wall","severity":"info","metadata":{"product":"rising-antivirus-wall","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"/index.php\" onsubmit=\"return checkfrm(this);"],"case-insensitive":true}]}]},{"id":"an-heng-yun-bao-lei-ji","info":{"name":"安恒云堡垒机","author":"cn-kali-team","tags":"detect,tech,安恒云堡垒机","severity":"info","metadata":{"product":"安恒云堡垒机","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dbappsecurity","安恒云堡垒机"],"condition":"and","case-insensitive":true}]}]},{"id":"netcrm","info":{"name":"netcrm","author":"cn-kali-team","tags":"detect,tech,netcrm","severity":"info","metadata":{"product":"netcrm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"runecrm.ico\""],"case-insensitive":true}]}]},{"id":"minio-browser","info":{"name":"minio-browser","author":"cn-kali-team","tags":"detect,tech,minio-browser","severity":"info","metadata":{"product":"minio-browser","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>minio browser</title>","<title>minio console</title>","href=\"/minio/loader.css\""],"case-insensitive":true}]}]},{"id":"microsoft-sharepoint","info":{"name":"microsoft-sharepoint","author":"cn-kali-team","tags":"detect,tech,microsoft-sharepoint","severity":"info","metadata":{"product":"microsoft-sharepoint","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"microsoft sharepoint","content=\"sharepoint team","id=\"msowebpartpage_postbacksource"],"case-insensitive":true}]}]},{"id":"tingjiandan-iot","info":{"name":"tingjiandan-iot","author":"cn-kali-team","tags":"detect,tech,tingjiandan-iot","severity":"info","metadata":{"product":"tingjiandan-iot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"hwebsystemtitle\""],"case-insensitive":true}]}]},{"id":"huawei-netopen","info":{"name":"huawei-netopen","author":"cn-kali-team","tags":"detect,tech,huawei-netopen","severity":"info","metadata":{"product":"huawei-netopen","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/netopen/theme/css/inframe.css"],"case-insensitive":true}]}]},{"id":"ubuntu","info":{"name":"ubuntu","author":"cn-kali-team","tags":"detect,tech,ubuntu","severity":"info","metadata":{"product":"ubuntu","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["welcome to nginx on ubuntu!"],"case-insensitive":true}]}]},{"id":"ibot-cloud","info":{"name":"ibot-cloud","author":"cn-kali-team","tags":"detect,tech,ibot-cloud","severity":"info","metadata":{"product":"ibot-cloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["author:lvzhaohua"],"case-insensitive":true}]}]},{"id":"mkportal","info":{"name":"mkportal","author":"cn-kali-team","tags":"detect,tech,mkportal","severity":"info","metadata":{"product":"mkportal","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"mkportal","target=\"_blank\">mkportal</a>"],"case-insensitive":true}]}]},{"id":"geowebcache","info":{"name":"geowebcache","author":"cn-kali-team","tags":"detect,tech,geowebcache","severity":"info","metadata":{"product":"geowebcache","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://geowebcache.org\">geowebcache</a>","welcome to geowebcache version"],"case-insensitive":true}]}]},{"id":"open-blog","info":{"name":"open-blog","author":"cn-kali-team","tags":"detect,tech,open-blog","severity":"info","metadata":{"product":"open-blog","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["target=\"_blank\">open blog"],"case-insensitive":true}]}]},{"id":"laysns-cms","info":{"name":"laysns-cms","author":"cn-kali-team","tags":"detect,tech,laysns-cms","severity":"info","metadata":{"product":"laysns-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.laysns.com/\"> laysns","title=\"laysns\""],"case-insensitive":true}]}]},{"id":"golden-dragon-card-ecard-website-query-subsystem","info":{"name":"golden-dragon-card-ecard-website-query-subsystem","author":"cn-kali-team","tags":"detect,tech,golden-dragon-card-ecard-website-query-subsystem","severity":"info","metadata":{"product":"golden-dragon-card-ecard-website-query-subsystem","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location.href=\"homelogin.action"],"case-insensitive":true}]}]},{"id":"subsonic-as-subsonic","info":{"name":"subsonic-as-subsonic","author":"cn-kali-team","tags":"detect,tech,subsonic-as-subsonic","severity":"info","metadata":{"product":"subsonic-as-subsonic","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onload=\"document.getelementbyid('j_username').focus()\"","parent.frames.upper.keyboardshortcut(\"showindex\", index.touppercase());","subsonic"],"case-insensitive":true}]}]},{"id":"ibm-goserve","info":{"name":"ibm-goserve","author":"cn-kali-team","tags":"detect,tech,ibm-goserve","severity":"info","metadata":{"product":"ibm-goserve","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: goserve"],"part":"header","case-insensitive":true}]}]},{"id":"xstream","info":{"name":"xstream","author":"cn-kali-team","tags":"detect,tech,xstream","severity":"info","metadata":{"product":"xstream","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["exception","com.thoughtworks.xstream"],"condition":"and","case-insensitive":true}]}]},{"id":"yi-you-zhi-neng-fan-la-ji-you-jian-xi-tong","info":{"name":"易邮-智能反垃圾邮件系统","author":"cn-kali-team","tags":"detect,tech,易邮-智能反垃圾邮件系统","severity":"info","metadata":{"product":"易邮-智能反垃圾邮件系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/ymail/default/js/menu.js","ymail's 智能反垃圾邮件系统"],"condition":"and","case-insensitive":true}]}]},{"id":"screwturn-wiki-web-service","info":{"name":"screwturn-wiki-web-service","author":"cn-kali-team","tags":"detect,tech,screwturn-wiki-web-service","severity":"info","metadata":{"product":"screwturn-wiki-web-service","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a class=\"externallink\" href=\"http:","title=\"screwturn wiki\" target=\"_blank\">screwturn wiki"],"case-insensitive":true}]}]},{"id":"yadongsoft-fs3","info":{"name":"yadongsoft-fs3","author":"cn-kali-team","tags":"detect,tech,yadongsoft-fs3","severity":"info","metadata":{"product":"yadongsoft-fs3","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["神盾fs<sup>3</sup>文档安全共享系统v2.0</div>"],"case-insensitive":true}]}]},{"id":"fujitsu-vpn","info":{"name":"fujitsu-vpn","author":"cn-kali-team","tags":"detect,tech,fujitsu-vpn","severity":"info","metadata":{"product":"fujitsu-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["_fj_sslvpn_login"],"case-insensitive":true}]}]},{"id":"wishoa","info":{"name":"wishoa","author":"cn-kali-team","tags":"detect,tech,wishoa","severity":"info","metadata":{"product":"wishoa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wishoa_webplugin.js","wishoa_webplugin.js"],"case-insensitive":true}]}]},{"id":"nabble","info":{"name":"nabble","author":"cn-kali-team","tags":"detect,tech,nabble","severity":"info","metadata":{"product":"nabble","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[">nabble</a>","class=\"nabble\" id=\"nabble"],"case-insensitive":true}]}]},{"id":"hisense-business-management-platform","info":{"name":"hisense-business-management-platform","author":"cn-kali-team","tags":"detect,tech,hisense-business-management-platform","severity":"info","metadata":{"product":"hisense-business-management-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"left.jpg\"","src=\"up.jpg\""],"condition":"and","case-insensitive":true}]}]},{"id":"topsec-dlp","info":{"name":"topsec-dlp","author":"cn-kali-team","tags":"detect,tech,topsec-dlp","severity":"info","metadata":{"product":"topsec-dlp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"static/images/login/loading.gif\" /><span id=\"message\">loading......</span>"],"case-insensitive":true}]}]},{"id":"jin-shantimeon-yun-sha-du","info":{"name":"金山timeon云杀毒","author":"cn-kali-team","tags":"detect,tech,金山timeon云杀毒","severity":"info","metadata":{"product":"金山timeon云杀毒","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["timeon","iepngfix/iepngfix_tilebg.js"],"condition":"and","case-insensitive":true}]}]},{"id":"reviewboard","info":{"name":"reviewboard","author":"cn-kali-team","tags":"detect,tech,reviewboard","severity":"info","metadata":{"product":"reviewboard","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/static/rb/images/delete"],"case-insensitive":true}]}]},{"id":"microsoft-remote-web-workplace","info":{"name":"microsoft-remote-web-workplace","author":"cn-kali-team","tags":"detect,tech,microsoft-remote-web-workplace","severity":"info","metadata":{"product":"microsoft-remote-web-workplace","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["action=\"logon.aspx?","content=\"copyright (c) microsoft corporation"],"case-insensitive":true}]}]},{"id":"huaweismc","info":{"name":"huaweismc","author":"cn-kali-team","tags":"detect,tech,huaweismc","severity":"info","metadata":{"product":"huaweismc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["script/smcscript.js?version="],"case-insensitive":true}]}]},{"id":"apache-wicket","info":{"name":"apache-wicket","author":"cn-kali-team","tags":"detect,tech,apache-wicket","severity":"info","metadata":{"product":"wicket","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/org.apache.wicket.","xmlns:wicket="],"case-insensitive":true}]}]},{"id":"dynaweb-httpd","info":{"name":"dynaweb-httpd","author":"cn-kali-team","tags":"detect,tech,dynaweb-httpd","severity":"info","metadata":{"product":"dynaweb-httpd","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: dwhttpd"],"part":"header","case-insensitive":true}]}]},{"id":"360-tianji","info":{"name":"360-tianji","author":"cn-kali-team","tags":"detect,tech,360-tianji","severity":"info","metadata":{"product":"360-tianji","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/resource/img/login/logo_403.png\" alt=\"360天机\"/></a>"],"case-insensitive":true}]}]},{"id":"mini-httpd","info":{"name":"mini-httpd","author":"cn-kali-team","tags":"detect,tech,mini-httpd","severity":"info","metadata":{"product":"mini-httpd","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: mini_httpd"],"part":"header","case-insensitive":true}]}]},{"id":"npoint","info":{"name":"npoint","author":"cn-kali-team","tags":"detect,tech,npoint","severity":"info","metadata":{"product":"npoint","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/inc/usercode.asp?npoint=","content=\"n点虚拟主机管理系统","js/ajax_x.js"],"case-insensitive":true}]}]},{"id":"winwebmail","info":{"name":"winwebmail","author":"cn-kali-team","tags":"detect,tech,winwebmail","severity":"info","metadata":{"product":"winwebmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<td class=newsdiv-mid2>邮局管理员可自行分配邮箱!</td>","href=\"images\\hwem.css\"","images/owin.css","type=\"hidden\" name=\"secex\"","winwebmail server"],"case-insensitive":true}]}]},{"id":"pcitc-lims","info":{"name":"pcitc-lims","author":"cn-kali-team","tags":"detect,tech,pcitc-lims","severity":"info","metadata":{"product":"pcitc-lims","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/home/plug_in_download"],"case-insensitive":true}]}]},{"id":"hp-ilo","info":{"name":"hp-ilo","author":"cn-kali-team","tags":"detect,tech,hp-ilo","severity":"info","metadata":{"product":"hp-ilo","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.hp.com/go/ilo","js/ilo.js"],"case-insensitive":true}]}]},{"id":"valley-platform","info":{"name":"valley-platform","author":"cn-kali-team","tags":"detect,tech,valley-platform","severity":"info","metadata":{"product":"valley-platform","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/","{{BaseURL}}/demo/form.jsp"],"matchers":[{"type":"word","words":["valleyplatform","valley-platform.js"],"case-insensitive":true}]}]},{"id":"nvidia-mellanox-mlnx-os","info":{"name":"nvidia-mellanox-mlnx-os","author":"cn-kali-team","tags":"detect,tech,nvidia-mellanox-mlnx-os","severity":"info","metadata":{"product":"nvidia-mellanox-mlnx-os","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["'/admin/launch?script=","/mlx-default.css","<div style='display: none;' id=\"setstatusiconstatediv\"></div>","url=/admin/launch?script="],"case-insensitive":true}]}]},{"id":"rocketmq-console","info":{"name":"rocketmq-console","author":"cn-kali-team","tags":"detect,tech,rocketmq-console","severity":"info","metadata":{"product":"rocketmq-console","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>rocketmq-console-ng</title>"],"case-insensitive":true},{"type":"word","words":["www-authenticate: basic realm=\"rocketmq\""],"part":"header","case-insensitive":true}]}]},{"id":"myre-php","info":{"name":"myre-php","author":"cn-kali-team","tags":"detect,tech,myre-php","severity":"info","metadata":{"product":"myre-php","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- begin: menu footer don't change anything","<b><u>my last viewed</u></b>"],"case-insensitive":true}]}]},{"id":"nuance-safecom","info":{"name":"nuance-safecom","author":"cn-kali-team","tags":"detect,tech,nuance-safecom","severity":"info","metadata":{"product":"nuance-safecom","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["safecom mobile print"],"case-insensitive":true}]}]},{"id":"wifi-an-quan-zhong-duan-she-bei-guan-li","info":{"name":"wifi安全终端设备管理","author":"cn-kali-team","tags":"detect,tech,wifi安全终端设备管理","severity":"info","metadata":{"product":"wifi安全终端设备管理","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1>wifi安全终端设备管理</h1>"],"case-insensitive":true}]}]},{"id":"mu-yun-webvpn","info":{"name":"mu-yun-webvpn","author":"cn-kali-team","tags":"detect,tech,mu-yun-webvpn","severity":"info","metadata":{"product":"mu-yun-webvpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=木云科技","webvpn","应用安全网关"],"condition":"and","case-insensitive":true}]}]},{"id":"adobe-flex","info":{"name":"adobe-flex","author":"cn-kali-team","tags":"detect,tech,adobe-flex","severity":"info","metadata":{"product":"adobe-flex","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["adobe flex","learn more about flex at http://flex.org"],"case-insensitive":true}]}]},{"id":"dayrui-cms","info":{"name":"dayrui-cms","author":"cn-kali-team","tags":"detect,tech,dayrui-cms","severity":"info","metadata":{"product":"dayrui-cms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dayrui/statics"],"case-insensitive":true}]}]},{"id":"17mail-yi-qi-you","info":{"name":"17mail-易企邮","author":"cn-kali-team","tags":"detect,tech,17mail-易企邮","severity":"info","metadata":{"product":"17mail-易企邮","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["//易企邮正式版发布"],"case-insensitive":true}]}]},{"id":"beyeon-iot","info":{"name":"beyeon-iot","author":"cn-kali-team","tags":"detect,tech,beyeon-iot","severity":"info","metadata":{"product":"beyeon-iot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var app_smp_type_name = '门店';var app_grp_type_name = '集团'","版权所有:郑州蓝视科技有限公司"],"case-insensitive":true}]}]},{"id":"dahua-zhi-hui-yuan-qu-zong-he-guan-li-ping-tai","info":{"name":"dahua-智慧园区综合管理平台","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"dahua-智慧园区综合管理平台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<li id=\"dss-help\">","<span>dss助手</span>"],"condition":"and","case-insensitive":true},{"type":"word","words":["created by intellij idea.","/wpms"],"condition":"and","case-insensitive":true},{"type":"word","words":["created by intellij idea.","selene"],"condition":"and","case-insensitive":true},{"type":"word","words":["\"include/styles/common/favicon.ico","portal/login_init.action"],"condition":"and","case-insensitive":true},{"type":"word","words":["/wpms/asset/common/css/base.css"],"case-insensitive":true}]}]},{"id":"guan-qun-jin-chen-kill-you-jian-an-quan-wang-guan","info":{"name":"冠群金辰-kill邮件安全网关","author":"cn-kali-team","tags":"detect,tech,冠群金辰-kill邮件安全网关","severity":"info","metadata":{"product":"冠群金辰-kill邮件安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["background=\"skins/default/images/login_ksgm.jpg","kill邮件安全网关"],"condition":"and","case-insensitive":true}]}]},{"id":"hikvision-shi-pin-bian-ma-she-bei-jie-ru-wang-guan","info":{"name":"hikvision-视频编码设备接入网关","author":"cn-kali-team","tags":"detect,tech,hikvision-视频编码设备接入网关","severity":"info","metadata":{"product":"hikvision-视频编码设备接入网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<input id=\"p_pass\" class=\"int\" onfocus=\"this.value='';\" tabindex=\"2\" name=\"p_pass","href=\"/bncgi-bin/test.pl"],"condition":"and","case-insensitive":true}]}]},{"id":"thinker-intelligentgateway","info":{"name":"thinker-intelligentgateway","author":"cn-kali-team","tags":"detect,tech,thinker-intelligentgateway","severity":"info","metadata":{"product":"thinker-intelligentgateway","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["智能网关系统<br>"],"case-insensitive":true}]}]},{"id":"feng-wang-qi-ye-liu-kong-yun-lu-you-qi","info":{"name":"蜂网企业流控云路由器","author":"cn-kali-team","tags":"detect,tech,蜂网企业流控云路由器","severity":"info","metadata":{"product":"蜂网企业流控云路由器","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ifw8","login","企业级流控云路由器"],"condition":"and","case-insensitive":true}]}]},{"id":"webpa","info":{"name":"webpa","author":"cn-kali-team","tags":"detect,tech,webpa","severity":"info","metadata":{"product":"webpa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<td align=\"right\"><div id=\"inst_logo\"><img src="],"case-insensitive":true}]}]},{"id":"winiis-isp-access-resource-management-system","info":{"name":"winiis-isp-access-resource-management-system","author":"cn-kali-team","tags":"detect,tech,winiis-isp-access-resource-management-system","severity":"info","metadata":{"product":"winiis-isp-access-resource-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["winisp.gif"],"case-insensitive":true}]}]},{"id":"natshell","info":{"name":"natshell","author":"cn-kali-team","tags":"detect,tech,natshell","severity":"info","metadata":{"product":"natshell","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h4>欢迎登录natshell</h4"],"case-insensitive":true}]}]},{"id":"mingdekeji-system","info":{"name":"mingdekeji-system","author":"cn-kali-team","tags":"detect,tech,mingdekeji-system","severity":"info","metadata":{"product":"mingdekeji-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"imges/zgsh.ico\"","荆州明德科技"],"case-insensitive":true}]}]},{"id":"qi-ming-xing-chen-tian-yue-yun-wei-an-quan-wang-guan","info":{"name":"启明星辰天玥运维安全网关","author":"cn-kali-team","tags":"detect,tech,启明星辰天玥运维安全网关","severity":"info","metadata":{"product":"启明星辰天玥运维安全网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["checklocalservicestatus","天玥运维安全网关"],"condition":"and","case-insensitive":true}]}]},{"id":"jurassic-application-management-system","info":{"name":"jurassic-application-management-system","author":"cn-kali-team","tags":"detect,tech,jurassic-application-management-system","severity":"info","metadata":{"product":"jurassic-application-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jurassic","var _usermenusurl = '/appcenter/functions/getusermenu'"],"case-insensitive":true}]}]},{"id":"vop","info":{"name":"vop","author":"cn-kali-team","tags":"detect,tech,vop","severity":"info","metadata":{"product":"vop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"lgform\" action=\"/sso/login","vop"],"condition":"and","case-insensitive":true},{"type":"word","words":["lgdynacodebtn"],"case-insensitive":true}]}]},{"id":"yonyou-nc-xie-tong-oa-guan-li-ruan-jian-v5.1sp1","info":{"name":"yonyou nc协同-oa管理软件 v5.1sp1","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"yonyou nc协同-oa管理软件 v5.1sp1","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/seeyon/common/images/a8/faviconnc.ico","common/images/a8/faviconnc-1.ico"],"case-insensitive":true}]}]},{"id":"1caitong","info":{"name":"1caitong","author":"cn-kali-team","tags":"detect,tech,1caitong","severity":"info","metadata":{"product":"1caitong","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/custom/groupnewslist.aspx?groupid="],"case-insensitive":true}]}]},{"id":"conexant-emweb","info":{"name":"conexant-emweb","author":"cn-kali-team","tags":"detect,tech,conexant-emweb","severity":"info","metadata":{"product":"conexant-emweb","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: virata-emweb"],"part":"header","case-insensitive":true}]}]},{"id":"bugzilla","info":{"name":"bugzilla","author":"cn-kali-team","tags":"detect,tech,bugzilla","severity":"info","metadata":{"product":"bugzilla","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cgi-bin/bugzilla/","enter_bug.cgi"],"case-insensitive":true}]}]},{"id":"juniper-hdr","info":{"name":"juniper-hdr","author":"cn-kali-team","tags":"detect,tech,juniper-hdr","severity":"info","metadata":{"product":"juniper-hdr","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/hdr_logo.gif","/stylesheet/juniper.css"],"case-insensitive":true}]}]},{"id":"pinpoint","info":{"name":"pinpoint","author":"cn-kali-team","tags":"detect,tech,pinpoint","severity":"info","metadata":{"product":"pinpoint","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<body id=\"pinpoint\">","<title>pinpoint</title>"],"condition":"and","case-insensitive":true}]}]},{"id":"tencent-foxmail-server","info":{"name":"tencent-foxmail-server","author":"cn-kali-team","tags":"detect,tech,tencent-foxmail-server","severity":"info","metadata":{"product":"tencent-foxmail-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/images//foxs_logo.gif"],"case-insensitive":true}]}]},{"id":"vp-asp","info":{"name":"vp-asp","author":"cn-kali-team","tags":"detect,tech,vp-asp","severity":"info","metadata":{"product":"vp-asp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.vpasp.com\">","shopdisplayproducts.asp?id=","src=\"vs350.js"],"case-insensitive":true}]}]},{"id":"comexe-ras","info":{"name":"comexe-ras","author":"cn-kali-team","tags":"detect,tech,comexe-ras","severity":"info","metadata":{"product":"comexe-ras","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"pic/iras.ico","href=\"pic/ras.ico"],"condition":"and","case-insensitive":true},{"type":"word","words":["href=\"cmxlogin.php\"","type=\"application/npras","科迈ras","远程技术支持请求:<a href=\"http://www.comexe.cn"],"case-insensitive":true}]}]},{"id":"uniform-server","info":{"name":"uniform-server","author":"cn-kali-team","tags":"detect,tech,uniform-server","severity":"info","metadata":{"product":"uniform-server","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.uniformserver.com\">","<div id=\"divider\">developed by <a href=\"http://www.uniformserver.com/\">the uniform server development team</a></div>","<meta name=\"description\" content=\"the uniform server 8.1.0-coral.\" />"],"case-insensitive":true}]}]},{"id":"socomec-webserver","info":{"name":"socomec-webserver","author":"cn-kali-team","tags":"detect,tech,socomec-webserver","severity":"info","metadata":{"product":"socomec-webserver","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["diag.htm?src=index"],"case-insensitive":true}]}]},{"id":"nsoc-bigdata","info":{"name":"nsoc-bigdata","author":"cn-kali-team","tags":"detect,tech,nsoc-bigdata","severity":"info","metadata":{"product":"nsoc-bigdata","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<b>nsoc云安全解决方案","<h2>nsoc大数据分析系统</h2>","src=\"/nfw/static/framework/images/views.png"],"case-insensitive":true}]}]},{"id":"xecurevpn","info":{"name":"xecurevpn","author":"cn-kali-team","tags":"detect,tech,xecurevpn","severity":"info","metadata":{"product":"xecurevpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["xnstyle.css"],"case-insensitive":true}]}]},{"id":"vnc","info":{"name":"vnc","author":"cn-kali-team","tags":"detect,tech,vnc","severity":"info","metadata":{"product":"vnc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<applet code=vncviewer.class archive=vncviewer.jar"],"case-insensitive":true}]}]},{"id":"bitbucket","info":{"name":"bitbucket","author":"cn-kali-team","tags":"detect,tech,bitbucket","severity":"info","metadata":{"product":"bitbucket","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["bitbucket.page.login"],"case-insensitive":true}]}]},{"id":"metronic-admin-theme-framework","info":{"name":"metronic-admin-theme-framework","author":"cn-kali-team","tags":"detect,tech,metronic-admin-theme-framework","severity":"info","metadata":{"product":"metronic-admin-theme-framework","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["metronic. admin dashboard template."],"case-insensitive":true}]}]},{"id":"apollo-adminservice","info":{"name":"apollo-adminservice","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"apollo-adminservice","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["apollo-adminservice"],"case-insensitive":true}]}]},{"id":"rui-you-ying-yong-xu-ni-hua-xi-tong","info":{"name":"瑞友应用虚拟化系统","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"瑞友应用虚拟化系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/client/caswebclient.exe","casmain.xgi"],"condition":"and","case-insensitive":true},{"type":"word","words":["瑞友天翼-应用虚拟化系统","瑞友应用虚拟化系统"],"case-insensitive":true}]}]},{"id":"webasyst-shop-script","info":{"name":"webasyst-shop-script","author":"cn-kali-team","tags":"detect,tech,webasyst-shop-script","severity":"info","metadata":{"product":"webasyst-shop-script","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.shop-script.com","powered by webasyst shop-script <a href=\"http://www.shop-script.com/\" style=\"font-weight: normal\">shopping cart software</a>"],"case-insensitive":true}]}]},{"id":"apache-oozie-web-console","info":{"name":"apache-oozie-web-console","author":"cn-kali-team","tags":"detect,tech,apache-oozie-web-console","severity":"info","metadata":{"product":"apache-oozie-web-console","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/oozie\">oozie console","oozie-console"],"case-insensitive":true}]}]},{"id":"fit2cloud-jumpserver-bao-lei-ji","info":{"name":"fit2cloud-jumpserver-堡垒机","author":"cn-kali-team","tags":"detect,tech,fit2cloud-jumpserver-堡垒机","severity":"info","metadata":{"product":"fit2cloud-jumpserver-堡垒机","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"/users/password/forgot/\">","csrfmiddlewaretoken"],"condition":"and","case-insensitive":true}]}]},{"id":"ren-zi-xing-ssl-vpn","info":{"name":"任子行-ssl-vpn","author":"cn-kali-team","tags":"detect,tech,任子行-ssl-vpn","severity":"info","metadata":{"product":"任子行-ssl-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/javascript/validation/sslvpnlogin.js","surfilter"],"condition":"and","case-insensitive":true}]}]},{"id":"lang-chao-fu-wu-qilpmi-guan-li-kou","info":{"name":"浪潮服务器lpmi管理口","author":"cn-kali-team","tags":"detect,tech,浪潮服务器lpmi管理口","severity":"info","metadata":{"product":"浪潮服务器lpmi管理口","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["management system","img/inspur_logo.png"],"condition":"and","case-insensitive":true}]}]},{"id":"leadsec-ssl-vpn","info":{"name":"leadsec-ssl-vpn","author":"cn-kali-team","tags":"detect,tech,leadsec-ssl-vpn","severity":"info","metadata":{"product":"leadsec-ssl-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/ssl/down/usbkey.exe","欢迎使用leadsec网御ssl vpn"],"condition":"and","case-insensitive":true}]}]},{"id":"tableau","info":{"name":"tableau","author":"cn-kali-team","tags":"detect,tech,tableau","severity":"info","metadata":{"product":"tableau","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["783f669ae8336979325ef497a5e43037"]},{"type":"word","words":["src=\"/javascripts/api/tableau-"],"case-insensitive":true}]}]},{"id":"whtzjkj-erp","info":{"name":"whtzjkj-erp","author":"cn-kali-team","tags":"detect,tech,whtzjkj-erp","severity":"info","metadata":{"product":"whtzjkj-erp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/content/home/tzjlog.ico\""],"case-insensitive":true}]}]},{"id":"ecology-oa","info":{"name":"ecology-oa","author":"cn-kali-team","tags":"detect,tech,ecology-oa","severity":"info","metadata":{"product":"ecology-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["41eca7a9245394106a09b2534d8030df"]},{"type":"word","words":["/theme/ecology8/jquery/js/zdialog_wev8.js","/wui/common/css/w7ovfont.css","client/jquery.client_wev8.js","ecology8/lang/weaver_lang_7_wev8.js","typeof poppedwindow"],"case-insensitive":true},{"type":"word","words":["set-cookie: ecology_jsessionid"],"part":"header","case-insensitive":true}]}]},{"id":"fnord","info":{"name":"fnord","author":"cn-kali-team","tags":"detect,tech,fnord","severity":"info","metadata":{"product":"fnord","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: fnord"],"part":"header","case-insensitive":true}]}]},{"id":"new-rock-ip-pbx-management-system","info":{"name":"new-rock-ip-pbx-management-system","author":"cn-kali-team","tags":"detect,tech,new-rock-ip-pbx-management-system","severity":"info","metadata":{"product":"new-rock-ip-pbx-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["var data = formatparams(params.data)"],"case-insensitive":true}]}]},{"id":"sun-java-system-calendar-express","info":{"name":"sun-java-system-calendar-express","author":"cn-kali-team","tags":"detect,tech,sun-java-system-calendar-express","severity":"info","metadata":{"product":"sun-java-system-calendar-express","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"imx/login-logo.gif\" width=\"186\" height=\"79\" alt=\"sun microsystems, inc.\">"],"case-insensitive":true}]}]},{"id":"easycloud","info":{"name":"easycloud","author":"cn-kali-team","tags":"detect,tech,easycloud","severity":"info","metadata":{"product":"easycloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1 class=\"white\">云资源管控平台</h1>"],"case-insensitive":true}]}]},{"id":"mallbuilder","info":{"name":"mallbuilder","author":"cn-kali-team","tags":"detect,tech,mallbuilder","severity":"info","metadata":{"product":"mallbuilder","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by mallbuilde","content=\"mallbuilder"],"case-insensitive":true}]}]},{"id":"rong-zhi-xing-hua-wu-lian-wang-wang-guan","info":{"name":"融智兴华-物联网网关","author":"cn-kali-team","tags":"detect,tech,融智兴华-物联网网关","severity":"info","metadata":{"product":"融智兴华-物联网网关","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["物联网网关-北京融智兴华科技有限公司"],"case-insensitive":true}]}]},{"id":"resourcemanager","info":{"name":"resourcemanager","author":"cn-kali-team","tags":"detect,tech,resourcemanager","severity":"info","metadata":{"product":"resourcemanager","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["this is standby rm. redirecting to the current active rm"],"case-insensitive":true}]}]},{"id":"kyxscms","info":{"name":"kyxscms","author":"cn-kali-team","tags":"detect,tech,kyxscms","severity":"info","metadata":{"product":"kyxscms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<script src=\"/public/static/layer/layer.js\">","goodbook-tabcont","href=\"/template/home/default_web/css/style.css\""],"case-insensitive":true}]}]},{"id":"customer-service-operations-management-system","info":{"name":"customer-service-operations-management-system","author":"cn-kali-team","tags":"detect,tech,customer-service-operations-management-system","severity":"info","metadata":{"product":"customer-service-operations-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div class=\"count-down\">页面在<em>5</em>秒后自动跳转至您有权限的页面</div>"],"case-insensitive":true}]}]},{"id":"drugpak","info":{"name":"drugpak","author":"cn-kali-team","tags":"detect,tech,drugpak","severity":"info","metadata":{"product":"drugpak","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/dplimg/dpstyle.css","powered by drugpak"],"case-insensitive":true}]}]},{"id":"yonyou-u8","info":{"name":"yonyou-u8","author":"cn-kali-team","tags":"detect,tech,yonyou-u8","severity":"info","metadata":{"product":"yonyou-u8","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["getfirstu8accid"],"case-insensitive":true}]}]},{"id":"mashery-proxy","info":{"name":"mashery-proxy","author":"cn-kali-team","tags":"detect,tech,mashery-proxy","severity":"info","metadata":{"product":"mashery-proxy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: mashery proxy"],"part":"header","case-insensitive":true}]}]},{"id":"min-xun-ke-ji-eqmail","info":{"name":"敏讯科技-eqmail","author":"cn-kali-team","tags":"detect,tech,敏讯科技-eqmail","severity":"info","metadata":{"product":"敏讯科技-eqmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"eqmail.ico","powered by eqmail!"],"condition":"and","case-insensitive":true}]}]},{"id":"cisco-ucm","info":{"name":"cisco-ucm","author":"cn-kali-team","tags":"detect,tech,cisco-ucm","severity":"info","metadata":{"product":"cisco-ucm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/ccmadmin/"],"case-insensitive":true}]}]},{"id":"netbox","info":{"name":"netbox","author":"cn-kali-team","tags":"detect,tech,netbox","severity":"info","metadata":{"product":"netbox","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: netbox"],"part":"header","case-insensitive":true}]}]},{"id":"inoerp","info":{"name":"inoerp","author":"cn-kali-team","tags":"detect,tech,inoerp","severity":"info","metadata":{"product":"inoerp","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"ino-body\""],"case-insensitive":true}]}]},{"id":"lenovo-enterprise-network-disk","info":{"name":"lenovo-enterprise-network-disk","author":"cn-kali-team","tags":"detect,tech,lenovo-enterprise-network-disk","severity":"info","metadata":{"product":"lenovo-enterprise-network-disk","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"联想企业网盘android客户端下载\"","client/android/bin/lenovobox.apk"],"case-insensitive":true}]}]},{"id":"chinatiejun-system","info":{"name":"chinatiejun-system","author":"cn-kali-team","tags":"detect,tech,chinatiejun-system","severity":"info","metadata":{"product":"chinatiejun-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["document.domain == \"eqs.jztj.net\""],"case-insensitive":true}]}]},{"id":"alcatel_lucent-omnivista-cirrus","info":{"name":"alcatel_lucent-omnivista-cirrus","author":"cn-kali-team","tags":"detect,tech,alcatel_lucent-omnivista-cirrus","severity":"info","metadata":{"product":"alcatel_lucent-omnivista-cirrus","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/help/en-us/others/ov-cirrus_cookiepolicy.html"],"case-insensitive":true}]}]},{"id":"sdcms-shen-dun-nei-rong-guan-li-xi-tong","info":{"name":"sdcms神盾内容管理系统","author":"cn-kali-team","tags":"detect,tech,sdcms神盾内容管理系统","severity":"info","metadata":{"product":"sdcms神盾内容管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["login","sdcms"],"condition":"and","case-insensitive":true}]}]},{"id":"shop_builder-mallbuilder","info":{"name":"shop_builder-mallbuilder","author":"cn-kali-team","tags":"detect,tech,shop_builder-mallbuilder","severity":"info","metadata":{"product":"shop_builder-mallbuilder","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"mallbuilder","powered by mallbuilder"],"condition":"and","case-insensitive":true}]}]},{"id":"webgrind","info":{"name":"webgrind","author":"cn-kali-team","tags":"detect,tech,webgrind","severity":"info","metadata":{"product":"webgrind","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span id=\"invocation_sum\"></span> different functions called in <span id=\"runtime_sum"],"case-insensitive":true}]}]},{"id":"cisco-imc-supervisor","info":{"name":"cisco-imc-supervisor","author":"cn-kali-team","tags":"detect,tech,cisco-imc-supervisor","severity":"info","metadata":{"product":"cisco-imc-supervisor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cisco imc supervisor","font-family: \"ciscosansthin\""],"case-insensitive":true}]}]},{"id":"orderbook","info":{"name":"orderbook","author":"cn-kali-team","tags":"detect,tech,orderbook","severity":"info","metadata":{"product":"orderbook","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["getorderbook: function"],"case-insensitive":true}]}]},{"id":"tass-smart-auditor","info":{"name":"tass-smart-auditor","author":"cn-kali-team","tags":"detect,tech,tass-smart-auditor","severity":"info","metadata":{"product":"tass-smart-auditor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["北京江南天安科技有限公司","灵志日志审计系统"],"case-insensitive":true}]}]},{"id":"hikvision-bigdatadiagnosis","info":{"name":"hikvision-bigdatadiagnosis","author":"cn-kali-team","tags":"detect,tech,hikvision-bigdatadiagnosis","severity":"info","metadata":{"product":"hikvision-bigdatadiagnosis","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["大数据诊断工具</strong>"],"case-insensitive":true}]}]},{"id":"namazu","info":{"name":"namazu","author":"cn-kali-team","tags":"detect,tech,namazu","severity":"info","metadata":{"product":"namazu","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["http://www.namazu.org/\">namazu"],"case-insensitive":true}]}]},{"id":"fisheye","info":{"name":"fisheye","author":"cn-kali-team","tags":"detect,tech,fisheye","severity":"info","metadata":{"product":"fisheye","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["fisheye ","fisheye-16.ico"],"case-insensitive":true},{"type":"word","words":["set-cookie: fesessionid"],"part":"header","case-insensitive":true}]}]},{"id":"gzqxrh-system","info":{"name":"gzqxrh-system","author":"cn-kali-team","tags":"detect,tech,gzqxrh-system","severity":"info","metadata":{"product":"gzqxrh-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"/scripts/easyui/jquery.easyui.min.js\"","style=\"vertical-align: middle; cursor: pointer","响应键盘的回车事件","广州全息若海信息科技有限公司"],"case-insensitive":true}]}]},{"id":"sangfor-vd","info":{"name":"sangfor-vd","author":"cn-kali-team","tags":"detect,tech,sangfor-vd","severity":"info","metadata":{"product":"sangfor-vd","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["vdi","login_psw.csp"],"condition":"and","case-insensitive":true}]}]},{"id":"oracle-siebel-crm","info":{"name":"oracle-siebel-crm","author":"cn-kali-team","tags":"detect,tech,oracle-siebel-crm","severity":"info","metadata":{"product":"oracle-siebel-crm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onload=\"gotourl('start.swe?swecmd=start')","ot='siebwebmainwindow'>","scripting is used to manage data interactions between the siebel server/web server"],"case-insensitive":true}]}]},{"id":"movable-type","info":{"name":"movable-type","author":"cn-kali-team","tags":"detect,tech,movable-type","severity":"info","metadata":{"product":"movable-type","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"movable type","movable type version","rel=\"generator\">movable type"],"case-insensitive":true}]}]},{"id":"aakuan-attendance-system","info":{"name":"aakuan-attendance-system","author":"cn-kali-team","tags":"detect,tech,aakuan-attendance-system","severity":"info","metadata":{"product":"aakuan-attendance-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["aakuan.cn","href=\"scripts/popmodal.css\""],"case-insensitive":true}]}]},{"id":"ibm-lotus-domino","info":{"name":"ibm-lotus-domino","author":"cn-kali-team","tags":"detect,tech,ibm-lotus-domino","severity":"info","metadata":{"product":"ibm-lotus-domino","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: lotus-domino/"],"part":"header","case-insensitive":true}]}]},{"id":"qi-an-xin-ngsoc","info":{"name":"奇安信-ngsoc","author":"cn-kali-team","tags":"detect,tech,奇安信-ngsoc","severity":"info","metadata":{"product":"奇安信-ngsoc","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ngsoc关联规则引擎","ngsoc日志采集探针"],"condition":"and","case-insensitive":true}]}]},{"id":"qcodo-development-framework","info":{"name":"qcodo-development-framework","author":"cn-kali-team","tags":"detect,tech,qcodo-development-framework","severity":"info","metadata":{"product":"qcodo-development-framework","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<b>qcodo version:","zend engine version:</b>"],"case-insensitive":true}]}]},{"id":"zoommeeting","info":{"name":"zoommeeting","author":"cn-kali-team","tags":"detect,tech,zoommeeting","severity":"info","metadata":{"product":"zoommeeting","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"alert alert-success hideme zoom-newmessage\""],"case-insensitive":true}]}]},{"id":"qibosoft-v7","info":{"name":"qibosoft-v7","author":"cn-kali-team","tags":"detect,tech,qibosoft-v7","severity":"info","metadata":{"product":"qibosoft-v7","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/images/v7/cms.css\">"],"case-insensitive":true}]}]},{"id":"techbridge-cloud-conference","info":{"name":"techbridge-cloud-conference","author":"cn-kali-team","tags":"detect,tech,techbridge-cloud-conference","severity":"info","metadata":{"product":"techbridge-cloud-conference","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/images/web_meeting/tool_bg.jpg","/joinmeeting.js","href=\"http://www.techbridge-inc.com/\" target=\"_blank\"></a></span>"],"case-insensitive":true}]}]},{"id":"netpas-traffic-management-system","info":{"name":"netpas-traffic-management-system","author":"cn-kali-team","tags":"detect,tech,netpas-traffic-management-system","severity":"info","metadata":{"product":"netpas-traffic-management-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["版权所有 <a href=\"http://www.netpas.cc"],"case-insensitive":true}]}]},{"id":"z-blog","info":{"name":"z-blog","author":"cn-kali-team","tags":"detect,tech,z-blog","severity":"info","metadata":{"product":"z-blog","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["generator\" content=\"z-blog"],"case-insensitive":true}]}]},{"id":"citrix-access-gateway","info":{"name":"citrix-access-gateway","author":"cn-kali-team","tags":"detect,tech,citrix-access-gateway","severity":"info","metadata":{"product":"citrix-access-gateway","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["\"/vpn/resources/{lang}\"","/vpn/js/gateway_login_view.js?","class=\"_ctxstxt_netscalergateway\"","class=\"citrixreceiverlogoaboutbox\"","cloud.ottoworkfroce.eu/vpn/index.html","href=\"/vpn/images/accessgateway.ico","receiver/images/common/icon_vpn.ico","vpn/js/lsgateway_login_view.js"],"case-insensitive":true},{"type":"word","words":["location: /vpn/index.html"],"part":"header","case-insensitive":true}]}]},{"id":"sunboxsoft-marketing","info":{"name":"sunboxsoft-marketing","author":"cn-kali-team","tags":"detect,tech,sunboxsoft-marketing","severity":"info","metadata":{"product":"sunboxsoft-marketing","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/sunbox/assets/js/ace.min.js"],"case-insensitive":true}]}]},{"id":"cybozu-garoon","info":{"name":"cybozu-garoon","author":"cn-kali-team","tags":"detect,tech,cybozu-garoon","severity":"info","metadata":{"product":"cybozu-garoon","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: cybozu-ws"],"part":"header","case-insensitive":true}]}]},{"id":"docebolms","info":{"name":"docebolms","author":"cn-kali-team","tags":"detect,tech,docebolms","severity":"info","metadata":{"product":"docebolms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by docebo"],"case-insensitive":true}]}]},{"id":"zhi-yuan-a6-s-xie-tong-guan-li-ruan-jian","info":{"name":"致远a6-s协同管理软件","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"致远a6-s协同管理软件","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["致远a6-s协同管理软件","/seeyon/common/images/a6s/favicon.ico"],"case-insensitive":true}]}]},{"id":"falipu-iot","info":{"name":"falipu-iot","author":"cn-kali-team","tags":"detect,tech,falipu-iot","severity":"info","metadata":{"product":"falipu-iot","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"t1\">安全、稳定、安全</div>"],"case-insensitive":true}]}]},{"id":"join_cheer-report","info":{"name":"join_cheer-report","author":"cn-kali-team","tags":"detect,tech,join_cheer-report","severity":"info","metadata":{"product":"join_cheer-report","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["../netrep","jqci"],"condition":"and","case-insensitive":true}]}]},{"id":"zhong-ke-shu-guang-long-xin-fang-huo-qiang","info":{"name":"中科曙光-龙芯防火墙","author":"cn-kali-team","tags":"detect,tech,中科曙光-龙芯防火墙","severity":"info","metadata":{"product":"中科曙光-龙芯防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"login_main_text\">曙光龙芯防火墙</div>"],"case-insensitive":true}]}]},{"id":"tianyang-bpm-system","info":{"name":"tianyang-bpm-system","author":"cn-kali-team","tags":"detect,tech,tianyang-bpm-system","severity":"info","metadata":{"product":"tianyang-bpm-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["value=\"sinopec.ad\" readonly=\"readonly\" id=\"ddldomains2\""],"case-insensitive":true}]}]},{"id":"lan-dun-fang-huo-qiang","info":{"name":"蓝盾-防火墙","author":"cn-kali-team","tags":"detect,tech,蓝盾-防火墙","severity":"info","metadata":{"product":"蓝盾-防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"banquan\">蓝盾信息安全技术股份有限公司","防火墙"],"condition":"and","case-insensitive":true}]}]},{"id":"zhongshengsoft-crm","info":{"name":"zhongshengsoft-crm","author":"cn-kali-team","tags":"detect,tech,zhongshengsoft-crm","severity":"info","metadata":{"product":"zhongshengsoft-crm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alert(\"餐厅编号不能为空\")","clientutil.isff=!clientutil.isie"],"case-insensitive":true}]}]},{"id":"tian-rong-xin-an-quan-guan-li-xi-tong","info":{"name":"天融信-安全管理系统","author":"cn-kali-team","tags":"detect,tech,天融信-安全管理系统","severity":"info","metadata":{"product":"天融信-安全管理系统","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["天融信安全管理"],"case-insensitive":true}]}]},{"id":"zhe-da-en-te-ke-hu-zi-yuan-guan-li-xi-tong--entercrm","info":{"name":"浙大恩特客户资源管理系统- entercrm","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"浙大恩特客户资源管理系统- entercrm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["entercrm","<title>欢迎使用浙大恩特客户资源管理系统</title>"],"case-insensitive":true}]}]},{"id":"smartbi","info":{"name":"smartbi","author":"cn-kali-team","tags":"detect,tech,smartbi","severity":"info","metadata":{"product":"smartbi","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["gcfutil = jsloader.resolve('smartbi.gcf.gcfutil')"],"case-insensitive":true}]}]},{"id":"conking-schoolgroup","info":{"name":"conking-schoolgroup","author":"cn-kali-team","tags":"detect,tech,conking-schoolgroup","severity":"info","metadata":{"product":"conking-schoolgroup","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["javascripts/float.js","vcxvcxv"],"condition":"and","case-insensitive":true}]}]},{"id":"epoint-oa","info":{"name":"epoint-oa","author":"cn-kali-team","tags":"detect,tech,epoint-oa","severity":"info","metadata":{"product":"epoint-oa","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["type=\"text/javascript\" sourcecontrol=\"epointcommon\" ></script>"],"case-insensitive":true}]}]},{"id":"kingosoft","info":{"name":"kingosoft","author":"cn-kali-team","tags":"detect,tech,kingosoft","severity":"info","metadata":{"product":"kingosoft","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/jkingo.js","kingosoft"],"condition":"and","case-insensitive":true},{"type":"word","words":["setkingoencypt.jsp","青果"],"case-insensitive":true}]}]},{"id":"normstar-hr","info":{"name":"normstar-hr","author":"cn-kali-team","tags":"detect,tech,normstar-hr","severity":"info","metadata":{"product":"normstar-hr","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"blackfont\">诺姆四达人力资源测评咨询服务有限公司"],"case-insensitive":true}]}]},{"id":"hikvision-videocload","info":{"name":"hikvision-videocload","author":"cn-kali-team","tags":"detect,tech,hikvision-videocload","severity":"info","metadata":{"product":"hikvision-videocload","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: face-webs"],"part":"header","case-insensitive":true}]}]},{"id":"netsoft-eida","info":{"name":"netsoft-eida","author":"cn-kali-team","tags":"detect,tech,netsoft-eida","severity":"info","metadata":{"product":"netsoft-eida","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"/images/common/favicon.ico\"","window.location.href = \"/appframe/login_v2/login.jsp\";"],"case-insensitive":true}]}]},{"id":"gate-one","info":{"name":"gate-one","author":"cn-kali-team","tags":"detect,tech,gate-one","severity":"info","metadata":{"product":"gate-one","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"gateone\"></div>","gateone.css","gateone.js"],"condition":"and","case-insensitive":true},{"type":"word","words":["server: gateone"],"part":"header","case-insensitive":true}]}]},{"id":"nsfocus-vpn","info":{"name":"nsfocus-vpn","author":"cn-kali-team","tags":"detect,tech,nsfocus-vpn","severity":"info","metadata":{"product":"nsfocus-vpn","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/logo_login_nsfocus.png"],"case-insensitive":true}]}]},{"id":"oracle-commerce-cloud","info":{"name":"oracle-commerce-cloud","author":"cn-kali-team","tags":"detect,tech,oracle-commerce-cloud","severity":"info","metadata":{"product":"oracle-commerce-cloud","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=\"oracle-cc"],"case-insensitive":true}]}]},{"id":"leadsec-employee-internet-management","info":{"name":"leadsec-employee-internet-management","author":"cn-kali-team","tags":"detect,tech,leadsec-employee-internet-management","severity":"info","metadata":{"product":"leadsec-employee-internet-management","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["asdf</div>-->","txtmac"],"condition":"and","case-insensitive":true}]}]},{"id":"hims-hotel-cloud-computing-service","info":{"name":"hims-hotel-cloud-computing-service","author":"cn-kali-team","tags":"detect,tech,hims-hotel-cloud-computing-service","severity":"info","metadata":{"product":"hims-hotel-cloud-computing-service","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["gb_root_dir","maincontent.css"],"condition":"and","case-insensitive":true},{"type":"word","words":["hims酒店云计算服务"],"case-insensitive":true}]}]},{"id":"emc-documentum-webtop","info":{"name":"emc-documentum-webtop","author":"cn-kali-team","tags":"detect,tech,emc-documentum-webtop","severity":"info","metadata":{"product":"emc-documentum-webtop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/webtop/index.js","/webtop/webtop/theme/documentum/css/webtop.css"],"case-insensitive":true}]}]},{"id":"huawei-esight","info":{"name":"huawei-esight","author":"cn-kali-team","tags":"detect,tech,huawei-esight","severity":"info","metadata":{"product":"huawei-esight","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<body onload=\"gotologin()\">","esight_login_copy_right_font","location.replace('login.action?_='+ new date().gettime());"],"case-insensitive":true}]}]},{"id":"diyou-p2p","info":{"name":"diyou-p2p","author":"cn-kali-team","tags":"detect,tech,diyou-p2p","severity":"info","metadata":{"product":"diyou-p2p","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/js/diyou.js","src=\"/dyweb/dythemes"],"case-insensitive":true}]}]},{"id":"hollysys-mes","info":{"name":"hollysys-mes","author":"cn-kali-team","tags":"detect,tech,hollysys-mes","severity":"info","metadata":{"product":"hollysys-mes","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["resource=\"title_sub\""],"case-insensitive":true}]}]},{"id":"leadshop","info":{"name":"leadshop","author":"cn-kali-team","tags":"detect,tech,leadshop","severity":"info","metadata":{"product":"leadshop","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["34e851938a4a941ce6318d62253892ec","5b0665d0447da9c06646da8f282bf372"]}]}]},{"id":"ewomail","info":{"name":"ewomail","author":"cn-kali-team","tags":"detect,tech,ewomail","severity":"info","metadata":{"product":"ewomail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ewomail.com","邮箱"],"condition":"and","case-insensitive":true}]}]},{"id":"aisino-telecom","info":{"name":"aisino-telecom","author":"cn-kali-team","tags":"detect,tech,aisino-telecom","severity":"info","metadata":{"product":"aisino-telecom","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<font class=\"bottomfont\">航天信息股份有限公司 电信行业版"],"case-insensitive":true}]}]},{"id":"vmware-vrealize","info":{"name":"vmware-vrealize","author":"cn-kali-team","tags":"detect,tech,vmware-vrealize","severity":"info","metadata":{"product":"vmware-vrealize","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["正在重定向到 vrealize operations manager web"],"case-insensitive":true}]}]},{"id":"5ikq","info":{"name":"5ikq","author":"cn-kali-team","tags":"detect,tech,5ikq","severity":"info","metadata":{"product":"5ikq","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"我爱考勤云平台","我爱考勤云平台</span>"],"case-insensitive":true}]}]},{"id":"loyaa-information-automatic-editing-system","info":{"name":"loyaa-information-automatic-editing-system","author":"cn-kali-team","tags":"detect,tech,loyaa-information-automatic-editing-system","severity":"info","metadata":{"product":"loyaa-information-automatic-editing-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/loyaa/common.lib.js"],"case-insensitive":true}]}]},{"id":"todaymail","info":{"name":"todaymail","author":"cn-kali-team","tags":"detect,tech,todaymail","severity":"info","metadata":{"product":"todaymail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["todaymail anti-spam police","todaynic.com,inc."],"condition":"and","case-insensitive":true}]}]},{"id":"lao-ban-you-ju-bossmail","info":{"name":"老板邮局-bossmail","author":"cn-kali-team","tags":"detect,tech,老板邮局-bossmail","severity":"info","metadata":{"product":"老板邮局-bossmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span class=\"footer_t\">powered by bossmail</span>","href=\"http://apps.microsoft.com/windows/zh-cn/app/bossmail/24f4bdb3-1bca-467e-9dd9-15a5d278aec6"],"condition":"and","case-insensitive":true}]}]},{"id":"entercrm","info":{"name":"entercrm","author":"cn-kali-team","tags":"detect,tech,entercrm","severity":"info","metadata":{"product":"entercrm","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["entercrm"],"case-insensitive":true}]}]},{"id":"promisec-system","info":{"name":"promisec-system","author":"cn-kali-team","tags":"detect,tech,promisec-system","severity":"info","metadata":{"product":"promisec-system","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"promisecactivex\""],"case-insensitive":true}]}]},{"id":"chinags-cloudlearning","info":{"name":"chinags-cloudlearning","author":"cn-kali-team","tags":"detect,tech,chinags-cloudlearning","severity":"info","metadata":{"product":"chinags-cloudlearning","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/integrats/gs.sub.systemmanager/dologin/json"],"case-insensitive":true}]}]},{"id":"cisco-ios-xe","info":{"name":"cisco-ios-xe","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"cisco-ios-xe","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["d2962d133fd209cf567d05d1683f3fc1"]},{"type":"word","words":["<script>window.onload=function(){ url ='/webui';window.location.href=url;}</script>","<script>window.onload=function(){ url ='/webui/';window.location.href=url;}</script>"],"case-insensitive":true}]}]},{"id":"vmware-aria-operations-for-logs","info":{"name":"vmware-aria-operations-for-logs","author":"cn-kali-team","tags":"detect,tech,vmware-aria-operations-for-logs","severity":"info","metadata":{"product":"vmware-aria-operations-for-logs","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>vrealize log insight -"],"case-insensitive":true}]}]},{"id":"263-meeting","info":{"name":"263-meeting","author":"cn-kali-team","tags":"detect,tech,263-meeting","severity":"info","metadata":{"product":"263-meeting","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<frame src=\"/jsp/conference/meetinglist.jsp\" name=\"mainframe\"/>"],"case-insensitive":true}]}]},{"id":"kong","info":{"name":"kong","author":"cn-kali-team","tags":"detect,tech,kong","severity":"info","metadata":{"product":"kong","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: kong","x-kong-response-latency:","via: kong"],"part":"header","case-insensitive":true}]}]},{"id":"adimoney","info":{"name":"adimoney","author":"cn-kali-team","tags":"detect,tech,adimoney","severity":"info","metadata":{"product":"adimoney","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"/img/logo.png\" alt=\"adimoney\"/>","content=\"adimoney.com mobile advertisement network. "],"case-insensitive":true}]}]},{"id":"ecology-fan-weie-office","info":{"name":"ecology泛微e-office","author":"cn-kali-team","tags":"detect,tech,ecology泛微e-office","severity":"info","metadata":{"product":"ecology泛微e-office","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dynamicode","isignatureportal"],"condition":"and","case-insensitive":true},{"type":"word","words":["/general/login/view//images/updateload.gif","szfeatures"],"case-insensitive":true}]}]},{"id":"easypanel","info":{"name":"easypanel","author":"cn-kali-team","tags":"detect,tech,easypanel","severity":"info","metadata":{"product":"easypanel","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/vhost/view/default/style/login.css"],"case-insensitive":true}]}]},{"id":"forsun-ke-dun-an-quan-wang-guan-kong-zhi-tai","info":{"name":"forsun-科盾安全网关控制台","author":"cn-kali-team","tags":"detect,tech,forsun-科盾安全网关控制台","severity":"info","metadata":{"product":"forsun-科盾安全网关控制台","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["科盾网关控制台"],"case-insensitive":true}]}]},{"id":"billingtesttool","info":{"name":"billingtesttool","author":"cn-kali-team","tags":"detect,tech,billingtesttool","severity":"info","metadata":{"product":"billingtesttool","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href:'/billtool/querysum'"],"case-insensitive":true}]}]},{"id":"phpremoteview","info":{"name":"phpremoteview","author":"cn-kali-team","tags":"detect,tech,phpremoteview","severity":"info","metadata":{"product":"phpremoteview","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["style='font: 8pt verdana'>phpremoteview"],"case-insensitive":true}]}]},{"id":"an-heng-xin-xi-fang-huo-qiang","info":{"name":"安恒信息-防火墙","author":"cn-kali-team","tags":"detect,tech,安恒信息-防火墙","severity":"info","metadata":{"product":"安恒信息-防火墙","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dbapp security","scripts/web-common.js"],"condition":"and","case-insensitive":true}]}]},{"id":"casdoor","info":{"name":"casdoor","author":"cn-kali-team","tags":"detect,tech,casdoor","severity":"info","metadata":{"product":"casdoor","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>casdoor","casdoor/manifest.json"],"condition":"and","case-insensitive":true}]}]},{"id":"rengine","info":{"name":"rengine","author":"cn-kali-team","tags":"detect,tech,rengine","severity":"info","metadata":{"product":"rengine","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[">login to rengine.</h5>"],"case-insensitive":true}]}]},{"id":"yu-shi-vs-isc5000-e","info":{"name":"宇视vs-isc5000-e","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"宇视vs-isc5000-e","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: page/login/"],"part":"header","case-insensitive":true}]}]},{"id":"adobe-golive","info":{"name":"adobe-golive","author":"cn-kali-team","tags":"detect,tech,adobe-golive","severity":"info","metadata":{"product":"adobe-golive","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["generator\" content=\"adobe golive"],"case-insensitive":true}]}]},{"id":"dnatools-dnalims","info":{"name":"dnatools-dnalims","author":"cn-kali-team","tags":"detect,tech,dnatools-dnalims","severity":"info","metadata":{"product":"dnatools-dnalims","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cgi-bin/dna/password.cgi","dnalims"],"condition":"and","case-insensitive":true}]}]},{"id":"ke-xin-ruan-jian-kxmail","info":{"name":"科信软件-kxmail","author":"cn-kali-team","tags":"detect,tech,科信软件-kxmail","severity":"info","metadata":{"product":"科信软件-kxmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.kxmail.net","科信邮件系统"],"condition":"and","case-insensitive":true}]}]},{"id":"startbootstrap-product","info":{"name":"startbootstrap-product","author":"cn-kali-team","tags":"detect,tech,startbootstrap-product","severity":"info","metadata":{"product":"startbootstrap-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"img/portfolio/thumbnails/4.jpg\"","we've got what you need!</h2>"],"case-insensitive":true}]}]},{"id":"vam-product","info":{"name":"vam-product","author":"cn-kali-team","tags":"detect,tech,vam-product","severity":"info","metadata":{"product":"vam-product","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"https://virtualairlinesmanager.net/\">virtual airlines manager","id=\"mymodallabel\">login vam system","powered by virtual airlines manager","src=\"js/vam.js\""],"case-insensitive":true}]}]},{"id":"nginx-webui","info":{"name":"nginx-webui","author":"cn-kali-team","tags":"detect,tech,nginx-webui","severity":"info","metadata":{"product":"nginx-webui","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>nginxwebui</title>"],"case-insensitive":true}]}]},{"id":"label_studio","info":{"name":"label_studio","author":"cn-kali-team","tags":"detect,tech,label_studio","severity":"info","metadata":{"product":"label_studio","shodan-query":["http.favicon.hash:-1649949475"],"vendor":"humansignal","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1649949475"]}]}]},{"id":"mautic","info":{"name":"mautic","author":"cn-kali-team","tags":"detect,tech,mautic","severity":"info","metadata":{"fofa-query":["title=\"mautic\""],"google-query":["intitle:\"mautic\""],"product":"mautic","shodan-query":["title:\"mautic\"","http.title:\"mautic\""],"vendor":"acquia","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>mautic.*?</title>"]}]}]},{"id":"bitrix24","info":{"name":"bitrix24","author":"cn-kali-team","tags":"detect,tech,bitrix24","severity":"info","metadata":{"fofa-query":["body=\"/bitrix/\""],"product":"bitrix24","shodan-query":["html:\"/bitrix/\"","http.html:\"/bitrix/\""],"vendor":"bitrix24","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/bitrix/"],"case-insensitive":true}]}]},{"id":"dse855","info":{"name":"dse855","author":"cn-kali-team","tags":"detect,tech,dse855","severity":"info","metadata":{"fofa-query":["deep sea electronics"],"product":"dse855","vendor":"deep sea electronics","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["deep sea electronics"],"case-insensitive":true}]}]},{"id":"dataease","info":{"name":"dataease","author":"cn-kali-team","tags":"detect,tech,dataease","severity":"info","metadata":{"fofa-query":["body=\"dataease\""],"product":"dataease","shodan-query":["http.html:\"dataease\""],"vendor":"dataease","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dataease"],"case-insensitive":true}]}]},{"id":"rconfig","info":{"name":"rconfig","author":"cn-kali-team","tags":"detect,tech,rconfig","severity":"info","metadata":{"product":"rconfig","vendor":"rconfig","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["rconfiglogo"],"case-insensitive":true}]}]},{"id":"wl-wn530hg4_firmware","info":{"name":"wl-wn530hg4_firmware","author":"cn-kali-team","tags":"detect,tech,wl-wn530hg4_firmware","severity":"info","metadata":{"fofa-query":["body=\"wn530hg4\"","title=\"wi-fi app login\""],"google-query":["intitle:\"wi-fi app login\""],"product":"wl-wn530hg4_firmware","shodan-query":["http.title:\"wi-fi app login\"","http.html:\"wn530hg4\""],"vendor":"wavlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wn530hg4"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>wi-fi app login.*?</title>"]}]}]},{"id":"wn575a4","info":{"name":"wn575a4","author":"cn-kali-team","tags":"detect,tech,wn575a4","severity":"info","metadata":{"product":"wn575a4","shodan-query":["http.title:\"wi-fi app login\""],"vendor":"wavlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>wi-fi app login.*?</title>"]}]}]},{"id":"wl-wn533a8_firmware","info":{"name":"wl-wn533a8_firmware","author":"cn-kali-team","tags":"detect,tech,wl-wn533a8_firmware","severity":"info","metadata":{"fofa-query":["body=\"wn533a8\""],"product":"wl-wn533a8_firmware","shodan-query":["html:\"wn533a8\""],"vendor":"wavlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wn533a8"],"case-insensitive":true}]}]},{"id":"wl-wn531g3_firmware","info":{"name":"wl-wn531g3_firmware","author":"cn-kali-team","tags":"detect,tech,wl-wn531g3_firmware","severity":"info","metadata":{"fofa-query":["body=\"ac1200\" && body=\"wavlink\""],"product":"wl-wn531g3_firmware","vendor":"wavlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ac1200","wavlink"],"case-insensitive":true}]}]},{"id":"wn535g3_firmware","info":{"name":"wn535g3_firmware","author":"cn-kali-team","tags":"detect,tech,wn535g3_firmware","severity":"info","metadata":{"fofa-query":["title=\"wi-fi app login\"","body=\"wavlink\""],"google-query":["intitle:\"wi-fi app login\""],"product":"wn535g3_firmware","shodan-query":["http.html:\"wavlink\"","http.title:\"wi-fi app login\""],"vendor":"wavlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wavlink"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>wi-fi app login.*?</title>"]}]}]},{"id":"wn530h4_firmware","info":{"name":"wn530h4_firmware","author":"cn-kali-team","tags":"detect,tech,wn530h4_firmware","severity":"info","metadata":{"fofa-query":["body=\"wavlink\""],"product":"wn530h4_firmware","shodan-query":["http.html:\"wavlink\""],"vendor":"wavlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wavlink"],"case-insensitive":true}]}]},{"id":"wn579x3_firmware","info":{"name":"wn579x3_firmware","author":"cn-kali-team","tags":"detect,tech,wn579x3_firmware","severity":"info","metadata":{"fofa-query":["body=\"wavlink\""],"product":"wn579x3_firmware","shodan-query":["http.html:\"wavlink\""],"vendor":"wavlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wavlink"],"case-insensitive":true}]}]},{"id":"wl-wn535k2","info":{"name":"wl-wn535k2","author":"cn-kali-team","tags":"detect,tech,wl-wn535k2","severity":"info","metadata":{"product":"wl-wn535k2","shodan-query":["http.title:\"wi-fi app login\""],"vendor":"wavlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>wi-fi app login.*?</title>"]}]}]},{"id":"wl-wn535k2_firmware","info":{"name":"wl-wn535k2_firmware","author":"cn-kali-team","tags":"detect,tech,wl-wn535k2_firmware","severity":"info","metadata":{"fofa-query":["title=\"wi-fi app login\""],"google-query":["intitle:\"wi-fi app login\""],"product":"wl-wn535k2_firmware","shodan-query":["http.title:\"wi-fi app login\""],"vendor":"wavlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>wi-fi app login.*?</title>"]}]}]},{"id":"wn533a8_firmware","info":{"name":"wn533a8_firmware","author":"cn-kali-team","tags":"detect,tech,wn533a8_firmware","severity":"info","metadata":{"fofa-query":["title=\"wi-fi app login\"","body=\"wavlink\""],"google-query":["intitle:\"wi-fi app login\""],"product":"wn533a8_firmware","shodan-query":["http.title:\"wi-fi app login\"","http.html:\"wavlink\""],"vendor":"wavlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wavlink"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>wi-fi app login.*?</title>"]}]}]},{"id":"wl-wn530h4_firmware","info":{"name":"wl-wn530h4_firmware","author":"cn-kali-team","tags":"detect,tech,wl-wn530h4_firmware","severity":"info","metadata":{"fofa-query":["icon_hash=-1350437236"],"product":"wl-wn530h4_firmware","shodan-query":["http.favicon.hash:-1350437236"],"vendor":"wavlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1350437236"]}]}]},{"id":"wn530hg4_firmware","info":{"name":"wn530hg4_firmware","author":"cn-kali-team","tags":"detect,tech,wn530hg4_firmware","severity":"info","metadata":{"fofa-query":["body=\"wavlink\""],"product":"wn530hg4_firmware","shodan-query":["http.html:\"wavlink\""],"vendor":"wavlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wavlink"],"case-insensitive":true}]}]},{"id":"gitea","info":{"name":"gitea","author":"cn-kali-team","tags":"detect,tech,gitea","severity":"info","metadata":{"product":"gitea","vendor":"gitea","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"gitea - git with a cup of tea\""],"case-insensitive":true},{"type":"word","words":["set-cookie: i_like_gitea"],"part":"header","case-insensitive":true}]}]},{"id":"cluster_control","info":{"name":"cluster_control","author":"cn-kali-team","tags":"detect,tech,cluster_control","severity":"info","metadata":{"fofa-query":["icon_hash=\"160707013\" || icon_hash=\"-1815707560\""],"product":"cluster_control","vendor":"severalnines","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1815707560","160707013"]}]}]},{"id":"ollama","info":{"name":"ollama","author":"cn-kali-team","tags":"detect,tech,ollama","severity":"info","metadata":{"product":"ollama","shodan-query":["ollama"],"vendor":"ollama","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ollama"],"case-insensitive":true}]}]},{"id":"crywolf","info":{"name":"crywolf","author":"cn-kali-team","tags":"detect,tech,crywolf","severity":"info","metadata":{"fofa-query":["false alarm reduction website"],"product":"crywolf","vendor":"centralsquare","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["false alarm reduction website"],"case-insensitive":true}]}]},{"id":"o2oa","info":{"name":"o2oa","author":"cn-kali-team","tags":"detect,tech,o2oa","severity":"info","metadata":{"product":"o2oa","shodan-query":["title==\"o2oa\""],"vendor":"zoneland","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["title==\"o2oa"],"case-insensitive":true}]}]},{"id":"mindsdb","info":{"name":"mindsdb","author":"cn-kali-team","tags":"detect,tech,mindsdb","severity":"info","metadata":{"product":"mindsdb","shodan-query":["title:\"mindsdb\""],"vendor":"mindsdb","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>mindsdb.*?</title>"]}]}]},{"id":"eshop-_ecommerce-_store_website","info":{"name":"eshop_-_ecommerce_-_store_website","author":"cn-kali-team","tags":"detect,tech,eshop_-_ecommerce_-_store_website","severity":"info","metadata":{"fofa-query":["body=\"eshop - multipurpose ecommerce\""],"product":"eshop_-_ecommerce_-_store_website","shodan-query":["http.html:\"eshop - multipurpose ecommerce\""],"vendor":"wrteam","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["eshop - multipurpose ecommerce"],"case-insensitive":true}]}]},{"id":"websvn","info":{"name":"websvn","author":"cn-kali-team","tags":"detect,tech,websvn","severity":"info","metadata":{"product":"websvn","vendor":"websvn","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["websvn","subversion"],"condition":"and","case-insensitive":true}]}]},{"id":"smart_s210_firmware","info":{"name":"smart_s210_firmware","author":"cn-kali-team","tags":"detect,tech,smart_s210_firmware","severity":"info","metadata":{"fofa-query":["body=\"smart管理平台\""],"product":"smart_s210_firmware","vendor":"byzoro","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["smart管理平台"],"case-insensitive":true}]}]},{"id":"caseaware","info":{"name":"caseaware","author":"cn-kali-team","tags":"detect,tech,caseaware","severity":"info","metadata":{"fofa-query":["title=\"caseaware\""],"product":"caseaware","vendor":"a360inc","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>caseaware.*?</title>"]}]}]},{"id":"opencats","info":{"name":"opencats","author":"cn-kali-team","tags":"detect,tech,opencats","severity":"info","metadata":{"fofa-query":["title=\"opencats\""],"google-query":["intitle:\"opencats\""],"product":"opencats","shodan-query":["title:\"opencats\"","http.title:\"opencats\""],"vendor":"opencats","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>opencats.*?</title>"]}]}]},{"id":"74cms","info":{"name":"74cms","author":"cn-kali-team","tags":"detect,tech,74cms","severity":"info","metadata":{"product":"74cms","vendor":"74cms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/templates/default/css/common.css","content=\"74cms.com","content=\"74cms.com\"","content=\"骑士cms","powered by <a href=\"http://www.74cms.com/\"","selectjobscategory"],"case-insensitive":true}]}]},{"id":"frigate","info":{"name":"frigate","author":"cn-kali-team","tags":"detect,tech,frigate","severity":"info","metadata":{"fofa-query":["title=\"frigate\""],"google-query":["intitle:\"frigate\""],"product":"frigate","shodan-query":["title:\"frigate\"","http.title:\"frigate\""],"vendor":"frigate","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>frigate.*?</title>"]}]}]},{"id":"jorani","info":{"name":"jorani","author":"cn-kali-team","tags":"detect,tech,jorani","severity":"info","metadata":{"fofa-query":["icon_hash=-2032163853"],"product":"jorani","shodan-query":["http.favicon.hash:-2032163853"],"vendor":"jorani","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-2032163853"]}]}]},{"id":"wnr614","info":{"name":"wnr614","author":"cn-kali-team","tags":"detect,tech,wnr614","severity":"info","metadata":{"fofa-query":["title=\"netgear wnr614\""],"product":"wnr614","shodan-query":["http.title:\"wnr614\""],"vendor":"netgear","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>netgear wnr614.*?</title>","(?mi)<title[^>]*>wnr614.*?</title>"]}]}]},{"id":"dgn2200","info":{"name":"dgn2200","author":"cn-kali-team","tags":"detect,tech,dgn2200","severity":"info","metadata":{"fofa-query":["title=\"netgear dgn2200\""],"product":"dgn2200","shodan-query":["http.title:\"dgn2200\""],"vendor":"netgear","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>dgn2200.*?</title>","(?mi)<title[^>]*>netgear dgn2200.*?</title>"]}]}]},{"id":"netgear-r6850-router","info":{"name":"netgear r6850 router","author":"cn-kali-team","tags":"detect,tech,netgear r6850 router","severity":"info","metadata":{"fofa-query":["app=\"netgear\" && \"r6850\""],"product":"netgear r6850 router","vendor":"netgear","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["r6850"],"case-insensitive":true}]}]},{"id":"r6850_firmware","info":{"name":"r6850_firmware","author":"cn-kali-team","tags":"detect,tech,r6850_firmware","severity":"info","metadata":{"fofa-query":["app=\"netgear\" && \"r6850\""],"product":"r6850_firmware","vendor":"netgear","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["r6850"],"case-insensitive":true}]}]},{"id":"netgear","info":{"name":"netgear","author":"cn-kali-team","tags":"detect,tech,netgear","severity":"info","metadata":{"product":"netgear","vendor":"netgear","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["gigabit dual wan ssl vpn firewall fvs336gv3</div>"],"case-insensitive":true}]}]},{"id":"wn604","info":{"name":"wn604","author":"cn-kali-team","tags":"detect,tech,wn604","severity":"info","metadata":{"fofa-query":["title==\"netgear\""],"product":"wn604","vendor":"netgear","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>=\"netgear.*?</title>"]}]}]},{"id":"readynas_surveillance","info":{"name":"readynas_surveillance","author":"cn-kali-team","tags":"detect,tech,readynas_surveillance","severity":"info","metadata":{"fofa-query":["app=\"nuuo-nvrmini\" || app=\"nuuo-nvr\" || title=\"network video recorder login\""],"product":"readynas_surveillance","vendor":"netgear","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>network video recorder login.*?</title>"]}]}]},{"id":"timetrax","info":{"name":"timetrax","author":"cn-kali-team","tags":"detect,tech,timetrax","severity":"info","metadata":{"fofa-query":["icon_hash=\"-661694518\""],"product":"timetrax","vendor":"efrotech","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-661694518"]}]}]},{"id":"discuz!","info":{"name":"discuz!","author":"cn-kali-team","tags":"detect,tech,discuz!","severity":"info","metadata":{"fofa-query":["title=\"discuz!\""],"product":"discuz!","shodan-query":["title:\"discuz!\""],"vendor":"comsenz","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>discuz!.*?</title>"]}]}]},{"id":"quixplorer","info":{"name":"quixplorer","author":"cn-kali-team","tags":"detect,tech,quixplorer","severity":"info","metadata":{"fofa-query":["title=\"my download server\""],"google-query":["intitle:\"my download server\""],"product":"quixplorer","shodan-query":["http.title:\"my download server\""],"vendor":"quixplorer_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>my download server.*?</title>"]}]}]},{"id":"ips_community_suite","info":{"name":"ips_community_suite","author":"cn-kali-team","tags":"detect,tech,ips_community_suite","severity":"info","metadata":{"fofa-query":["body=\"invision community\""],"product":"ips_community_suite","shodan-query":["html:\"invision community\""],"vendor":"invision","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["invision community"],"case-insensitive":true}]}]},{"id":"hwl-2511-ss_firmware","info":{"name":"hwl-2511-ss_firmware","author":"cn-kali-team","tags":"detect,tech,hwl-2511-ss_firmware","severity":"info","metadata":{"fofa-query":["title=\"index\" && header=\"lighttpd/1.4.30\""],"product":"hwl-2511-ss_firmware","vendor":"hytec","verified":true,"zoomeye-query":["app:\"hytec inter hwl-2511-ss\""]}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*> header=\"lighttpd/1.4.30.*?</title>","(?mi)<title[^>]*>index\" .*?</title>"]}]}]},{"id":"opendreambox","info":{"name":"opendreambox","author":"cn-kali-team","tags":"detect,tech,opendreambox","severity":"info","metadata":{"fofa-query":["title=\"dreambox webcontrol\""],"google-query":["intitle:\"dreambox webcontrol\""],"product":"opendreambox","shodan-query":["title:\"dreambox webcontrol\"","http.title:\"dreambox webcontrol\""],"vendor":"dreambox","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>dreambox webcontrol.*?</title>"]}]}]},{"id":"jasperreports_library","info":{"name":"jasperreports_library","author":"cn-kali-team","tags":"detect,tech,jasperreports_library","severity":"info","metadata":{"fofa-query":["body=\"jasperserver-pro\""],"product":"jasperreports_library","shodan-query":["html:\"jasperserver-pro\"","http.html:\"jasperserver-pro\""],"vendor":"tibco","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jasperserver-pro"],"case-insensitive":true}]}]},{"id":"danswer","info":{"name":"danswer","author":"cn-kali-team","tags":"detect,tech,danswer","severity":"info","metadata":{"fofa-query":["icon_hash=\"484766002\""],"product":"danswer","vendor":"danswer-ai","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["484766002"]}]}]},{"id":"obsidian","info":{"name":"obsidian","author":"cn-kali-team","tags":"detect,tech,obsidian","severity":"info","metadata":{"fofa-query":["title=\"plesk obsidian\"","body=\"plesk obsidian\""],"google-query":["intitle:\"plesk obsidian\""],"product":"obsidian","shodan-query":["title:\"plesk obsidian\"","http.html:\"plesk obsidian\"","http.title:\"plesk obsidian\""],"vendor":"plesk","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["plesk obsidian"],"case-insensitive":true}]}]},{"id":"framework","info":{"name":"framework","author":"cn-kali-team","tags":"detect,tech,framework","severity":"info","metadata":{"fofa-query":["body=\"buildassetsdir\" && body=\"__nuxt\""],"product":"framework","shodan-query":["html:\"buildassetsdir\" \"nuxt\""],"vendor":"nuxt","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["__nuxt","buildassetsdir","buildassetsdir\" \"nuxt"],"case-insensitive":true}]}]},{"id":"ritecms","info":{"name":"ritecms","author":"cn-kali-team","tags":"detect,tech,ritecms","severity":"info","metadata":{"fofa-query":["title=\"ritecms\""],"product":"ritecms","vendor":"ritecms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>ritecms.*?</title>"]}]}]},{"id":"zte","info":{"name":"zte","author":"cn-kali-team","tags":"detect,tech,zte","severity":"info","metadata":{"product":"zte","shodan-query":["title:\"f660\""],"vendor":"zte","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>f660.*?</title>"]}]}]},{"id":"yii","info":{"name":"yii","author":"cn-kali-team","tags":"detect,tech,yii","severity":"info","metadata":{"fofa-query":["title=\"yii\""],"product":"yii","shodan-query":["title:\"yii\""],"vendor":"yiisoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>yii.*?</title>"]}]}]},{"id":"ninja-tables","info":{"name":"ninja-tables","author":"cn-kali-team","tags":"detect,tech,ninja-tables","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/ninja-tables/\""],"product":"ninja-tables","vendor":"wpxpo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/ninja-tables/"],"case-insensitive":true}]}]},{"id":"b2evolution","info":{"name":"b2evolution","author":"cn-kali-team","tags":"detect,tech,b2evolution","severity":"info","metadata":{"product":"b2evolution","vendor":"b2evolution","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/powered-by-b2evolution-150t.gif","content=\"b2evolution","powered by b2evolution"],"case-insensitive":true}]}]},{"id":"projectsend","info":{"name":"projectsend","author":"cn-kali-team","tags":"detect,tech,projectsend","severity":"info","metadata":{"fofa-query":["body=\"projectsend\"","body=\"projectsend setup\"","body=provided by projectsend"],"google-query":["intext:provided by projectsend"],"product":"projectsend","shodan-query":["http.html:\"projectsend\"","http.html:\"projectsend setup\"","http.html:\"provided by projectsend\""],"vendor":"projectsend","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["projectsend","projectsend setup","provided by projectsend"],"case-insensitive":true}]}]},{"id":"citrix_storefront","info":{"name":"citrix_storefront","author":"cn-kali-team","tags":"detect,tech,citrix_storefront","severity":"info","metadata":{"fofa-query":["body=\"/citrix/storeweb\""],"product":"citrix_storefront","shodan-query":["html:\"/citrix/storeweb\"","http.html:\"/citrix/storeweb\""],"vendor":"cloud","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/citrix/storeweb"],"case-insensitive":true}]}]},{"id":"dogtagpki","info":{"name":"dogtagpki","author":"cn-kali-team","tags":"detect,tech,dogtagpki","severity":"info","metadata":{"fofa-query":["title=\"identity management\"","title=\"identity management\" html:\"freeipa\""],"google-query":["intitle:\"identity management\" html:\"freeipa\""],"product":"dogtagpki","shodan-query":["title:\"identity management\" html:\"freeipa\"","http.title:\"identity management\" html:\"freeipa\""],"vendor":"dogtagpki","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>identity management\" html:\"freeipa.*?</title>","(?mi)<title[^>]*>identity management.*?</title>"]}]}]},{"id":"gogs","info":{"name":"gogs","author":"cn-kali-team","tags":"detect,tech,gogs","severity":"info","metadata":{"fofa-query":["title=\"sign in - gogs\""],"google-query":["intitle:\"sign in - gogs\""],"product":"gogs","shodan-query":["title:\"sign in - gogs\"","http.title:\"sign in - gogs\"","cpe:\"cpe:2.3:a:gogs:gogs\""],"vendor":"gogits","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>sign in - gogs.*?</title>"]}]}]},{"id":"cmg_suite","info":{"name":"cmg_suite","author":"cn-kali-team","tags":"detect,tech,cmg_suite","severity":"info","metadata":{"fofa-query":["body=\"mitel networks\""],"product":"cmg_suite","shodan-query":["http.html:\"mitel networks\""],"vendor":"mitel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mitel networks"],"case-insensitive":true}]}]},{"id":"micollab","info":{"name":"micollab","author":"cn-kali-team","tags":"detect,tech,micollab","severity":"info","metadata":{"product":"micollab","shodan-query":["html:\"mitel\" html:\"micollab\""],"vendor":"mitel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mitel\" html:\"micollab"],"case-insensitive":true}]}]},{"id":"micollab_audio,_web_&_video_conferencing","info":{"name":"micollab_audio,_web_&_video_conferencing","author":"cn-kali-team","tags":"detect,tech,micollab_audio,_web_&_video_conferencing","severity":"info","metadata":{"fofa-query":["body=\"mitel\" html:\"micollab\""],"product":"micollab_audio,_web_&_video_conferencing","shodan-query":["html:\"mitel\" html:\"micollab\"","http.html:\"mitel\" html:\"micollab\""],"vendor":"mitel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mitel\" html:\"micollab"],"case-insensitive":true}]}]},{"id":"shoretel","info":{"name":"shoretel","author":"cn-kali-team","tags":"detect,tech,shoretel","severity":"info","metadata":{"fofa-query":["body=\"shoretel\" && icon_hash=\"268280373\""],"product":"shoretel","vendor":"mitel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["shoretel"],"case-insensitive":true},{"type":"favicon","hash":["268280373"]}]}]},{"id":"senayan_library_management_system","info":{"name":"senayan_library_management_system","author":"cn-kali-team","tags":"detect,tech,senayan_library_management_system","severity":"info","metadata":{"product":"senayan_library_management_system","shodan-query":["http.html:\"slims\""],"vendor":"slims","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["slims"],"case-insensitive":true}]}]},{"id":"flowise","info":{"name":"flowise","author":"cn-kali-team","tags":"detect,tech,flowise","severity":"info","metadata":{"fofa-query":["title=\"flowise\""],"product":"flowise","shodan-query":["title:\"flowise\""],"vendor":"flowiseai","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>flowise.*?</title>"]}]}]},{"id":"vendure","info":{"name":"vendure","author":"cn-kali-team","tags":"detect,tech,vendure","severity":"info","metadata":{"fofa-query":["vendure"],"product":"vendure","vendor":"vendure-ecommerce","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["vendure"],"case-insensitive":true}]}]},{"id":"webpanel","info":{"name":"webpanel","author":"cn-kali-team","tags":"detect,tech,webpanel","severity":"info","metadata":{"fofa-query":["title=\"login | control webpanel\""],"google-query":["intitle:\"login | control webpanel\""],"product":"webpanel","shodan-query":["http.title:\"login | control webpanel\""],"vendor":"control-webpanel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>login .*?</title>"]}]}]},{"id":"huemagic","info":{"name":"huemagic","author":"cn-kali-team","tags":"detect,tech,huemagic","severity":"info","metadata":{"fofa-query":["title=\"node-red\""],"google-query":["intitle:\"node-red\""],"product":"huemagic","shodan-query":["title:\"node-red\"","http.title:\"node-red\""],"vendor":"dgtl","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>node-red.*?</title>"]}]}]},{"id":"pypiserver","info":{"name":"pypiserver","author":"cn-kali-team","tags":"detect,tech,pypiserver","severity":"info","metadata":{"fofa-query":["body=\"pypiserver\""],"product":"pypiserver","shodan-query":["html:\"pypiserver\"","http.html:\"pypiserver\""],"vendor":"python","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pypiserver"],"case-insensitive":true}]}]},{"id":"vec40g","info":{"name":"vec40g","author":"cn-kali-team","tags":"detect,tech,vec40g","severity":"info","metadata":{"fofa-query":["title=\"飞鱼星企业级智能上网行为管理系统\""],"product":"vec40g","vendor":"feiyuxing","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>飞鱼星企业级智能上网行为管理系统.*?</title>"]}]}]},{"id":"vicidial","info":{"name":"vicidial","author":"cn-kali-team","tags":"detect,tech,vicidial","severity":"info","metadata":{"fofa-query":["icon_hash=\"1375401192\""],"product":"vicidial","vendor":"vicidial","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1375401192"]},{"type":"word","words":["url=/vicidial/welcome.php"],"case-insensitive":true}]}]},{"id":"sugarcrm","info":{"name":"sugarcrm","author":"cn-kali-team","tags":"detect,tech,sugarcrm","severity":"info","metadata":{"product":"sugarcrm","vendor":"sugarcrm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\" javascript:void window.open('http://support.sugarcrm.com')\">support</a>","<img style='margin-top: 2px' border='0' width='106' height='23' src='include/images/poweredby_sugarcrm.png' alt='powered by sugarcrm'>","<script>var module_sugar_grp1 = 'users';</script><script>var action_sugar_grp1 = 'login';</script><script>jscal_today"],"case-insensitive":true}]}]},{"id":"linx_sphere","info":{"name":"linx_sphere","author":"cn-kali-team","tags":"detect,tech,linx_sphere","severity":"info","metadata":{"fofa-query":["scs.web.server.spi/1.0"],"product":"linx_sphere","vendor":"gmaolinx","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["scs.web.server.spi/1.0"],"case-insensitive":true}]}]},{"id":"ispy","info":{"name":"ispy","author":"cn-kali-team","tags":"detect,tech,ispy","severity":"info","metadata":{"fofa-query":["body=\"ispy is running\""],"product":"ispy","shodan-query":["http.html:\"ispy is running\""],"vendor":"ispyconnect","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ispy is running"],"case-insensitive":true}]}]},{"id":"blogengine.net","info":{"name":"blogengine.net","author":"cn-kali-team","tags":"detect,tech,blogengine.net","severity":"info","metadata":{"fofa-query":["body=\"blogengine.net\""],"product":"blogengine.net","shodan-query":["http.html:\"blogengine.net\""],"vendor":"dotnetblogengine","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["blogengine.net"],"case-insensitive":true}]}]},{"id":"a2004","info":{"name":"a2004","author":"cn-kali-team","tags":"detect,tech,a2004","severity":"info","metadata":{"fofa-query":["title=\"iptime\""],"product":"a2004","shodan-query":["http.title:\"iptime\""],"vendor":"iptime","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>iptime.*?</title>"]}]}]},{"id":"adobe-magento","info":{"name":"adobe-magento","author":"cn-kali-team","tags":"detect,tech,adobe-magento","severity":"info","metadata":{"product":"adobe-magento","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/skin/frontend/","blank_img"],"case-insensitive":true}]}]},{"id":"experience_manager","info":{"name":"experience_manager","author":"cn-kali-team","tags":"detect,tech,experience_manager","severity":"info","metadata":{"fofa-query":["title=\"aem sign in\""],"google-query":["intitle:\"aem sign in\""],"product":"experience_manager","shodan-query":["http.title:\"aem sign in\"","http.component:\"adobe experience manager\"","cpe:\"cpe:2.3:a:adobe:experience_manager\""],"vendor":"adobe","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>aem sign in.*?</title>"]}]}]},{"id":"commerce","info":{"name":"commerce","author":"cn-kali-team","tags":"detect,tech,commerce","severity":"info","metadata":{"product":"commerce","shodan-query":["x-magento-tags"],"vendor":"adobe","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-magento-tags"],"case-insensitive":true}]}]},{"id":"coldfusion","info":{"name":"coldfusion","author":"cn-kali-team","tags":"detect,tech,coldfusion","severity":"info","metadata":{"fofa-query":["app=\"adobe-coldfusion\"","title=\"coldfusion administrator login\""],"google-query":["intitle:\"coldfusion administrator login\""],"product":"coldfusion","shodan-query":["http.component:\"adobe coldfusion\"","http.title:\"coldfusion administrator login\"","cpe:\"cpe:2.3:a:adobe:coldfusion\""],"vendor":"adobe","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>coldfusion administrator login.*?</title>"]}]}]},{"id":"experience_manager_cloud_service","info":{"name":"experience_manager_cloud_service","author":"cn-kali-team","tags":"detect,tech,experience_manager_cloud_service","severity":"info","metadata":{"product":"experience_manager_cloud_service","shodan-query":["http.title:\"aem sign in\"","http.component:\"adobe experience manager\""],"vendor":"adobe","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>aem sign in.*?</title>"]}]}]},{"id":"adobe-connect","info":{"name":"adobe-connect","author":"cn-kali-team","tags":"detect,tech,adobe-connect","severity":"info","metadata":{"product":"connect","vendor":"adobe","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/common/scripts/showcontent.js"],"case-insensitive":true}]}]},{"id":"casaos","info":{"name":"casaos","author":"cn-kali-team","tags":"detect,tech,casaos","severity":"info","metadata":{"fofa-query":["body=\"/casaos-ui/public/index.html\""],"product":"casaos","shodan-query":["http.html:\"/casaos-ui/public/index.html\""],"vendor":"icewhale","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/casaos-ui/public/index.html"],"case-insensitive":true}]}]},{"id":"yeswiki","info":{"name":"yeswiki","author":"cn-kali-team","tags":"detect,tech,yeswiki","severity":"info","metadata":{"product":"yeswiki","shodan-query":["http.html:\"yeswiki\""],"vendor":"yeswiki","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["yeswiki"],"case-insensitive":true}]}]},{"id":"cercopitheque","info":{"name":"cercopitheque","author":"cn-kali-team","tags":"detect,tech,cercopitheque","severity":"info","metadata":{"product":"cercopitheque","shodan-query":["http.html:\"yeswiki\""],"vendor":"yeswiki","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["yeswiki"],"case-insensitive":true}]}]},{"id":"consul","info":{"name":"consul","author":"cn-kali-team","tags":"detect,tech,consul","severity":"info","metadata":{"fofa-query":["title=\"consul by hashicorp\""],"google-query":["intitle:\"consul by hashicorp\""],"product":"consul","shodan-query":["title:\"consul by hashicorp\"","http.title:\"consul by hashicorp\"","cpe:\"cpe:2.3:a:hashicorp:consul\""],"vendor":"hashicorp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>consul by hashicorp.*?</title>"]}]}]},{"id":"sentinel","info":{"name":"sentinel","author":"cn-kali-team","tags":"detect,tech,sentinel","severity":"info","metadata":{"fofa-query":["title=\"sentinel dashboard\""],"google-query":["intitle:\"sentinel dashboard\""],"product":"sentinel","shodan-query":["title:\"sentinel dashboard\"","http.title:\"sentinel dashboard\""],"vendor":"hashicorp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>sentinel dashboard.*?</title>"]}]}]},{"id":"itop","info":{"name":"itop","author":"cn-kali-team","tags":"detect,tech,itop","severity":"info","metadata":{"fofa-query":["body=\"itop login\""],"product":"itop","shodan-query":["html:\"itop login\""],"vendor":"combodo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["itop login"],"case-insensitive":true}]}]},{"id":"majordomo","info":{"name":"majordomo","author":"cn-kali-team","tags":"detect,tech,majordomo","severity":"info","metadata":{"fofa-query":["app=\"majordomosl\"","icon_hash=1903390397"],"product":"majordomo","shodan-query":["http.favicon.hash:1903390397"],"vendor":"mjdm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1903390397"]}]}]},{"id":"lightdash","info":{"name":"lightdash","author":"cn-kali-team","tags":"detect,tech,lightdash","severity":"info","metadata":{"fofa-query":["title=\"lightdash\""],"google-query":["intitle:\"lightdash\""],"product":"lightdash","shodan-query":["title:\"lightdash\"","http.title:\"lightdash\""],"vendor":"lightdash","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>lightdash.*?</title>"]}]}]},{"id":"adminer","info":{"name":"adminer","author":"cn-kali-team","tags":"detect,tech,adminer","severity":"info","metadata":{"product":"adminer","vendor":"adminer","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["://www.adminer.org/' target=\"_blank\" rel=\"noreferrer"],"case-insensitive":true}]}]},{"id":"rocket.chat","info":{"name":"rocket.chat","author":"cn-kali-team","tags":"detect,tech,rocket.chat","severity":"info","metadata":{"fofa-query":["title=\"rocket.chat\""],"google-query":["intitle:\"rocket.chat\""],"product":"rocket.chat","shodan-query":["http.title:\"rocket.chat\""],"vendor":"rocket.chat","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>rocket.chat.*?</title>"]}]}]},{"id":"photo_station","info":{"name":"photo_station","author":"cn-kali-team","tags":"detect,tech,photo_station","severity":"info","metadata":{"fofa-query":["title=\"photo station\"","title=\"qnap\""],"google-query":["intitle:\"qnap\"","intitle:\"photo station\""],"product":"photo_station","shodan-query":["title:\"qnap\"","http.title:\"photo station\"","http.title:\"qnap\"","content-length: 580 \"http server 1.0\""],"vendor":"qnap","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>photo station.*?</title>","(?mi)<title[^>]*>qnap.*?</title>"]}]}]},{"id":"phpok","info":{"name":"phpok","author":"cn-kali-team","tags":"detect,tech,phpok","severity":"info","metadata":{"product":"phpok","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1091f8722e63111e50302ecbfdd6e975","aea2803f24d6f4156bde7681f17c3253"]},{"type":"word","words":["<meta name=\"author\" content=\"phpok,"],"case-insensitive":true}]}]},{"id":"stagil_navigation","info":{"name":"stagil_navigation","author":"cn-kali-team","tags":"detect,tech,stagil_navigation","severity":"info","metadata":{"fofa-query":["title=jira"],"google-query":["intitle:jira"],"product":"stagil_navigation","shodan-query":["title:jira","http.title:jira"],"vendor":"stagil","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>jira.*?</title>"]}]}]},{"id":"connect","info":{"name":"connect","author":"cn-kali-team","tags":"detect,tech,connect","severity":"info","metadata":{"fofa-query":["app=\"rstudio-connect\"","title=\"openvpn connect\""],"google-query":["intitle:\"openvpn connect\""],"product":"connect","shodan-query":["http.favicon.hash:217119619","http.title:\"openvpn connect\""],"vendor":"rstudio","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["217119619"]},{"type":"regex","regex":["(?mi)<title[^>]*>openvpn connect.*?</title>"]}]}]},{"id":"chatgpt_web","info":{"name":"chatgpt_web","author":"cn-kali-team","tags":"detect,tech,chatgpt_web","severity":"info","metadata":{"fofa-query":["title=\"chatgpt个人专用版\""],"product":"chatgpt_web","vendor":"chanzhaoyu","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>chatgpt个人专用版.*?</title>"]}]}]},{"id":"zabbix","info":{"name":"zabbix","author":"cn-kali-team","tags":"detect,tech,zabbix","severity":"info","metadata":{"product":"zabbix","vendor":"zabbix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["zabbix sia","zabbix"],"condition":"and","case-insensitive":true},{"type":"word","words":["images/general/zabbix.ico"],"case-insensitive":true}]}]},{"id":"testrail","info":{"name":"testrail","author":"cn-kali-team","tags":"detect,tech,testrail","severity":"info","metadata":{"fofa-query":["body=\"testrail\""],"product":"testrail","shodan-query":["http.html:\"testrail\""],"vendor":"gurock","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["testrail"],"case-insensitive":true}]}]},{"id":"custom_product_designer","info":{"name":"custom_product_designer","author":"cn-kali-team","tags":"detect,tech,custom_product_designer","severity":"info","metadata":{"fofa-query":["body=\"prestashop\" && body=\"tshirtecommerce\""],"google-query":["inurl:\"/tshirtecommerce/\""],"product":"custom_product_designer","vendor":"tshirtecommerce","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["prestashop","tshirtecommerce"],"case-insensitive":true}]}]},{"id":"prestashop","info":{"name":"prestashop","author":"cn-kali-team","tags":"detect,tech,prestashop","severity":"info","metadata":{"fofa-query":["body=\"prestashop\" && body=\"tshirtecommerce\""],"product":"prestashop","vendor":"tshirtecommerce","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["prestashop","tshirtecommerce"],"case-insensitive":true}]}]},{"id":"roxy-wi","info":{"name":"roxy-wi","author":"cn-kali-team","tags":"detect,tech,roxy-wi","severity":"info","metadata":{"product":"roxy-wi","vendor":"roxy-wi","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["115a65bda90efe228d692227dc196f74"]},{"type":"word","words":["roxy-wi"],"case-insensitive":true}]}]},{"id":"glpi","info":{"name":"glpi","author":"cn-kali-team","tags":"detect,tech,glpi","severity":"info","metadata":{"fofa-query":["icon_hash=\"-1474875778\"","title=\"glpi\""],"google-query":["intitle:\"glpi\""],"product":"glpi","shodan-query":["http.favicon.hash:\"-1474875778\"","http.title:\"glpi\""],"vendor":"glpi-project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1474875778"]},{"type":"regex","regex":["(?mi)<title[^>]*>glpi.*?</title>"]}]}]},{"id":"gradio","info":{"name":"gradio","author":"cn-kali-team","tags":"detect,tech,gradio","severity":"info","metadata":{"fofa-query":["body=\"__gradio_mode__\""],"product":"gradio","shodan-query":["html:\"__gradio_mode__\"","title:\"gradio\""],"vendor":"gradio_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["__gradio_mode__"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>gradio.*?</title>"]}]}]},{"id":"emby","info":{"name":"emby","author":"cn-kali-team","tags":"detect,tech,emby","severity":"info","metadata":{"product":"emby","vendor":"emby","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"emby server\""],"case-insensitive":true}]}]},{"id":"mysqldumper","info":{"name":"mysqldumper","author":"cn-kali-team","tags":"detect,tech,mysqldumper","severity":"info","metadata":{"product":"mysqldumper","vendor":"mysqldumper","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<select class=\"sqlcombo\" name=\"tablecombo"],"case-insensitive":true}]}]},{"id":"automation_360","info":{"name":"automation_360","author":"cn-kali-team","tags":"detect,tech,automation_360","severity":"info","metadata":{"fofa-query":["icon_hash=\"-1005691603\""],"product":"automation_360","shodan-query":["http.favicon.hash:-1005691603"],"vendor":"automationanywhere","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1005691603"]}]}]},{"id":"eleanor_cms","info":{"name":"eleanor_cms","author":"cn-kali-team","tags":"detect,tech,eleanor_cms","severity":"info","metadata":{"fofa-query":["body=\"eleanor\""],"product":"eleanor_cms","shodan-query":["html:\"eleanor\"","http.html:\"eleanor\"","cpe:\"cpe:2.3:a:eleanor-cms:eleanor_cms\""],"vendor":"eleanor-cms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["eleanor"],"case-insensitive":true}]}]},{"id":"gitlab","info":{"name":"gitlab","author":"cn-kali-team","tags":"detect,tech,gitlab","severity":"info","metadata":{"product":"gitlab","vendor":"gitlab","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["navbar-gitlab","search gitlab"],"condition":"and","case-insensitive":true},{"type":"word","words":["<a href=\"https://about.gitlab.com/\">about gitlab","class=\"col-sm-7 brand-holder pull-left\"","content=\"gitlab ","content=\"gitlab community edition\"","gon.default_issues_tracker"],"case-insensitive":true},{"type":"word","words":["set-cookie: _gitlab_session="],"part":"header","case-insensitive":true}]}]},{"id":"qloapps","info":{"name":"qloapps","author":"cn-kali-team","tags":"detect,tech,qloapps","severity":"info","metadata":{"fofa-query":["title=\"qloapps\""],"product":"qloapps","vendor":"webkul","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>qloapps.*?</title>"]}]}]},{"id":"bagisto","info":{"name":"bagisto","author":"cn-kali-team","tags":"detect,tech,bagisto","severity":"info","metadata":{"fofa-query":["bagisto"],"product":"bagisto","vendor":"webkul","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["bagisto"],"case-insensitive":true}]}]},{"id":"console","info":{"name":"console","author":"cn-kali-team","tags":"detect,tech,console","severity":"info","metadata":{"fofa-query":["app=\"minio-console\"","title=\"minio console\""],"google-query":["intitle:\"minio console\""],"product":"console","shodan-query":["http.title:\"minio console\""],"vendor":"minio","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>minio console.*?</title>"]}]}]},{"id":"minio","info":{"name":"minio","author":"cn-kali-team","tags":"detect,tech,minio","severity":"info","metadata":{"fofa-query":["app=\"minio\"","title=\"minio browser\"","title=\"minio console\""],"google-query":["intitle:\"minio browser\"","intitle:\"minio console\""],"product":"minio","shodan-query":["title:\"minio console\"","http.title:\"minio browser\"","cpe:\"cpe:2.3:a:minio:minio\"","http.title:\"minio console\"","http.html:\"symfony profiler\""],"vendor":"minio","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["symfony profiler"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>minio browser.*?</title>","(?mi)<title[^>]*>minio console.*?</title>"]}]}]},{"id":"dse855","info":{"name":"DSE855","author":"cn-kali-team","tags":"detect,tech,DSE855","severity":"info","metadata":{"fofa-query":["deep sea electronics"],"product":"dse855","vendor":"deep sea electronics","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["deep sea electronics"],"case-insensitive":true}]}]},{"id":"avantfax","info":{"name":"avantfax","author":"cn-kali-team","tags":"detect,tech,avantfax","severity":"info","metadata":{"product":"avantfax","vendor":"avantfax","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["src=\"images/avantfax-big.png\" border=\"0\" alt=\"avantfax"],"case-insensitive":true}]}]},{"id":"swift_performance_lite","info":{"name":"swift_performance_lite","author":"cn-kali-team","tags":"detect,tech,swift_performance_lite","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/swift-performance-lite\""],"product":"swift_performance_lite","vendor":"swiftperformance","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/swift-performance-lite"],"case-insensitive":true}]}]},{"id":"xnat","info":{"name":"xnat","author":"cn-kali-team","tags":"detect,tech,xnat","severity":"info","metadata":{"product":"xnat","shodan-query":["http.title:\"xnat\""],"vendor":"xnat","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>xnat.*?</title>"]}]}]},{"id":"apeosport-v_c3375","info":{"name":"apeosport-v_c3375","author":"cn-kali-team","tags":"detect,tech,apeosport-v_c3375","severity":"info","metadata":{"fofa-query":["\"prop.htm\" && \"docucentre\""],"product":"apeosport-v_c3375","vendor":"fujixerox","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["docucentre","prop.htm"],"case-insensitive":true}]}]},{"id":"grandnode","info":{"name":"grandnode","author":"cn-kali-team","tags":"detect,tech,grandnode","severity":"info","metadata":{"product":"grandnode","vendor":"grandnode","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-powered-by: grandnode"],"part":"header","case-insensitive":true}]}]},{"id":"fudforum","info":{"name":"fudforum","author":"cn-kali-team","tags":"detect,tech,fudforum","severity":"info","metadata":{"product":"fudforum","vendor":"fudforum","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by: fudforum"],"case-insensitive":true}]}]},{"id":"listingpro","info":{"name":"listingpro","author":"cn-kali-team","tags":"detect,tech,listingpro","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/listingpro\""],"product":"listingpro","vendor":"cridio","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/listingpro"],"case-insensitive":true}]}]},{"id":"sunlogin","info":{"name":"sunlogin","author":"cn-kali-team","tags":"detect,tech,sunlogin","severity":"info","metadata":{"product":"sunlogin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content-length: 46","content-type: application/json"],"part":"header","condition":"and","case-insensitive":true},{"type":"word","words":["{\"success\":false,\"msg\":\"verification failure\"}"],"case-insensitive":true}]}]},{"id":"notificationx","info":{"name":"notificationx","author":"cn-kali-team","tags":"detect,tech,notificationx","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/notificationx\""],"product":"notificationx","vendor":"wpdeveloper","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/notificationx"],"case-insensitive":true}]}]},{"id":"orchid_core_vms","info":{"name":"orchid_core_vms","author":"cn-kali-team","tags":"detect,tech,orchid_core_vms","severity":"info","metadata":{"fofa-query":["title=\"orchid core vms\""],"google-query":["intitle:\"orchid core vms\""],"product":"orchid_core_vms","shodan-query":["http.title:\"orchid core vms\""],"vendor":"ipconfigure","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>orchid core vms.*?</title>"]}]}]},{"id":"contact-form-generator","info":{"name":"contact-form-generator","author":"cn-kali-team","tags":"detect,tech,contact-form-generator","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/contact-form-generator\""],"product":"contact-form-generator","vendor":"creative-solutions","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/contact-form-generator"],"case-insensitive":true}]}]},{"id":"devika","info":{"name":"devika","author":"cn-kali-team","tags":"detect,tech,devika","severity":"info","metadata":{"fofa-query":["icon_hash=\"-1429839495\""],"product":"devika","vendor":"stitionai","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1429839495"]}]}]},{"id":"pyload","info":{"name":"pyload","author":"cn-kali-team","tags":"detect,tech,pyload","severity":"info","metadata":{"fofa-query":["title=\"login - pyload\"","body=\"pyload\"","title=\"pyload\""],"google-query":["intitle:\"login - pyload\"","intitle:\"pyload\""],"product":"pyload","shodan-query":["title:\"pyload\"","http.title:\"login - pyload\"","http.html:\"pyload\"","http.title:\"pyload\"","html:\"pyload\""],"vendor":"pyload","verified":true,"zoomeye-query":["app:\"pyload\""]}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pyload"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>login - pyload.*?</title>"]}]}]},{"id":"linear_emerge_e3_access_control_firmware","info":{"name":"linear_emerge_e3_access_control_firmware","author":"cn-kali-team","tags":"detect,tech,linear_emerge_e3_access_control_firmware","severity":"info","metadata":{"fofa-query":["body=\"linear emerge\""],"product":"linear_emerge_e3_access_control_firmware","shodan-query":["http.html:\"linear emerge\""],"vendor":"niceforyou","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["linear emerge"],"case-insensitive":true}]}]},{"id":"wazuh","info":{"name":"wazuh","author":"cn-kali-team","tags":"detect,tech,wazuh","severity":"info","metadata":{"product":"wazuh","shodan-query":["title:\"wazuh\""],"vendor":"wazuh","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>wazuh.*?</title>"]}]}]},{"id":"webui-aria2","info":{"name":"webui-aria2","author":"cn-kali-team","tags":"detect,tech,webui-aria2","severity":"info","metadata":{"fofa-query":["title=\"aria2 webui\""],"google-query":["intitle:\"aria2 webui\""],"product":"webui-aria2","shodan-query":["title:\"aria2 webui\"","http.title:\"aria2 webui\""],"vendor":"ziahamza","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>aria2 webui.*?</title>"]}]}]},{"id":"sonarqube","info":{"name":"sonarqube","author":"cn-kali-team","tags":"detect,tech,sonarqube","severity":"info","metadata":{"product":"sonarqube","shodan-query":["title:\"sonarqube\""],"vendor":"sonarsource","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>sonarqube.*?</title>"]}]}]},{"id":"colibri_firmware","info":{"name":"colibri_firmware","author":"cn-kali-team","tags":"detect,tech,colibri_firmware","severity":"info","metadata":{"fofa-query":["body=\"franklin fueling systems\""],"product":"colibri_firmware","shodan-query":["http.html:\"franklin fueling systems\""],"vendor":"franklinfueling","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["franklin fueling systems"],"case-insensitive":true}]}]},{"id":"platform","info":{"name":"platform","author":"cn-kali-team","tags":"detect,tech,platform","severity":"info","metadata":{"product":"platform","shodan-query":["title:\"pega\""],"vendor":"pega","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>pega.*?</title>"]}]}]},{"id":"woocommerce_ultimate_gift_card","info":{"name":"woocommerce_ultimate_gift_card","author":"cn-kali-team","tags":"detect,tech,woocommerce_ultimate_gift_card","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/woocommerce-ultimate-gift-card\""],"product":"woocommerce_ultimate_gift_card","vendor":"wpswings","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/woocommerce-ultimate-gift-card"],"case-insensitive":true}]}]},{"id":"fuxa","info":{"name":"fuxa","author":"cn-kali-team","tags":"detect,tech,fuxa","severity":"info","metadata":{"fofa-query":["title=\"fuxa\""],"product":"fuxa","vendor":"frangoteam","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>fuxa.*?</title>"]}]}]},{"id":"thinkadmin","info":{"name":"thinkadmin","author":"cn-kali-team","tags":"detect,tech,thinkadmin","severity":"info","metadata":{"product":"thinkadmin","vendor":"thinkadmin","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["thinkadmin</title>"],"case-insensitive":true}]}]},{"id":"dotclear","info":{"name":"dotclear","author":"cn-kali-team","tags":"detect,tech,dotclear","severity":"info","metadata":{"product":"dotclear","vendor":"dotclear","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://dotclear.org/"],"case-insensitive":true}]}]},{"id":"tlr-2855ks6_firmware","info":{"name":"tlr-2855ks6_firmware","author":"cn-kali-team","tags":"detect,tech,tlr-2855ks6_firmware","severity":"info","metadata":{"fofa-query":["product==\"telesquare-tlr-2855ks6\"","title=\"login to tlr-2855ks6\""],"google-query":["intitle:\"login to tlr-2855ks6\""],"product":"tlr-2855ks6_firmware","shodan-query":["title:\"login to tlr-2855ks6\"","http.title:\"login to tlr-2855ks6\""],"vendor":"telesquare","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>login to tlr-2855ks6.*?</title>"]}]}]},{"id":"tlr-2005ksh_firmware","info":{"name":"tlr-2005ksh_firmware","author":"cn-kali-team","tags":"detect,tech,tlr-2005ksh_firmware","severity":"info","metadata":{"fofa-query":["body=\"tlr-2005ksh\""],"product":"tlr-2005ksh_firmware","shodan-query":["http.html:\"tlr-2005ksh\""],"vendor":"telesquare","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tlr-2005ksh"],"case-insensitive":true}]}]},{"id":"tlr-2005ksh","info":{"name":"tlr-2005ksh","author":"cn-kali-team","tags":"detect,tech,tlr-2005ksh","severity":"info","metadata":{"product":"tlr-2005ksh","shodan-query":["http.html:\"tlr-2005ksh\""],"vendor":"telesquare","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tlr-2005ksh"],"case-insensitive":true}]}]},{"id":"sdt-cs3b1","info":{"name":"sdt-cs3b1","author":"cn-kali-team","tags":"detect,tech,sdt-cs3b1","severity":"info","metadata":{"product":"sdt-cs3b1","shodan-query":["html:\"sdt-cw3b1\""],"vendor":"telesquare","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sdt-cw3b1"],"case-insensitive":true}]}]},{"id":"maximo_asset_management","info":{"name":"maximo_asset_management","author":"cn-kali-team","tags":"detect,tech,maximo_asset_management","severity":"info","metadata":{"fofa-query":["icon_hash=-399298961"],"product":"maximo_asset_management","shodan-query":["http.favicon.hash:-399298961"],"vendor":"ibm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-399298961"]}]}]},{"id":"websphere","info":{"name":"websphere","author":"cn-kali-team","tags":"detect,tech,websphere","severity":"info","metadata":{"product":"websphere","shodan-query":["http.html:\"ibm websphere portal\""],"vendor":"ibm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ibm websphere portal"],"case-insensitive":true},{"type":"word","words":["com.ibm.websphere.ihs.doc","content=\"websphere application server","websphere"],"case-insensitive":true}]}]},{"id":"planning_analytics","info":{"name":"planning_analytics","author":"cn-kali-team","tags":"detect,tech,planning_analytics","severity":"info","metadata":{"product":"planning_analytics","shodan-query":["title:\"arc for tm1\""],"vendor":"ibm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>arc for tm1.*?</title>"]}]}]},{"id":"data_risk_manager","info":{"name":"data_risk_manager","author":"cn-kali-team","tags":"detect,tech,data_risk_manager","severity":"info","metadata":{"product":"data_risk_manager","shodan-query":["title:\"ibm data risk manager\""],"vendor":"ibm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>ibm data risk manager.*?</title>"]}]}]},{"id":"tivoli_common_reporting","info":{"name":"tivoli_common_reporting","author":"cn-kali-team","tags":"detect,tech,tivoli_common_reporting","severity":"info","metadata":{"fofa-query":["body=\"ibm websphere portal\""],"product":"tivoli_common_reporting","shodan-query":["http.html:\"ibm websphere portal\""],"vendor":"ibm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ibm websphere portal"],"case-insensitive":true}]}]},{"id":"ibm","info":{"name":"ibm","author":"cn-kali-team","tags":"detect,tech,ibm","severity":"info","metadata":{"product":"ibm","shodan-query":["title:\"ibm security verify access\""],"vendor":"ibm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>ibm security verify access.*?</title>"]}]}]},{"id":"operational_decision_manager","info":{"name":"operational_decision_manager","author":"cn-kali-team","tags":"detect,tech,operational_decision_manager","severity":"info","metadata":{"fofa-query":["title=\"ibm odm\"","body=\"ibm odm\""],"product":"operational_decision_manager","shodan-query":["html:\"ibm odm\"","http.html:\"ibm odm\""],"vendor":"ibm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ibm odm"],"case-insensitive":true}]}]},{"id":"integrated_management_module","info":{"name":"integrated_management_module","author":"cn-kali-team","tags":"detect,tech,integrated_management_module","severity":"info","metadata":{"fofa-query":["integrated management module"],"product":"integrated_management_module","shodan-query":["html:\"ibmdojo\""],"vendor":"ibm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ibmdojo","integrated management module"],"case-insensitive":true}]}]},{"id":"adiscon-loganalyzer","info":{"name":"adiscon-loganalyzer","author":"cn-kali-team","tags":"detect,tech,adiscon-loganalyzer","severity":"info","metadata":{"product":"loganalyzer","vendor":"adiscon","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["adiscon gmbh"],"case-insensitive":true}]}]},{"id":"post-timeline","info":{"name":"post-timeline","author":"cn-kali-team","tags":"detect,tech,post-timeline","severity":"info","metadata":{"fofa-query":["body=\"wp-content/plugins/post-timeline/\""],"product":"post-timeline","shodan-query":["http.html:\"wp-content/plugins/post-timeline/\""],"vendor":"agilelogix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wp-content/plugins/post-timeline/"],"case-insensitive":true}]}]},{"id":"netsweeper","info":{"name":"netsweeper","author":"cn-kali-team","tags":"detect,tech,netsweeper","severity":"info","metadata":{"product":"netsweeper","vendor":"netsweeper","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://www.poweredbynetsweeper.com\"><img ","netsweepersmbtextatbottomofloginscreen"],"case-insensitive":true},{"type":"word","words":["set-cookie: webadmin="],"part":"header","case-insensitive":true}]}]},{"id":"tileserver","info":{"name":"tileserver","author":"cn-kali-team","tags":"detect,tech,tileserver","severity":"info","metadata":{"product":"tileserver","shodan-query":["http.favicon.hash:-1258058404"],"vendor":"tileserver","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1258058404"]}]}]},{"id":"geoserver","info":{"name":"geoserver","author":"cn-kali-team","tags":"detect,tech,geoserver","severity":"info","metadata":{"product":"geoserver","vendor":"osgeo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/org.geoserver.web.geoserverbasepage/","\\webapps\\geoserver","class=\"geoserver lebeg","geoserver","window.location.replace(\"web/\");"],"case-insensitive":true}]}]},{"id":"high_cms","info":{"name":"high_cms","author":"cn-kali-team","tags":"detect,tech,high_cms","severity":"info","metadata":{"fofa-query":["title=\"highmail\""],"google-query":["intitle:\"highmail\""],"product":"high_cms","shodan-query":["title:\"highmail\"","http.title:\"highmail\""],"vendor":"aryanic","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>highmail.*?</title>"]}]}]},{"id":"jupyterhub","info":{"name":"jupyterhub","author":"cn-kali-team","tags":"detect,tech,jupyterhub","severity":"info","metadata":{"product":"jupyterhub","shodan-query":["http.title:\"jupyterhub\""],"vendor":"jupyter","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>jupyterhub.*?</title>"]},{"type":"word","words":["<title>jupyterhub</title>"],"case-insensitive":true}]}]},{"id":"notebook","info":{"name":"notebook","author":"cn-kali-team","tags":"detect,tech,notebook","severity":"info","metadata":{"fofa-query":["title=\"jupyter notebook\""],"product":"notebook","shodan-query":["title:\"jupyter notebook\""],"vendor":"jupyter","verified":true,"zoomeye-query":["title:\"jupyter notebook\""]}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>jupyter notebook.*?</title>"]},{"type":"favicon","hash":["97c6417ed01bdc0ae3ef32ae4894fd03"]},{"type":"word","words":["<div id=\"ipython-main-app\" class=\"container\">","<div id=\"ipython_notebook\" class=\"nav navbar-brand\">","<title>jupyter notebook</title>"],"case-insensitive":true}]}]},{"id":"jupyterlab","info":{"name":"jupyterlab","author":"cn-kali-team","tags":"detect,tech,jupyterlab","severity":"info","metadata":{"product":"jupyterlab","shodan-query":["http.title:\"jupyterlab\""],"vendor":"jupyter","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>jupyterlab.*?</title>"]},{"type":"word","words":["<title>jupyterlab</title>"],"case-insensitive":true}]}]},{"id":"xoops","info":{"name":"xoops","author":"cn-kali-team","tags":"detect,tech,xoops","severity":"info","metadata":{"product":"xoops","vendor":"xoops","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["include/xoops.js"],"case-insensitive":true}]}]},{"id":"grav_cms","info":{"name":"grav_cms","author":"cn-kali-team","tags":"detect,tech,grav_cms","severity":"info","metadata":{"fofa-query":["body=\"grav cms\""],"product":"grav_cms","shodan-query":["html:\"grav cms\"","http.html:\"grav cms\""],"vendor":"getgrav","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["grav cms"],"case-insensitive":true}]}]},{"id":"ruckus_vriot","info":{"name":"ruckus_vriot","author":"cn-kali-team","tags":"detect,tech,ruckus_vriot","severity":"info","metadata":{"product":"ruckus_vriot","shodan-query":["html:\"riot controller\""],"vendor":"commscope","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["riot controller"],"case-insensitive":true}]}]},{"id":"webmethods","info":{"name":"webmethods","author":"cn-kali-team","tags":"detect,tech,webmethods","severity":"info","metadata":{"product":"webmethods","shodan-query":["http.favicon.hash:-234335289"],"vendor":"softwareag","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-234335289"]}]}]},{"id":"webp_server_go","info":{"name":"webp_server_go","author":"cn-kali-team","tags":"detect,tech,webp_server_go","severity":"info","metadata":{"product":"webp_server_go","shodan-query":["http.html:\"webp\""],"vendor":"webp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["webp"],"case-insensitive":true}]}]},{"id":"endpoint_protection_manager","info":{"name":"endpoint_protection_manager","author":"cn-kali-team","tags":"detect,tech,endpoint_protection_manager","severity":"info","metadata":{"product":"endpoint_protection_manager","shodan-query":["title:\"symantec endpoint protection manager\""],"vendor":"symantec","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>symantec endpoint protection manager.*?</title>"]}]}]},{"id":"powerjob","info":{"name":"powerjob","author":"cn-kali-team","tags":"detect,tech,powerjob","severity":"info","metadata":{"product":"powerjob","vendor":"powerjob","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>powerjob</title>"],"case-insensitive":true}]}]},{"id":"ruckus_wireless_admin","info":{"name":"ruckus_wireless_admin","author":"cn-kali-team","tags":"detect,tech,ruckus_wireless_admin","severity":"info","metadata":{"fofa-query":["title=\"ruckus wireless\""],"google-query":["intitle:\"ruckus wireless\""],"product":"ruckus_wireless_admin","shodan-query":["title:\"ruckus wireless\"","http.title:\"ruckus wireless\""],"vendor":"ruckuswireless","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>ruckus wireless.*?</title>"]}]}]},{"id":"graylog","info":{"name":"graylog","author":"cn-kali-team","tags":"detect,tech,graylog","severity":"info","metadata":{"product":"graylog","shodan-query":["title:\"graylog web interface\""],"vendor":"graylog","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>graylog web interface.*?</title>"]},{"type":"word","words":["org.graylog.plugins.pipelineprocessor.processorplugin"],"case-insensitive":true}]}]},{"id":"hue","info":{"name":"hue","author":"cn-kali-team","tags":"detect,tech,hue","severity":"info","metadata":{"product":"hue","shodan-query":["title:\"hue - welcome to hue\""],"vendor":"cloudera","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>hue - welcome to hue.*?</title>"]}]}]},{"id":"request-baskets","info":{"name":"request-baskets","author":"cn-kali-team","tags":"detect,tech,request-baskets","severity":"info","metadata":{"fofa-query":["body=\"request-baskets\""],"product":"request-baskets","shodan-query":["http.html:\"request-baskets\""],"vendor":"darklynx","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["request-baskets"],"case-insensitive":true}]}]},{"id":"php","info":{"name":"php","author":"cn-kali-team","tags":"detect,tech,php","severity":"info","metadata":{"fofa-query":["title=\"php warning\" || \"fatal error\""],"google-query":["intitle:\"php warning\" || \"fatal error\""],"product":"php","shodan-query":["cpe:\"cpe:2.3:a:php:php\"","http.title:\"php warning\" || \"fatal error\"","php.ini","the requested resource <code class=\"url\">","x-powered-by:\"php\""],"vendor":"php","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["fatal error","php.ini","the requested resource <code class=\"url\">"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>\"fatal error.*?</title>","(?mi)<title[^>]*>php warning\".*?</title>","(?mi)<title[^>]*>php warning.*?</title>"]}]}]},{"id":"netman_204_firmware","info":{"name":"netman_204_firmware","author":"cn-kali-team","tags":"detect,tech,netman_204_firmware","severity":"info","metadata":{"product":"netman_204_firmware","shodan-query":["title:\"netman\"","html:\"ups network management card 4\""],"vendor":"riello-ups","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ups network management card 4"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>netman.*?</title>"]}]}]},{"id":"rancher","info":{"name":"rancher","author":"cn-kali-team","tags":"detect,tech,rancher","severity":"info","metadata":{"product":"rancher","vendor":"rancher","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["51c2a7a38f5eb8b2c5577375a2633827"]},{"type":"word","words":["<title>loading…</title>","ember-basic-dropdown-wormhole"],"condition":"and","case-insensitive":true}]}]},{"id":"securelinx_spider_firmware","info":{"name":"securelinx_spider_firmware","author":"cn-kali-team","tags":"detect,tech,securelinx_spider_firmware","severity":"info","metadata":{"fofa-query":["title=\"lantronix\""],"product":"securelinx_spider_firmware","shodan-query":["title:\"lantronix\""],"vendor":"lantronix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>lantronix.*?</title>"]}]}]},{"id":"hp","info":{"name":"hp","author":"cn-kali-team","tags":"detect,tech,hp","severity":"info","metadata":{"fofa-query":["hp 1820-8g switch j9979a"],"product":"hp","vendor":"hp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hp 1820-8g switch j9979a"],"case-insensitive":true}]}]},{"id":"nordex_control_2_scada","info":{"name":"nordex_control_2_scada","author":"cn-kali-team","tags":"detect,tech,nordex_control_2_scada","severity":"info","metadata":{"product":"nordex_control_2_scada","shodan-query":["http.title:\"nordex control - wind farm portal\""],"vendor":"nordex","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>nordex control - wind farm portal.*?</title>"]}]}]},{"id":"revpi_status","info":{"name":"revpi_status","author":"cn-kali-team","tags":"detect,tech,revpi_status","severity":"info","metadata":{"product":"revpi_status","shodan-query":["title:\"revpi\""],"vendor":"kunbus","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>revpi.*?</title>"]}]}]},{"id":"kavita","info":{"name":"kavita","author":"cn-kali-team","tags":"detect,tech,kavita","severity":"info","metadata":{"fofa-query":["title=\"kavita\""],"google-query":["intitle:\"kavita\""],"product":"kavita","shodan-query":["title:\"kavita\"","http.title:\"kavita\""],"vendor":"kavitareader","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>kavita.*?</title>"]}]}]},{"id":"magnusbilling","info":{"name":"magnusbilling","author":"cn-kali-team","tags":"detect,tech,magnusbilling","severity":"info","metadata":{"fofa-query":["body=\"magnusbilling\""],"product":"magnusbilling","shodan-query":["http.html:\"magnusbilling\""],"vendor":"magnussolution","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["magnusbilling"],"case-insensitive":true}]}]},{"id":"netmaker","info":{"name":"netmaker","author":"cn-kali-team","tags":"detect,tech,netmaker","severity":"info","metadata":{"fofa-query":["body=\"netmaker\""],"product":"netmaker","shodan-query":["html:\"netmaker\"","http.html:\"netmaker\""],"vendor":"gravitl","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["netmaker"],"case-insensitive":true}]}]},{"id":"embedthis-appweb","info":{"name":"embedthis-appweb","author":"cn-kali-team","tags":"detect,tech,embedthis-appweb","severity":"info","metadata":{"product":"appweb","vendor":"embedthis","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: embedthis-appweb"],"part":"header","case-insensitive":true}]}]},{"id":"bazarr","info":{"name":"bazarr","author":"cn-kali-team","tags":"detect,tech,bazarr","severity":"info","metadata":{"fofa-query":["title==\"bazarr\" && icon_hash=\"-1983413099\""],"product":"bazarr","vendor":"morpheus65535","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*> icon_hash=\"-1983413099.*?</title>","(?mi)<title[^>]*>=\"bazarr\" .*?</title>"]}]}]},{"id":"versa_operating_system","info":{"name":"versa_operating_system","author":"cn-kali-team","tags":"detect,tech,versa_operating_system","severity":"info","metadata":{"product":"versa_operating_system","shodan-query":["title:\"flex vnf web-ui\""],"vendor":"versa-networks","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>flex vnf web-ui.*?</title>"]}]}]},{"id":"concerto","info":{"name":"concerto","author":"cn-kali-team","tags":"detect,tech,concerto","severity":"info","metadata":{"product":"concerto","shodan-query":["http.favicon.hash:-534530225"],"vendor":"versa-networks","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-534530225"]}]}]},{"id":"ganglia","info":{"name":"ganglia","author":"cn-kali-team","tags":"detect,tech,ganglia","severity":"info","metadata":{"product":"ganglia","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"ganglia_form","onchange=\"ganglia_form.submit();"],"case-insensitive":true}]}]},{"id":"ganglia-web","info":{"name":"ganglia-web","author":"cn-kali-team","tags":"detect,tech,ganglia-web","severity":"info","metadata":{"fofa-query":["body=\"ganglia_form.submit()\""],"product":"ganglia-web","shodan-query":["http.html:\"ganglia_form.submit()\""],"vendor":"ganglia","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ganglia_form.submit()"],"case-insensitive":true}]}]},{"id":"redash","info":{"name":"redash","author":"cn-kali-team","tags":"detect,tech,redash","severity":"info","metadata":{"fofa-query":["icon_hash=698624197"],"product":"redash","shodan-query":["http.favicon.hash:698624197"],"vendor":"redash","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["698624197"]}]}]},{"id":"lylme_spage","info":{"name":"lylme_spage","author":"cn-kali-team","tags":"detect,tech,lylme_spage","severity":"info","metadata":{"fofa-query":["icon_hash=\"-282504889\""],"product":"lylme_spage","vendor":"lylme","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-282504889"]}]}]},{"id":"cratedb","info":{"name":"cratedb","author":"cn-kali-team","tags":"detect,tech,cratedb","severity":"info","metadata":{"fofa-query":["title=\"cratedb\""],"product":"cratedb","vendor":"cratedb","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>cratedb.*?</title>"]}]}]},{"id":"open_journal_systems","info":{"name":"open_journal_systems","author":"cn-kali-team","tags":"detect,tech,open_journal_systems","severity":"info","metadata":{"fofa-query":["body=\"pkp-lib\""],"product":"open_journal_systems","shodan-query":["cpe:\"cpe:2.3:a:public_knowledge_project:open_journal_systems\""],"vendor":"public_knowledge_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pkp-lib"],"case-insensitive":true}]}]},{"id":"tiki","info":{"name":"tiki","author":"cn-kali-team","tags":"detect,tech,tiki","severity":"info","metadata":{"fofa-query":["title=\"tiki wiki cms\""],"google-query":["intitle:\"tiki wiki cms"],"product":"tiki","shodan-query":["title:\"tiki wiki cms\""],"vendor":"tiki","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>tiki wiki cms.*?</title>"]}]}]},{"id":"tikiwiki_cms-groupware","info":{"name":"tikiwiki_cms-groupware","author":"cn-kali-team","tags":"detect,tech,tikiwiki_cms-groupware","severity":"info","metadata":{"fofa-query":["body=\"tiki wiki\""],"product":"tikiwiki_cms-groupware","shodan-query":["http.html:\"tiki wiki\""],"vendor":"tiki","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tiki wiki"],"case-insensitive":true}]}]},{"id":"superwebmailer","info":{"name":"superwebmailer","author":"cn-kali-team","tags":"detect,tech,superwebmailer","severity":"info","metadata":{"fofa-query":["title=\"superwebmailer\""],"google-query":["intitle:\"superwebmailer\""],"product":"superwebmailer","shodan-query":["title:\"superwebmailer\"","http.title:\"superwebmailer\""],"vendor":"superwebmailer","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>superwebmailer.*?</title>"]}]}]},{"id":"ligeo_basics","info":{"name":"ligeo_basics","author":"cn-kali-team","tags":"detect,tech,ligeo_basics","severity":"info","metadata":{"fofa-query":["title=\"ligeo\""],"google-query":["intitle:\"ligeo\""],"product":"ligeo_basics","shodan-query":["title:\"ligeo\"","http.title:\"ligeo\""],"vendor":"ligeo-archives","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>ligeo.*?</title>"]}]}]},{"id":"craft_cms","info":{"name":"craft_cms","author":"cn-kali-team","tags":"detect,tech,craft_cms","severity":"info","metadata":{"fofa-query":["body=craftcms","icon_hash=-47932290"],"product":"craft_cms","shodan-query":["cpe:\"cpe:2.3:a:craftcms:craft_cms\"","http.html:\"craftcms\"","http.favicon.hash:\"-47932290\"","x-powered-by: craft cms","http.html:craftcms","http.favicon.hash:-47932290"],"vendor":"craftcms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["craftcms"],"case-insensitive":true},{"type":"favicon","hash":["-47932290"]}]}]},{"id":"cms","info":{"name":"cms","author":"cn-kali-team","tags":"detect,tech,cms","severity":"info","metadata":{"fofa-query":["icon_hash=-47932290","body=craftcms"],"product":"cms","shodan-query":["http.html:\"craftcms\"","http.favicon.hash:\"-47932290\""],"vendor":"craftcms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["craftcms"],"case-insensitive":true},{"type":"favicon","hash":["-47932290"]}]}]},{"id":"dlink","info":{"name":"dlink","author":"cn-kali-team","tags":"detect,tech,dlink","severity":"info","metadata":{"fofa-query":["title=\"ac集中管理平台\" && body=\"d-link路由器管理页\"","body=\"text:in order to access the sharecenter\""],"product":"dlink","vendor":"dlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["text:in order to access the sharecenter"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*> body=\"d-link路由器管理页.*?</title>","(?mi)<title[^>]*>ac集中管理平台\" .*?</title>"]}]}]},{"id":"central_wifimanager","info":{"name":"central_wifimanager","author":"cn-kali-team","tags":"detect,tech,central_wifimanager","severity":"info","metadata":{"product":"central_wifimanager","shodan-query":["html:\"d-link central wifimanager\""],"vendor":"dlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["d-link central wifimanager"],"case-insensitive":true}]}]},{"id":"dir-605l_firmware","info":{"name":"dir-605l_firmware","author":"cn-kali-team","tags":"detect,tech,dir-605l_firmware","severity":"info","metadata":{"fofa-query":["body=\"l_tb>dir-605\""],"product":"dir-605l_firmware","vendor":"dlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["l_tb>dir-605"],"case-insensitive":true}]}]},{"id":"dns-320_firmware","info":{"name":"dns-320_firmware","author":"cn-kali-team","tags":"detect,tech,dns-320_firmware","severity":"info","metadata":{"fofa-query":["body=\"sharecenter\""],"product":"dns-320_firmware","shodan-query":["http.html:\"sharecenter\"","html:\"sharecenter\""],"vendor":"dlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sharecenter"],"case-insensitive":true}]}]},{"id":"dir-816l_firmware","info":{"name":"dir-816l_firmware","author":"cn-kali-team","tags":"detect,tech,dir-816l_firmware","severity":"info","metadata":{"fofa-query":["body=\"dir-816l\""],"product":"dir-816l_firmware","shodan-query":["html:\"dir-816l\"","http.html:\"dir-816l\""],"vendor":"dlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dir-816l"],"case-insensitive":true}]}]},{"id":"dar-8000-10_firmware","info":{"name":"dar-8000-10_firmware","author":"cn-kali-team","tags":"detect,tech,dar-8000-10_firmware","severity":"info","metadata":{"fofa-query":["body=\"dar-8000-10\" && title=\"d-link\""],"product":"dar-8000-10_firmware","vendor":"dlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" title=\"d-link","dar-8000-10\" "],"case-insensitive":true}]}]},{"id":"dns-320l","info":{"name":"dns-320l","author":"cn-kali-team","tags":"detect,tech,dns-320l","severity":"info","metadata":{"fofa-query":["body=\"text:in order to access the sharecenter\""],"product":"dns-320l","vendor":"dlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["text:in order to access the sharecenter"],"case-insensitive":true}]}]},{"id":"d-view_8","info":{"name":"d-view_8","author":"cn-kali-team","tags":"detect,tech,d-view_8","severity":"info","metadata":{"fofa-query":["icon_hash=\"-1317621215\""],"product":"d-view_8","shodan-query":["http.favicon.hash:-1317621215","http.favicon.hash:\"-1317621215\""],"vendor":"dlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1317621215"]}]}]},{"id":"dir-615","info":{"name":"dir-615","author":"cn-kali-team","tags":"detect,tech,dir-615","severity":"info","metadata":{"product":"dir-615","shodan-query":["http.title:\"roteador wireless\"","cpe:\"cpe:2.3:h:dlink:dir-615\""],"vendor":"dlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>roteador wireless.*?</title>"]}]}]},{"id":"dir-845l","info":{"name":"dir-845l","author":"cn-kali-team","tags":"detect,tech,dir-845l","severity":"info","metadata":{"product":"dir-845l","shodan-query":["dir-845l"],"vendor":"dlink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dir-845l"],"case-insensitive":true}]}]},{"id":"logstash","info":{"name":"logstash","author":"cn-kali-team","tags":"detect,tech,logstash","severity":"info","metadata":{"product":"logstash","shodan-query":["html:\"logstash\""],"vendor":"elastic","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["logstash"],"case-insensitive":true}]}]},{"id":"elasticsearch","info":{"name":"elasticsearch","author":"cn-kali-team","tags":"detect,tech,elasticsearch","severity":"info","metadata":{"fofa-query":["index_not_found_exception"],"product":"elasticsearch","vendor":"elastic","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["index_not_found_exception"],"case-insensitive":true}]}]},{"id":"kibana","info":{"name":"kibana","author":"cn-kali-team","tags":"detect,tech,kibana","severity":"info","metadata":{"fofa-query":["title=\"kibana\""],"google-query":["intitle:\"kibana\""],"product":"kibana","shodan-query":["http.title:\"kibana\""],"vendor":"elastic","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>kibana.*?</title>"]}]}]},{"id":"elastic","info":{"name":"elastic","author":"cn-kali-team","tags":"detect,tech,elastic","severity":"info","metadata":{"product":"elastic","vendor":"elastic","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["7d0688b40ba64da737b12a3257e6c7b3"]},{"type":"word","words":["<title>elastic</title>"],"case-insensitive":true},{"type":"word","words":["kbn-license-sig:"],"part":"header","case-insensitive":true}]}]},{"id":"craftercms","info":{"name":"craftercms","author":"cn-kali-team","tags":"detect,tech,craftercms","severity":"info","metadata":{"fofa-query":["body=\"craftercms\""],"product":"craftercms","shodan-query":["http.html:\"craftercms\""],"vendor":"craftercms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["craftercms"],"case-insensitive":true}]}]},{"id":"netalertx","info":{"name":"netalertx","author":"cn-kali-team","tags":"detect,tech,netalertx","severity":"info","metadata":{"fofa-query":["netalert x"],"product":"netalertx","vendor":"jokob-sk","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["netalert x"],"case-insensitive":true}]}]},{"id":"horde","info":{"name":"horde","author":"cn-kali-team","tags":"detect,tech,horde","severity":"info","metadata":{"product":"horde","vendor":"horde","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["_sethordetitle","imp: copyright 2001-2009 the horde project"],"case-insensitive":true}]}]},{"id":"cpanel","info":{"name":"cpanel","author":"cn-kali-team","tags":"detect,tech,cpanel","severity":"info","metadata":{"product":"cpanel","vendor":"cpanel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cpanel_magic_revision","go.cpanel.net"],"condition":"and","case-insensitive":true}]}]},{"id":"gocd","info":{"name":"gocd","author":"cn-kali-team","tags":"detect,tech,gocd","severity":"info","metadata":{"fofa-query":["title=\"create a pipeline - go\" html:\"gocd version\"","body=\"gocd version\""],"google-query":["intitle:\"create a pipeline - go\" html:\"gocd version\""],"product":"gocd","shodan-query":["http.title:\"create a pipeline - go\" html:\"gocd version\"","http.html:\"gocd version\""],"vendor":"thoughtworks","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["gocd version"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>create a pipeline - go\" html:\"gocd version.*?</title>"]}]}]},{"id":"application_security_gateway","info":{"name":"application_security_gateway","author":"cn-kali-team","tags":"detect,tech,application_security_gateway","severity":"info","metadata":{"fofa-query":["ns-icg"],"product":"application_security_gateway","vendor":"netentsec","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ns-icg"],"case-insensitive":true}]}]},{"id":"ns-asg","info":{"name":"ns-asg","author":"cn-kali-team","tags":"detect,tech,ns-asg","severity":"info","metadata":{"fofa-query":["app=\"网康科技-ns-asg安全网关\""],"product":"ns-asg","shodan-query":["http.title:“ns-asg”"],"vendor":"netentsec","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>“ns-asg”.*?</title>"]}]}]},{"id":"central_authentication_service","info":{"name":"central_authentication_service","author":"cn-kali-team","tags":"detect,tech,central_authentication_service","severity":"info","metadata":{"fofa-query":["title='cas - central authentication service'"],"google-query":["intitle:'cas - central authentication service'"],"product":"central_authentication_service","shodan-query":["http.title:'cas - central authentication service'"],"vendor":"apereo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>cas - central authentication service.*?</title>"]}]}]},{"id":"e-cology","info":{"name":"e-cology","author":"cn-kali-team","tags":"detect,tech,e-cology","severity":"info","metadata":{"fofa-query":["app=\"泛微-协同办公oa\"","app=\"泛微-e-weaver\""],"product":"e-cology","shodan-query":["ecology_jsessionid"],"vendor":"weaver","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ecology_jsessionid"],"case-insensitive":true}]}]},{"id":"laravel","info":{"name":"laravel","author":"cn-kali-team","tags":"detect,tech,laravel","severity":"info","metadata":{"fofa-query":["app=\"laravel-framework\""],"product":"laravel","shodan-query":["laravel-framework","cpe:\"cpe:2.3:a:laravel:laravel\""],"vendor":"laravel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["laravel-framework"],"case-insensitive":true}]}]},{"id":"gradio","info":{"name":"gradio","author":"cn-kali-team","tags":"detect,tech,gradio","severity":"info","metadata":{"fofa-query":["body=\"__gradio_mode__\"","title=\"gradio\""],"google-query":["intitle:\"gradio\""],"product":"gradio","shodan-query":["http.html:\"__gradio_mode__\"","http.title:\"gradio\""],"vendor":"gradio_app","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["__gradio_mode__"]},{"type":"regex","regex":["(?mi)<title[^>]*>gradio.*?</title>"]}]}]},{"id":"xwiki-platform","info":{"name":"xwiki-platform","author":"cn-kali-team","tags":"detect,tech,xwiki-platform","severity":"info","metadata":{"product":"xwiki-platform","shodan-query":["http.html:\"data-xwiki-reference\""],"vendor":"xwiki","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["data-xwiki-reference"],"case-insensitive":true}]}]},{"id":"xwiki","info":{"name":"xwiki","author":"cn-kali-team","tags":"detect,tech,xwiki","severity":"info","metadata":{"product":"xwiki","vendor":"xwiki","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["data-xwiki-reference="],"case-insensitive":true}]}]},{"id":"simplehelp","info":{"name":"simplehelp","author":"cn-kali-team","tags":"detect,tech,simplehelp","severity":"info","metadata":{"product":"simplehelp","shodan-query":["html:\"simplehelp\""],"vendor":"simple-help","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["simplehelp"],"case-insensitive":true}]}]},{"id":"metersphere","info":{"name":"metersphere","author":"cn-kali-team","tags":"detect,tech,metersphere","severity":"info","metadata":{"product":"metersphere","vendor":"metersphere","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>metersphere"],"case-insensitive":true}]}]},{"id":"emlog","info":{"name":"emlog","author":"cn-kali-team","tags":"detect,tech,emlog","severity":"info","metadata":{"fofa-query":["title=\"emlog\""],"product":"emlog","vendor":"emlog","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>emlog.*?</title>"]}]}]},{"id":"drupal","info":{"name":"drupal","author":"cn-kali-team","tags":"detect,tech,drupal","severity":"info","metadata":{"product":"drupal","vendor":"drupal","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/misc/drupal.js","/sites/all/modules/","/sites/all/themes/","/sites/default/files/","drupal.settings","powered by <a href=\"https://www.drupal.org\">drupal</a>","jquery.extend(drupal.settings"],"case-insensitive":true}]}]},{"id":"ur51","info":{"name":"ur51","author":"cn-kali-team","tags":"detect,tech,ur51","severity":"info","metadata":{"product":"ur51","shodan-query":["http.html:rt_title"],"vendor":"milesight","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["rt_title"],"case-insensitive":true}]}]},{"id":"aptus_web","info":{"name":"aptus_web","author":"cn-kali-team","tags":"detect,tech,aptus_web","severity":"info","metadata":{"fofa-query":["title=\"intellian aptus web\""],"google-query":["intitle:\"intellian aptus web\""],"product":"aptus_web","shodan-query":["http.title:\"intellian aptus web\""],"vendor":"intelliantech","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>intellian aptus web.*?</title>"]}]}]},{"id":"owncast","info":{"name":"owncast","author":"cn-kali-team","tags":"detect,tech,owncast","severity":"info","metadata":{"product":"owncast","shodan-query":["html:\"owncast\""],"vendor":"owncast_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["owncast"],"case-insensitive":true}]}]},{"id":"cherokee","info":{"name":"cherokee","author":"cn-kali-team","tags":"detect,tech,cherokee","severity":"info","metadata":{"product":"cherokee","vendor":"cherokee","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: cherokee"],"part":"header","case-insensitive":true}]}]},{"id":"nodebb","info":{"name":"nodebb","author":"cn-kali-team","tags":"detect,tech,nodebb","severity":"info","metadata":{"fofa-query":["title=\"nodebb\""],"product":"nodebb","shodan-query":["cpe:\"cpe:2.3:a:nodebb:nodebb\""],"vendor":"nodebb","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>nodebb.*?</title>"]}]}]},{"id":"mongo-express","info":{"name":"mongo-express","author":"cn-kali-team","tags":"detect,tech,mongo-express","severity":"info","metadata":{"fofa-query":["title=\"mongo express\""],"google-query":["intitle:\"mongo express\""],"product":"mongo-express","shodan-query":["http.title:\"mongo express\""],"vendor":"mongo-express_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>mongo express.*?</title>"]}]}]},{"id":"node-red-dashboard","info":{"name":"node-red-dashboard","author":"cn-kali-team","tags":"detect,tech,node-red-dashboard","severity":"info","metadata":{"fofa-query":["title=\"node-red\""],"google-query":["intitle:\"node-red\""],"product":"node-red-dashboard","shodan-query":["title:\"node-red\"","http.title:\"node-red\""],"vendor":"nodered","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>node-red.*?</title>"]}]}]},{"id":"node-red","info":{"name":"node-red","author":"cn-kali-team","tags":"detect,tech,node-red","severity":"info","metadata":{"product":"node-red","shodan-query":["http.favicon.hash:321591353"],"vendor":"nodered","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["321591353"]}]}]},{"id":"sysaid","info":{"name":"sysaid","author":"cn-kali-team","tags":"detect,tech,sysaid","severity":"info","metadata":{"fofa-query":["icon_hash=1540720428"],"product":"sysaid","shodan-query":["http.favicon.hash:1540720428"],"vendor":"sysaid","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1540720428"]}]}]},{"id":"sysaid_on-premises","info":{"name":"sysaid_on-premises","author":"cn-kali-team","tags":"detect,tech,sysaid_on-premises","severity":"info","metadata":{"fofa-query":["icon_hash=\"1540720428\""],"product":"sysaid_on-premises","shodan-query":["http.favicon.hash:1540720428","http.favicon.hash:\"1540720428\""],"vendor":"sysaid","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1540720428"]}]}]},{"id":"qdpm","info":{"name":"qdpm","author":"cn-kali-team","tags":"detect,tech,qdpm","severity":"info","metadata":{"fofa-query":["icon_hash=762074255"],"product":"qdpm","shodan-query":["http.favicon.hash:762074255"],"vendor":"qdpm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["762074255"]}]}]},{"id":"wordpress","info":{"name":"wordpress","author":"cn-kali-team","tags":"detect,tech,wordpress","severity":"info","metadata":{"product":"wordpress","vendor":"wordpress","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/themes/","/wp-content/uploads/","/wp-includes/","<link rel='stylesheet' id='wp-block-library-css","\\/wp-admin\\/admin-ajax.php\",\"","name=\"generator\" content=\"wordpress "],"case-insensitive":true}]}]},{"id":"extreme_management_center","info":{"name":"extreme_management_center","author":"cn-kali-team","tags":"detect,tech,extreme_management_center","severity":"info","metadata":{"fofa-query":["title=\"extreme management center\""],"google-query":["intitle:\"extreme management center\""],"product":"extreme_management_center","shodan-query":["title:\"extreme management center\"","http.title:\"extreme management center\""],"vendor":"extremenetworks","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>extreme management center.*?</title>"]}]}]},{"id":"linear_emerge_essential_firmware","info":{"name":"linear_emerge_essential_firmware","author":"cn-kali-team","tags":"detect,tech,linear_emerge_essential_firmware","severity":"info","metadata":{"fofa-query":["title=\"emerge\""],"google-query":["intitle:\"emerge\""],"product":"linear_emerge_essential_firmware","shodan-query":["http.title:\"emerge\"","title:\"emerge\""],"vendor":"nortekcontrol","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>emerge.*?</title>"]}]}]},{"id":"emerge_e3_firmware","info":{"name":"emerge_e3_firmware","author":"cn-kali-team","tags":"detect,tech,emerge_e3_firmware","severity":"info","metadata":{"fofa-query":["title=\"emerge\"","title=\"linear emerge\""],"google-query":["intitle:\"linear emerge\"","intitle:\"emerge\""],"product":"emerge_e3_firmware","shodan-query":["http.title:\"emerge\"","http.title:\"linear emerge\"","title:\"emerge\""],"vendor":"nortekcontrol","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>emerge.*?</title>","(?mi)<title[^>]*>linear emerge.*?</title>"]}]}]},{"id":"web2py","info":{"name":"web2py","author":"cn-kali-team","tags":"detect,tech,web2py","severity":"info","metadata":{"fofa-query":["icon_hash=-1680052984"],"product":"web2py","shodan-query":["http.favicon.hash:-1680052984"],"vendor":"web2py","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1680052984"]}]}]},{"id":"atomcms","info":{"name":"atomcms","author":"cn-kali-team","tags":"detect,tech,atomcms","severity":"info","metadata":{"product":"atomcms","shodan-query":["html:\"atomcms\""],"vendor":"thedigitalcraft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["atomcms"],"case-insensitive":true}]}]},{"id":"tooljet","info":{"name":"tooljet","author":"cn-kali-team","tags":"detect,tech,tooljet","severity":"info","metadata":{"product":"tooljet","shodan-query":["title:\"tooljet\""],"vendor":"tooljet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>tooljet.*?</title>"]}]}]},{"id":"sonlogger","info":{"name":"sonlogger","author":"cn-kali-team","tags":"detect,tech,sonlogger","severity":"info","metadata":{"fofa-query":["body=\"sonlogger\""],"product":"sonlogger","vendor":"sfcyazilim","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sonlogger"],"case-insensitive":true}]}]},{"id":"raspap","info":{"name":"raspap","author":"cn-kali-team","tags":"detect,tech,raspap","severity":"info","metadata":{"fofa-query":["icon_hash=-1465760059"],"product":"raspap","shodan-query":["http.favicon.hash:-1465760059"],"vendor":"raspap","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1465760059"]}]}]},{"id":"webtitan","info":{"name":"webtitan","author":"cn-kali-team","tags":"detect,tech,webtitan","severity":"info","metadata":{"fofa-query":["icon_hash=1090061843","title=\"webtitan\""],"product":"webtitan","shodan-query":["title:\"webtitan\"","http.favicon.hash:1090061843"],"vendor":"spamtitan","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1090061843"]},{"type":"regex","regex":["(?mi)<title[^>]*>webtitan.*?</title>"]}]}]},{"id":"spamtitan","info":{"name":"spamtitan","author":"cn-kali-team","tags":"detect,tech,spamtitan","severity":"info","metadata":{"product":"spamtitan","vendor":"spamtitan","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<table class=\"lhead\"><tr><td class=\"img\"><img src=\"/imgs/logo.gif\" alt=\"spamtitan logo\"></td></tr></table></div>"],"case-insensitive":true}]}]},{"id":"endpoint_manager_cloud_services_appliance","info":{"name":"endpoint_manager_cloud_services_appliance","author":"cn-kali-team","tags":"detect,tech,endpoint_manager_cloud_services_appliance","severity":"info","metadata":{"fofa-query":["title=\"landesk(r) cloud services appliance\""],"google-query":["intitle:\"landesk(r) cloud services appliance\""],"product":"endpoint_manager_cloud_services_appliance","shodan-query":["title:\"landesk(r) cloud services appliance\"","http.title:\"landesk(r) cloud services appliance\""],"vendor":"ivanti","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>landesk(r) cloud services appliance.*?</title>"]}]}]},{"id":"mobileiron_sentry","info":{"name":"mobileiron_sentry","author":"cn-kali-team","tags":"detect,tech,mobileiron_sentry","severity":"info","metadata":{"fofa-query":["body=\"note: requires a local sentry administrative user\""],"product":"mobileiron_sentry","shodan-query":["html:\"note: requires a local sentry administrative user\"","http.html:\"note: requires a local sentry administrative user\""],"vendor":"ivanti","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["note: requires a local sentry administrative user"],"case-insensitive":true}]}]},{"id":"mobileiron","info":{"name":"mobileiron","author":"cn-kali-team","tags":"detect,tech,mobileiron","severity":"info","metadata":{"product":"mobileiron","shodan-query":["http.html:\"mobileiron\""],"vendor":"ivanti","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mobileiron"],"case-insensitive":true}]}]},{"id":"endpoint_manager_mobile","info":{"name":"endpoint_manager_mobile","author":"cn-kali-team","tags":"detect,tech,endpoint_manager_mobile","severity":"info","metadata":{"fofa-query":["icon_hash=\"362091310\""],"product":"endpoint_manager_mobile","shodan-query":["http.favicon.hash:362091310","http.favicon.hash:\"362091310\""],"vendor":"ivanti","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["362091310"]}]}]},{"id":"virtual-traffic-manager","info":{"name":"virtual traffic manager","author":"cn-kali-team","tags":"detect,tech,virtual traffic manager","severity":"info","metadata":{"product":"virtual traffic manager","shodan-query":["http.favicon.hash:1862800928","html:\"apps/zxtm/login.cgi\""],"vendor":"ivanti","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["apps/zxtm/login.cgi"],"case-insensitive":true},{"type":"favicon","hash":["1862800928"]}]}]},{"id":"connect_secure","info":{"name":"connect_secure","author":"cn-kali-team","tags":"detect,tech,connect_secure","severity":"info","metadata":{"fofa-query":["body=\"welcome.cgi?p=logo\"","title=\"ivanti connect secure\""],"google-query":["intitle:\"ivanti connect secure\""],"product":"connect_secure","shodan-query":["http.html:\"welcome.cgi?p=logo\"","http.title:\"ivanti connect secure\"","html:\"welcome.cgi?p=logo\""],"vendor":"ivanti","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["welcome.cgi?p=logo"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>ivanti connect secure.*?</title>"]}]}]},{"id":"cliniccases","info":{"name":"cliniccases","author":"cn-kali-team","tags":"detect,tech,cliniccases","severity":"info","metadata":{"fofa-query":["title=\"cliniccases\",html:\"/cliniccases/\""],"google-query":["intitle:\"cliniccases\",html:\"/cliniccases/\""],"product":"cliniccases","shodan-query":["http.title:\"cliniccases\",html:\"/cliniccases/\""],"vendor":"cliniccases","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>cliniccases\",html:\"/cliniccases/.*?</title>"]}]}]},{"id":"camera_firmware","info":{"name":"camera_firmware","author":"cn-kali-team","tags":"detect,tech,camera_firmware","severity":"info","metadata":{"fofa-query":["app=\"acti-视频监控\""],"product":"camera_firmware","shodan-query":["title:\"web configurator\""],"vendor":"acti","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>web configurator.*?</title>"]}]}]},{"id":"azkaban","info":{"name":"azkaban","author":"cn-kali-team","tags":"detect,tech,azkaban","severity":"info","metadata":{"product":"azkaban","shodan-query":["http.title:\"azkaban web client\""],"vendor":"azkaban_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>azkaban web client.*?</title>"]}]}]},{"id":"jeedom","info":{"name":"jeedom","author":"cn-kali-team","tags":"detect,tech,jeedom","severity":"info","metadata":{"fofa-query":["title=\"jeedom\""],"google-query":["intitle:\"jeedom\""],"product":"jeedom","shodan-query":["http.title:\"jeedom\"","title:\"jeedom\""],"vendor":"jeedom","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>jeedom.*?</title>"]}]}]},{"id":"spip","info":{"name":"spip","author":"cn-kali-team","tags":"detect,tech,spip","severity":"info","metadata":{"fofa-query":["body=\"spip.php?page=backend\""],"product":"spip","shodan-query":["html:\"spip.php?page=backend\"","http.html:\"spip.php?page=backend\"","cpe:\"cpe:2.3:a:spip:spip\""],"vendor":"spip","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["spip.php?page=backend"],"case-insensitive":true}]}]},{"id":"zzcms","info":{"name":"zzcms","author":"cn-kali-team","tags":"detect,tech,zzcms","severity":"info","metadata":{"product":"zzcms","vendor":"zzcms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/inc/showuserlogin.php?style=h&t=math.random()"],"case-insensitive":true}]}]},{"id":"websitepanel","info":{"name":"websitepanel","author":"cn-kali-team","tags":"detect,tech,websitepanel","severity":"info","metadata":{"fofa-query":["title=\"websitepanel\" html:\"login\""],"google-query":["intitle:\"websitepanel\" html:\"login\""],"product":"websitepanel","shodan-query":["title:\"websitepanel\" html:\"login\"","http.title:\"websitepanel\" html:\"login\""],"vendor":"websitepanel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>websitepanel\" html:\"login.*?</title>"]}]}]},{"id":"jfrog","info":{"name":"jfrog","author":"cn-kali-team","tags":"detect,tech,jfrog","severity":"info","metadata":{"product":"jfrog","vendor":"jfrog","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta http-equiv=\"refresh\" content=\"0;url=/artifactory\">","src=/ui/img/jfrog"],"case-insensitive":true},{"type":"word","words":["location: /artifactory/"],"part":"header","case-insensitive":true}]}]},{"id":"splunk","info":{"name":"splunk","author":"cn-kali-team","tags":"detect,tech,splunk","severity":"info","metadata":{"product":"splunk","vendor":"splunk","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: splunkd","set-cookie: splunkweb_uid"],"part":"header","condition":"and","case-insensitive":true},{"type":"word","words":["server: splunkd","set-cookie: routeid"],"part":"header","condition":"and","case-insensitive":true},{"type":"word","words":["<title>303 see other</title>","content=\"splunk inc.\""],"case-insensitive":true}]}]},{"id":"timetrax","info":{"name":"timetrax","author":"cn-kali-team","tags":"detect,tech,timetrax","severity":"info","metadata":{"fofa-query":["icon_hash=\"-661694518\""],"product":"timetrax","vendor":"efrotech","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-661694518"]}]}]},{"id":"rundeck","info":{"name":"rundeck","author":"cn-kali-team","tags":"detect,tech,rundeck","severity":"info","metadata":{"fofa-query":["app=\"rundeck-login\""],"product":"rundeck","shodan-query":["title:\"rundeck\""],"vendor":"pagerduty","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>rundeck.*?</title>"]}]}]},{"id":"webpanel","info":{"name":"webpanel","author":"cn-kali-team","tags":"detect,tech,webpanel","severity":"info","metadata":{"fofa-query":["icon_hash=\"-356182173\""],"product":"webpanel","vendor":"control_webpanel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-356182173"]}]}]},{"id":"teampass","info":{"name":"teampass","author":"cn-kali-team","tags":"detect,tech,teampass","severity":"info","metadata":{"fofa-query":["body=\"teampass\""],"product":"teampass","shodan-query":["http.html:\"teampass\""],"vendor":"teampass","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["teampass"],"case-insensitive":true}]}]},{"id":"traefik","info":{"name":"traefik","author":"cn-kali-team","tags":"detect,tech,traefik","severity":"info","metadata":{"product":"traefik","vendor":"traefik","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["010d94298a0b83cc87846064dc26db44"]},{"type":"word","words":["content-security-policy: *.traefik.io;"],"part":"header","case-insensitive":true}]}]},{"id":"dedecms","info":{"name":"dedecms","author":"cn-kali-team","tags":"detect,tech,dedecms","severity":"info","metadata":{"product":"dedecms","vendor":"dedecms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/templets/default/style/dedecms.css","dedecms"],"condition":"and","case-insensitive":true},{"type":"word","words":["name=\"dede_fields","name=\"dede_fieldshash"],"condition":"and","case-insensitive":true},{"type":"word","words":["<form name=\"formsearch\" action=\"/plus/search.php\">","name=\"q\""],"condition":"and","case-insensitive":true},{"type":"word","words":["<a href=http://www.dedecms.com target='_blank'>power by dedecms</a>","<div><h3>dedecms error warning!</h3>","content=\"order by dede58.com\" />","http://www.dedecms.com/","power by dedecms"],"case-insensitive":true}]}]},{"id":"cmseasy","info":{"name":"cmseasy","author":"cn-kali-team","tags":"detect,tech,cmseasy","severity":"info","metadata":{"product":"cmseasy","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"cmseasy"],"case-insensitive":true}]}]},{"id":"smartertrack","info":{"name":"smartertrack","author":"cn-kali-team","tags":"detect,tech,smartertrack","severity":"info","metadata":{"fofa-query":["icon_hash=1410071322"],"product":"smartertrack","shodan-query":["http.favicon.hash:1410071322"],"vendor":"smartertools","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1410071322"]}]}]},{"id":"nvt_web_server","info":{"name":"nvt_web_server","author":"cn-kali-team","tags":"detect,tech,nvt_web_server","severity":"info","metadata":{"fofa-query":["body=\"/viewer/viewer.html\" && header=\"lighttpd\" && country=\"kr\""],"product":"nvt_web_server","vendor":"cellinx","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/viewer/viewer.html"],"case-insensitive":true}]}]},{"id":"raidenmaild","info":{"name":"raidenmaild","author":"cn-kali-team","tags":"detect,tech,raidenmaild","severity":"info","metadata":{"product":"raidenmaild","shodan-query":["html:\"raidenmaild\""],"vendor":"raidenmaild","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["raidenmaild"],"case-insensitive":true}]}]},{"id":"e1_zoom_firmware","info":{"name":"e1_zoom_firmware","author":"cn-kali-team","tags":"detect,tech,e1_zoom_firmware","severity":"info","metadata":{"fofa-query":["title=\"reolink\""],"google-query":["intitle:\"reolink\""],"product":"e1_zoom_firmware","shodan-query":["http.title:\"reolink\""],"vendor":"reolink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>reolink.*?</title>"]}]}]},{"id":"e1_zoom","info":{"name":"e1_zoom","author":"cn-kali-team","tags":"detect,tech,e1_zoom","severity":"info","metadata":{"fofa-query":["title=\"reolink\""],"google-query":["intitle:\"reolink\""],"product":"e1_zoom","shodan-query":["http.title:\"reolink\""],"vendor":"reolink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>reolink.*?</title>"]}]}]},{"id":"gitblit","info":{"name":"gitblit","author":"cn-kali-team","tags":"detect,tech,gitblit","severity":"info","metadata":{"fofa-query":["title=\"gitblit\"","body=\"gitblit\""],"google-query":["intitle:\"gitblit\""],"product":"gitblit","shodan-query":["http.html:\"gitblit\"","http.title:\"gitblit\"","title:\"gitblit\""],"vendor":"gitblit","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["gitblit"],"case-insensitive":true}]}]},{"id":"kubernetes","info":{"name":"kubernetes","author":"cn-kali-team","tags":"detect,tech,kubernetes","severity":"info","metadata":{"product":"kubernetes","vendor":"kubernetes","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<article class=\"post kubernetes","<b>kubernetes</b> listening","href=\"assets/images/kubernetes-logo.png","value=\"kubernetes"],"case-insensitive":true},{"type":"word","words":["www-authenticate: realm=\"kubernetes"],"part":"header","case-insensitive":true}]}]},{"id":"ipeakcms","info":{"name":"ipeakcms","author":"cn-kali-team","tags":"detect,tech,ipeakcms","severity":"info","metadata":{"fofa-query":["body=\"ipeak\" && body=\"3.5\""],"product":"ipeakcms","vendor":"ipeak","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["3.5","ipeak"],"case-insensitive":true}]}]},{"id":"sinema_remote_connect_server","info":{"name":"sinema_remote_connect_server","author":"cn-kali-team","tags":"detect,tech,sinema_remote_connect_server","severity":"info","metadata":{"fofa-query":["title=\"logon - sinema remote connect\""],"google-query":["intitle:\"logon - sinema remote connect\""],"product":"sinema_remote_connect_server","shodan-query":["title:\"logon - sinema remote connect\"","http.title:\"logon - sinema remote connect\""],"vendor":"siemens","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>logon - sinema remote connect.*?</title>"]}]}]},{"id":"http_file_server","info":{"name":"http_file_server","author":"cn-kali-team","tags":"detect,tech,http_file_server","severity":"info","metadata":{"fofa-query":["icon_hash=2124459909"],"product":"http_file_server","shodan-query":["http.favicon.hash:2124459909"],"vendor":"rejetto","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["2124459909"]}]}]},{"id":"prtg_network_monitor","info":{"name":"prtg_network_monitor","author":"cn-kali-team","tags":"detect,tech,prtg_network_monitor","severity":"info","metadata":{"fofa-query":["title=\"prtg\""],"google-query":["intitle:\"prtg\""],"product":"prtg_network_monitor","shodan-query":["title:\"prtg\"","http.title:\"prtg\""],"vendor":"paessler","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>prtg.*?</title>"]}]}]},{"id":"supervisor","info":{"name":"supervisor","author":"cn-kali-team","tags":"detect,tech,supervisor","severity":"info","metadata":{"fofa-query":["title=\"supervisor status\""],"google-query":["intitle:\"supervisor status\""],"product":"supervisor","shodan-query":["http.title:\"supervisor status\""],"vendor":"supervisord","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>supervisor status.*?</title>"]}]}]},{"id":"supervisord","info":{"name":"supervisord","author":"cn-kali-team","tags":"detect,tech,supervisord","severity":"info","metadata":{"product":"supervisord","vendor":"supervisord","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["images/supervisor.gif"],"case-insensitive":true}]}]},{"id":"netweaver_development_infrastructure","info":{"name":"netweaver_development_infrastructure","author":"cn-kali-team","tags":"detect,tech,netweaver_development_infrastructure","severity":"info","metadata":{"fofa-query":["body=\"sap netweaver\""],"product":"netweaver_development_infrastructure","shodan-query":["html:\"sap netweaver\"","http.html:\"sap netweaver\""],"vendor":"sap","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sap netweaver"],"case-insensitive":true}]}]},{"id":"netweaver","info":{"name":"netweaver","author":"cn-kali-team","tags":"detect,tech,netweaver","severity":"info","metadata":{"fofa-query":["icon_hash=-266008933"],"product":"netweaver","shodan-query":["http.favicon.hash:-266008933","cpe:\"cpe:2.3:a:sap:netweaver\""],"vendor":"sap","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-266008933"]}]}]},{"id":"knowledge_warehouse","info":{"name":"knowledge_warehouse","author":"cn-kali-team","tags":"detect,tech,knowledge_warehouse","severity":"info","metadata":{"fofa-query":["icon_hash=-266008933"],"product":"knowledge_warehouse","shodan-query":["http.favicon.hash:-266008933"],"vendor":"sap","verified":true,"zoomeye-query":["+app:\"sap netweaver application server httpd"]}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-266008933"]}]}]},{"id":"content_server","info":{"name":"content_server","author":"cn-kali-team","tags":"detect,tech,content_server","severity":"info","metadata":{"fofa-query":["icon_hash=-266008933"],"product":"content_server","shodan-query":["http.favicon.hash:-266008933"],"vendor":"sap","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-266008933"]}]}]},{"id":"sap_web_application_server","info":{"name":"sap_web_application_server","author":"cn-kali-team","tags":"detect,tech,sap_web_application_server","severity":"info","metadata":{"fofa-query":["body=\"sap business server pages team\""],"product":"sap_web_application_server","shodan-query":["html:\"sap business server pages team\"","http.html:\"sap business server pages team\""],"vendor":"sap","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sap business server pages team"],"case-insensitive":true}]}]},{"id":"netweaver_application_server_java","info":{"name":"netweaver_application_server_java","author":"cn-kali-team","tags":"detect,tech,netweaver_application_server_java","severity":"info","metadata":{"fofa-query":["icon_hash=-266008933"],"product":"netweaver_application_server_java","shodan-query":["http.favicon.hash:-266008933"],"vendor":"sap","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-266008933"]}]}]},{"id":"hybris","info":{"name":"hybris","author":"cn-kali-team","tags":"detect,tech,hybris","severity":"info","metadata":{"product":"hybris","shodan-query":["title:\"hybris\""],"vendor":"sap","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>hybris.*?</title>"]}]}]},{"id":"opensis","info":{"name":"opensis","author":"cn-kali-team","tags":"detect,tech,opensis","severity":"info","metadata":{"fofa-query":["title=\"opensis\""],"google-query":["intitle:\"opensis\""],"product":"opensis","shodan-query":["http.title:\"opensis\"","title:\"opensis\""],"vendor":"os4ed","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>opensis.*?</title>"]}]}]},{"id":"streaming_engine","info":{"name":"streaming_engine","author":"cn-kali-team","tags":"detect,tech,streaming_engine","severity":"info","metadata":{"fofa-query":["title=\"manager\" product:\"wowza streaming engine\""],"google-query":["intitle:\"manager\" product:\"wowza streaming engine\""],"product":"streaming_engine","shodan-query":["http.title:\"manager\" product:\"wowza streaming engine\"","cpe:\"cpe:2.3:a:wowza:streaming_engine\""],"vendor":"wowza","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>manager\" product:\"wowza streaming engine.*?</title>"]}]}]},{"id":"saltstack","info":{"name":"saltstack","author":"cn-kali-team","tags":"detect,tech,saltstack","severity":"info","metadata":{"product":"saltstack","vendor":"saltstack","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>saltstack</title>"],"case-insensitive":true},{"type":"word","words":["server: tornadoserver"],"part":"header","case-insensitive":true}]}]},{"id":"jumpserver","info":{"name":"jumpserver","author":"cn-kali-team","tags":"detect,tech,jumpserver","severity":"info","metadata":{"fofa-query":["title=\"jumpserver\""],"product":"jumpserver","vendor":"fit2cloud","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>jumpserver.*?</title>"]}]}]},{"id":"1panel","info":{"name":"1panel","author":"cn-kali-team","tags":"detect,tech,1panel","severity":"info","metadata":{"fofa-query":["icon_hash=\"1300107149\" || icon_hash=\"1453309674\" || cert.issuer.cn=\"1panel intermediate ca\""],"product":"1panel","vendor":"fit2cloud","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1300107149","1453309674"]}]}]},{"id":"kubeoperator","info":{"name":"kubeoperator","author":"cn-kali-team","tags":"detect,tech,kubeoperator","severity":"info","metadata":{"fofa-query":["app=\"kubeoperator\"","body=\"kubeoperator\""],"product":"kubeoperator","shodan-query":["html:\"kubeoperator\"","http.html:\"kubeoperator\""],"vendor":"fit2cloud","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["kubeoperator"],"case-insensitive":true}]}]},{"id":"kubepi","info":{"name":"kubepi","author":"cn-kali-team","tags":"detect,tech,kubepi","severity":"info","metadata":{"fofa-query":["kubepi","body=\"kubepi\""],"product":"kubepi","shodan-query":["html:\"kubepi\"","http.html:\"kubepi\""],"vendor":"fit2cloud","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["kubepi"],"case-insensitive":true}]}]},{"id":"spotweb","info":{"name":"spotweb","author":"cn-kali-team","tags":"detect,tech,spotweb","severity":"info","metadata":{"fofa-query":["title=\"spotweb - overview\""],"google-query":["intitle:\"spotweb - overview\""],"product":"spotweb","shodan-query":["title:\"spotweb - overview\"","http.title:\"spotweb - overview\""],"vendor":"spotweb_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>spotweb - overview.*?</title>"]}]}]},{"id":"revive_adserver","info":{"name":"revive_adserver","author":"cn-kali-team","tags":"detect,tech,revive_adserver","severity":"info","metadata":{"fofa-query":["icon_hash=106844876","title=\"revive adserver\""],"google-query":["intitle:\"revive adserver\""],"product":"revive_adserver","shodan-query":["http.favicon.hash:106844876","http.title:\"revive adserver\""],"vendor":"revive-sas","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["106844876"]},{"type":"regex","regex":["(?mi)<title[^>]*>revive adserver.*?</title>"]}]}]},{"id":"vantara_pentaho","info":{"name":"vantara_pentaho","author":"cn-kali-team","tags":"detect,tech,vantara_pentaho","severity":"info","metadata":{"product":"vantara_pentaho","shodan-query":["pentaho"],"vendor":"hitachi","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pentaho"],"case-insensitive":true}]}]},{"id":"vantara_pentaho_business_analytics_server","info":{"name":"vantara_pentaho_business_analytics_server","author":"cn-kali-team","tags":"detect,tech,vantara_pentaho_business_analytics_server","severity":"info","metadata":{"fofa-query":["icon_hash=1749354953"],"product":"vantara_pentaho_business_analytics_server","shodan-query":["http.favicon.hash:1749354953"],"vendor":"hitachi","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1749354953"]}]}]},{"id":"pm43_firmware","info":{"name":"pm43_firmware","author":"cn-kali-team","tags":"detect,tech,pm43_firmware","severity":"info","metadata":{"fofa-query":["body=\"/main/login.lua?pageid=\""],"product":"pm43_firmware","shodan-query":["http.html:\"/main/login.lua?pageid=\""],"vendor":"honeywell","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/main/login.lua?pageid="],"case-insensitive":true}]}]},{"id":"impresscms","info":{"name":"impresscms","author":"cn-kali-team","tags":"detect,tech,impresscms","severity":"info","metadata":{"fofa-query":["body=\"impresscms\""],"product":"impresscms","shodan-query":["http.html:\"impresscms\"","cpe:\"cpe:2.3:a:impresscms:impresscms\""],"vendor":"impresscms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["impresscms"],"case-insensitive":true}]}]},{"id":"builder","info":{"name":"builder","author":"cn-kali-team","tags":"detect,tech,builder","severity":"info","metadata":{"fofa-query":["body=\"wp-content/plugins/themify-builder/\""],"product":"builder","vendor":"themify","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wp-content/plugins/themify-builder/"],"case-insensitive":true}]}]},{"id":"qualitor","info":{"name":"qualitor","author":"cn-kali-team","tags":"detect,tech,qualitor","severity":"info","metadata":{"fofa-query":["qualitor"],"product":"qualitor","vendor":"qualitor","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["qualitor"],"case-insensitive":true}]}]},{"id":"mw5360_firmware","info":{"name":"mw5360_firmware","author":"cn-kali-team","tags":"detect,tech,mw5360_firmware","severity":"info","metadata":{"product":"mw5360_firmware","shodan-query":["title:\"netis router\""],"vendor":"netis-systems","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>netis router.*?</title>"]}]}]},{"id":"sigma_wide","info":{"name":"sigma_wide","author":"cn-kali-team","tags":"detect,tech,sigma_wide","severity":"info","metadata":{"product":"sigma_wide","shodan-query":["title:\"idemia\""],"vendor":"idemia","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>idemia.*?</title>"]}]}]},{"id":"jan","info":{"name":"jan","author":"cn-kali-team","tags":"detect,tech,jan","severity":"info","metadata":{"fofa-query":["icon_hash=\"-165268926\""],"product":"jan","vendor":"homebrew","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-165268926"]}]}]},{"id":"wordpress_toolbar","info":{"name":"wordpress_toolbar","author":"cn-kali-team","tags":"detect,tech,wordpress_toolbar","severity":"info","metadata":{"fofa-query":["body=/wp-content/plugins/wordpress-toolbar/"],"product":"wordpress_toolbar","shodan-query":["http.html:/wp-content/plugins/wordpress-toolbar/"],"vendor":"abhinavsingh","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/wordpress-toolbar/"],"case-insensitive":true}]}]},{"id":"churchcrm","info":{"name":"churchcrm","author":"cn-kali-team","tags":"detect,tech,churchcrm","severity":"info","metadata":{"fofa-query":["app=\"churchcrm\""],"product":"churchcrm","shodan-query":["title:\"churchcrm\""],"vendor":"churchcrm","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>churchcrm.*?</title>"]}]}]},{"id":"odoo","info":{"name":"odoo","author":"cn-kali-team","tags":"detect,tech,odoo","severity":"info","metadata":{"product":"odoo","vendor":"odoo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["a342fe863a8e41dff2a55410c7f118c5"]},{"type":"word","words":["<script id=\"web.layout.odooscript","odoo.__session_info__ = {"],"case-insensitive":true}]}]},{"id":"squirrelmail","info":{"name":"squirrelmail","author":"cn-kali-team","tags":"detect,tech,squirrelmail","severity":"info","metadata":{"product":"squirrelmail","vendor":"squirrelmail","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["function squirrelmail_loginpage_onload()"],"case-insensitive":true}]}]},{"id":"dataease","info":{"name":"dataease","author":"cn-kali-team","tags":"detect,tech,dataease","severity":"info","metadata":{"product":"dataease","shodan-query":["html:\"dataease\""],"vendor":"dataease_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dataease"],"case-insensitive":true}]}]},{"id":"netalertx","info":{"name":"netalertx","author":"cn-kali-team","tags":"detect,tech,netalertx","severity":"info","metadata":{"fofa-query":["title=\"netalertx\""],"product":"netalertx","vendor":"netalertx","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>netalertx.*?</title>"]}]}]},{"id":"reqlogic","info":{"name":"reqlogic","author":"cn-kali-team","tags":"detect,tech,reqlogic","severity":"info","metadata":{"fofa-query":["body=\"reqlogic\""],"product":"reqlogic","shodan-query":["http.html:\"reqlogic\""],"vendor":"reqlogic","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["reqlogic"],"case-insensitive":true}]}]},{"id":"pan-os","info":{"name":"pan-os","author":"cn-kali-team","tags":"detect,tech,pan-os","severity":"info","metadata":{"fofa-query":["icon_hash=\"-631559155\""],"product":"pan-os","shodan-query":["http.favicon.hash:\"-631559155\"","cpe:\"cpe:2.3:o:paloaltonetworks:pan-os\"","http.favicon.hash:-631559155"],"vendor":"paloaltonetworks","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-631559155"]}]}]},{"id":"expedition","info":{"name":"expedition","author":"cn-kali-team","tags":"detect,tech,expedition","severity":"info","metadata":{"product":"expedition","shodan-query":["http.favicon.hash:1499876150"],"vendor":"paloaltonetworks","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1499876150"]}]}]},{"id":"webmin","info":{"name":"webmin","author":"cn-kali-team","tags":"detect,tech,webmin","severity":"info","metadata":{"product":"webmin","vendor":"webmin","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["webmin","session_login"],"condition":"and","case-insensitive":true},{"type":"word","words":["webmin server on"],"case-insensitive":true}]}]},{"id":"usermin","info":{"name":"usermin","author":"cn-kali-team","tags":"detect,tech,usermin","severity":"info","metadata":{"fofa-query":["app=\"usermin\""],"product":"usermin","shodan-query":["title:\"usermin\""],"vendor":"webmin","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>usermin.*?</title>"]}]}]},{"id":"listserv","info":{"name":"listserv","author":"cn-kali-team","tags":"detect,tech,listserv","severity":"info","metadata":{"fofa-query":["body=\"listserv\""],"product":"listserv","shodan-query":["http.html:\"listserv\""],"vendor":"lsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["listserv"],"case-insensitive":true}]}]},{"id":"gogs","info":{"name":"gogs","author":"cn-kali-team","tags":"detect,tech,gogs","severity":"info","metadata":{"product":"gogs","vendor":"gogs","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a class=\"item\" target=\"_blank\" href=\"https://gogs.io/docs\" rel=\"noreferrer\">帮助</a>","content=\"gogs"],"case-insensitive":true}]}]},{"id":"my_cloud_wdbctl0020hwt_firmware","info":{"name":"my_cloud_wdbctl0020hwt_firmware","author":"cn-kali-team","tags":"detect,tech,my_cloud_wdbctl0020hwt_firmware","severity":"info","metadata":{"fofa-query":["icon_hash=-1074357885"],"product":"my_cloud_wdbctl0020hwt_firmware","shodan-query":["http.favicon.hash:-1074357885"],"vendor":"western_digital","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1074357885"]}]}]},{"id":"mycloud_nas","info":{"name":"mycloud_nas","author":"cn-kali-team","tags":"detect,tech,mycloud_nas","severity":"info","metadata":{"fofa-query":["icon_hash=-1074357885"],"product":"mycloud_nas","shodan-query":["http.favicon.hash:-1074357885"],"vendor":"western_digital","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1074357885"]}]}]},{"id":"cs141","info":{"name":"cs141","author":"cn-kali-team","tags":"detect,tech,cs141","severity":"info","metadata":{"product":"cs141","shodan-query":["http.html:\"cs141\""],"vendor":"generex","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cs141"],"case-insensitive":true}]}]},{"id":"fuel_cms","info":{"name":"fuel_cms","author":"cn-kali-team","tags":"detect,tech,fuel_cms","severity":"info","metadata":{"fofa-query":["title=\"fuel cms\""],"google-query":["intitle:\"fuel cms\""],"product":"fuel_cms","shodan-query":["http.title:\"fuel cms\""],"vendor":"thedaylightstudio","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>fuel cms.*?</title>"]}]}]},{"id":"drawio","info":{"name":"drawio","author":"cn-kali-team","tags":"detect,tech,drawio","severity":"info","metadata":{"fofa-query":["title=\"flowchart maker\""],"google-query":["intitle:\"flowchart maker\""],"product":"drawio","shodan-query":["http.title:\"flowchart maker\""],"vendor":"diagrams","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>flowchart maker.*?</title>"]}]}]},{"id":"printmonitor","info":{"name":"printmonitor","author":"cn-kali-team","tags":"detect,tech,printmonitor","severity":"info","metadata":{"fofa-query":["title=\"printmonitor\""],"google-query":["intitle:\"printmonitor\""],"product":"printmonitor","shodan-query":["title:\"printmonitor\"","http.title:\"printmonitor\""],"vendor":"titool","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>printmonitor.*?</title>"]}]}]},{"id":"moosocial","info":{"name":"moosocial","author":"cn-kali-team","tags":"detect,tech,moosocial","severity":"info","metadata":{"fofa-query":["icon_hash=\"702863115\""],"product":"moosocial","shodan-query":["http.favicon.hash:\"702863115\"","http.favicon.hash:702863115"],"vendor":"moosocial","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["702863115"]}]}]},{"id":"moostore","info":{"name":"moostore","author":"cn-kali-team","tags":"detect,tech,moostore","severity":"info","metadata":{"fofa-query":["moosocial","icon_hash=\"702863115\""],"product":"moostore","shodan-query":["http.favicon.hash:\"702863115\""],"vendor":"moosocial","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["moosocial"],"case-insensitive":true},{"type":"favicon","hash":["702863115"]}]}]},{"id":"contao","info":{"name":"contao","author":"cn-kali-team","tags":"detect,tech,contao","severity":"info","metadata":{"fofa-query":["body=\"contao open source cms\"","title=\"contao\""],"google-query":["intitle:\"contao\""],"product":"contao","shodan-query":["title:\"contao\"","http.title:\"contao\"","http.html:\"contao open source cms\"","cpe:\"cpe:2.3:a:contao:contao\""],"vendor":"contao","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["contao open source cms"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>contao.*?</title>"]}]}]},{"id":"centreon","info":{"name":"centreon","author":"cn-kali-team","tags":"detect,tech,centreon","severity":"info","metadata":{"product":"centreon","vendor":"centreon","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["generator\" content=\"centreon - copyright"],"case-insensitive":true}]}]},{"id":"f5-big-ip","info":{"name":"f5-big-ip","author":"cn-kali-team","tags":"detect,tech,f5-big-ip","severity":"info","metadata":{"product":"big-ip","vendor":"f5","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"f5 networks, inc.\""],"case-insensitive":true},{"type":"word","words":["set-cookie: bigipserverpool"],"part":"header","case-insensitive":true}]}]},{"id":"big-ip_access_policy_manager","info":{"name":"big-ip_access_policy_manager","author":"cn-kali-team","tags":"detect,tech,big-ip_access_policy_manager","severity":"info","metadata":{"fofa-query":["title=\"big-ip®-+redirect\" +\"server\""],"google-query":["intitle:\"big-ip®-+redirect\" +\"server\""],"product":"big-ip_access_policy_manager","shodan-query":["http.title:\"big-ip®-+redirect\" +\"server\""],"vendor":"f5","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>big-ip.*?</title>"]}]}]},{"id":"nginx","info":{"name":"nginx","author":"cn-kali-team","tags":"detect,tech,nginx","severity":"info","metadata":{"product":"nginx","vendor":"f5","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: nginx"],"part":"header","case-insensitive":true}],"extractors":[{"name":"version","part":"header","type":"regex","regex":["(?x)nginx\\/(\\d+\\.\\d+\\.\\d+)"]}]}]},{"id":"wpb-show-core","info":{"name":"wpb-show-core","author":"cn-kali-team","tags":"detect,tech,wpb-show-core","severity":"info","metadata":{"fofa-query":["body=\"wp-content/plugins/wpb-show-core/\""],"product":"wpb-show-core","vendor":"wpb-show-core-project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wp-content/plugins/wpb-show-core/"],"case-insensitive":true}]}]},{"id":"modoboa","info":{"name":"modoboa","author":"cn-kali-team","tags":"detect,tech,modoboa","severity":"info","metadata":{"fofa-query":["body=\"modoboa\"","icon_hash=1949005079"],"product":"modoboa","shodan-query":["html:\"modoboa\"","http.favicon.hash:1949005079","http.html:\"modoboa\""],"vendor":"modoboa","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["modoboa"],"case-insensitive":true},{"type":"favicon","hash":["1949005079"]}]}]},{"id":"strapi","info":{"name":"strapi","author":"cn-kali-team","tags":"detect,tech,strapi","severity":"info","metadata":{"fofa-query":["app=\"strapi-headless-cms\""],"product":"strapi","shodan-query":["html:\"welcome to your strapi app\""],"vendor":"strapi","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["welcome to your strapi app"],"case-insensitive":true}]}]},{"id":"dt80_dex_firmware","info":{"name":"dt80_dex_firmware","author":"cn-kali-team","tags":"detect,tech,dt80_dex_firmware","severity":"info","metadata":{"fofa-query":["title=\"datataker\""],"google-query":["intitle:\"datataker\""],"product":"dt80_dex_firmware","shodan-query":["http.title:\"datataker\""],"vendor":"datataker","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>datataker.*?</title>"]}]}]},{"id":"ipm-721s_firmware","info":{"name":"ipm-721s_firmware","author":"cn-kali-team","tags":"detect,tech,ipm-721s_firmware","severity":"info","metadata":{"fofa-query":["amcrest","body=\"amcrest\""],"product":"ipm-721s_firmware","shodan-query":["html:\"amcrest\"","http.html:\"amcrest\""],"vendor":"amcrest","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["amcrest"],"case-insensitive":true}]}]},{"id":"relevanssi","info":{"name":"relevanssi","author":"cn-kali-team","tags":"detect,tech,relevanssi","severity":"info","metadata":{"fofa-query":["/wp-content/plugins/relevanssi/"],"product":"relevanssi","vendor":"relevanssi","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/relevanssi/"],"case-insensitive":true}]}]},{"id":"vpn","info":{"name":"vpn","author":"cn-kali-team","tags":"detect,tech,vpn","severity":"info","metadata":{"product":"vpn","shodan-query":["title:\"softether vpn server\""],"vendor":"softether","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>softether vpn server.*?</title>"]},{"type":"word","words":["<li>manage this vpn server or vpn bridge<ul>"],"case-insensitive":true}]}]},{"id":"extplorer","info":{"name":"extplorer","author":"cn-kali-team","tags":"detect,tech,extplorer","severity":"info","metadata":{"product":"extplorer","vendor":"extplorer","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/extplorer.ico"],"case-insensitive":true}]}]},{"id":"cyberpanel","info":{"name":"cyberpanel","author":"cn-kali-team","tags":"detect,tech,cyberpanel","severity":"info","metadata":{"fofa-query":["app=\"cyberpanel\""],"product":"cyberpanel","shodan-query":["html:\"cyberpanel\""],"vendor":"cyberpanel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cyberpanel"],"case-insensitive":true}]}]},{"id":"usg9500","info":{"name":"usg9500","author":"cn-kali-team","tags":"detect,tech,usg9500","severity":"info","metadata":{"product":"usg9500","shodan-query":["title:\"huawei\""],"vendor":"huawei","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>huawei.*?</title>"]}]}]},{"id":"hg532e","info":{"name":"hg532e","author":"cn-kali-team","tags":"detect,tech,hg532e","severity":"info","metadata":{"product":"hg532e","shodan-query":["http.html:\"hg532e\""],"vendor":"huawei","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hg532e"],"case-insensitive":true}]}]},{"id":"hg255s","info":{"name":"hg255s","author":"cn-kali-team","tags":"detect,tech,hg255s","severity":"info","metadata":{"product":"hg255s","shodan-query":["http.html:\"hg532e\""],"vendor":"huawei","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hg532e"],"case-insensitive":true}]}]},{"id":"media-suite","info":{"name":"media-suite","author":"cn-kali-team","tags":"detect,tech,media-suite","severity":"info","metadata":{"fofa-query":["harman media suite"],"product":"media-suite","vendor":"harman","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["harman media suite"],"case-insensitive":true}]}]},{"id":"report","info":{"name":"report","author":"cn-kali-team","tags":"detect,tech,report","severity":"info","metadata":{"fofa-query":["app=\"aj-report\""],"product":"report","shodan-query":["http.title:\"aj-report\""],"vendor":"anji-plus","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>aj-report.*?</title>"]}]}]},{"id":"aj-report","info":{"name":"aj-report","author":"cn-kali-team","tags":"detect,tech,aj-report","severity":"info","metadata":{"fofa-query":["title=\"aj-report\""],"product":"aj-report","vendor":"anji-plus","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>aj-report.*?</title>"]}]}]},{"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":"access_manager","info":{"name":"access_manager","author":"cn-kali-team","tags":"detect,tech,access_manager","severity":"info","metadata":{"fofa-query":["body=\"/oam/pages/css/login_page.css\"","title=\"oracle access management\""],"google-query":["intitle:\"oracle access management\""],"product":"access_manager","shodan-query":["http.title:\"oracle access management\"","http.html:\"/oam/pages/css/login_page.css\""],"vendor":"oracle","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/oam/pages/css/login_page.css"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>oracle access management.*?</title>"]}]}]},{"id":"fusion_middleware","info":{"name":"fusion_middleware","author":"cn-kali-team","tags":"detect,tech,fusion_middleware","severity":"info","metadata":{"fofa-query":["title=\"weblogic\"","body=\"weblogic application server\""],"google-query":["intitle:\"weblogic\""],"product":"fusion_middleware","shodan-query":["http.title:\"weblogic\"","http.html:\"weblogic application server\"","title:\"weblogic\""],"vendor":"oracle","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["weblogic application server"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>weblogic.*?</title>"]}]}]},{"id":"retail_xstore_office","info":{"name":"retail_xstore_office","author":"cn-kali-team","tags":"detect,tech,retail_xstore_office","severity":"info","metadata":{"product":"retail_xstore_office","shodan-query":["html:\"xstoremgwt\""],"vendor":"oracle","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["xstoremgwt"],"case-insensitive":true}]}]},{"id":"weblogic_server","info":{"name":"weblogic_server","author":"cn-kali-team","tags":"detect,tech,weblogic_server","severity":"info","metadata":{"fofa-query":["title=\"oracle peoplesoft sign-in\""],"google-query":["intitle:\"oracle peoplesoft sign-in\""],"product":"weblogic_server","shodan-query":["http.title:\"oracle peoplesoft sign-in\"","product:\"oracle weblogic\"","title:\"oracle peoplesoft sign-in\""],"vendor":"oracle","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>oracle peoplesoft sign-in.*?</title>"]}]}]},{"id":"peoplesoft_enterprise_peopletools","info":{"name":"peoplesoft_enterprise_peopletools","author":"cn-kali-team","tags":"detect,tech,peoplesoft_enterprise_peopletools","severity":"info","metadata":{"product":"peoplesoft_enterprise_peopletools","shodan-query":["title:\"oracle peoplesoft sign-in\""],"vendor":"oracle","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>oracle peoplesoft sign-in.*?</title>"]}]}]},{"id":"identity_manager","info":{"name":"identity_manager","author":"cn-kali-team","tags":"detect,tech,identity_manager","severity":"info","metadata":{"fofa-query":["title=\"oracle access management\""],"product":"identity_manager","shodan-query":["title:\"oracle access management\""],"vendor":"oracle","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>oracle access management.*?</title>"]}]}]},{"id":"business_intelligence","info":{"name":"business_intelligence","author":"cn-kali-team","tags":"detect,tech,business_intelligence","severity":"info","metadata":{"fofa-query":["title=\"oracle business intelligence sign in\""],"google-query":["intitle:\"oracle business intelligence sign in\""],"product":"business_intelligence","shodan-query":["http.title:\"oracle business intelligence sign in\""],"vendor":"oracle","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>oracle business intelligence sign in.*?</title>"]}]}]},{"id":"e-business_suite","info":{"name":"e-business_suite","author":"cn-kali-team","tags":"detect,tech,e-business_suite","severity":"info","metadata":{"fofa-query":["title=\"login\" \"x-oracle-dms-ecid\" 200"],"google-query":["intitle:\"login\" \"x-oracle-dms-ecid\" 200"],"product":"e-business_suite","shodan-query":["http.title:\"login\" \"x-oracle-dms-ecid\" 200"],"vendor":"oracle","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>login\" \"x-oracle-dms-ecid\" 200.*?</title>"]}]}]},{"id":"peoplesoft_enterprise","info":{"name":"peoplesoft_enterprise","author":"cn-kali-team","tags":"detect,tech,peoplesoft_enterprise","severity":"info","metadata":{"fofa-query":["title=\"oracle peoplesoft enterprise\""],"google-query":["intitle:\"oracle peoplesoft enterprise\""],"product":"peoplesoft_enterprise","shodan-query":["http.title:\"oracle peoplesoft enterprise\""],"vendor":"oracle","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>oracle peoplesoft enterprise.*?</title>"]}]}]},{"id":"erxes","info":{"name":"erxes","author":"cn-kali-team","tags":"detect,tech,erxes","severity":"info","metadata":{"fofa-query":["title=\"erxes\""],"google-query":["intitle:\"erxes\""],"product":"erxes","shodan-query":["http.title:\"erxes\""],"vendor":"erxes","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>erxes.*?</title>"]}]}]},{"id":"cobranca","info":{"name":"cobranca","author":"cn-kali-team","tags":"detect,tech,cobranca","severity":"info","metadata":{"fofa-query":["icon_hash=876876147"],"product":"cobranca","shodan-query":["http.favicon.hash:876876147"],"vendor":"virtuasoftware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["876876147"]}]}]},{"id":"car_rental_management_system","info":{"name":"car_rental_management_system","author":"cn-kali-team","tags":"detect,tech,car_rental_management_system","severity":"info","metadata":{"fofa-query":["body=\"car rental management system\""],"product":"car_rental_management_system","shodan-query":["http.html:\"car rental management system\""],"vendor":"car_rental_management_system_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["car rental management system"],"case-insensitive":true}]}]},{"id":"wp-automatic","info":{"name":"wp-automatic","author":"cn-kali-team","tags":"detect,tech,wp-automatic","severity":"info","metadata":{"fofa-query":["wp-content/plugins/wp-automatic/"],"google-query":["inurl:\"/wp-content/plugins/wp-automatic/\""],"product":"wp-automatic","shodan-query":["http.html:\"wp-content/plugins/wp-automatic/\""],"vendor":"valvepress","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wp-content/plugins/wp-automatic/"]}]}]},{"id":"atlassian-jira","info":{"name":"atlassian-jira","author":"cn-kali-team","tags":"detect,tech,atlassian-jira","severity":"info","metadata":{"product":"jira","vendor":"atlassian","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ams-build-number","com.atlassian.jira","jira.webresources"],"case-insensitive":true},{"type":"word","words":["location: /secure/setupmode!default.jspa"],"part":"header","case-insensitive":true}]}]},{"id":"aim","info":{"name":"aim","author":"cn-kali-team","tags":"detect,tech,aim","severity":"info","metadata":{"fofa-query":["icon_hash=\"-1047157256\""],"product":"aim","vendor":"aimstack","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1047157256"]}]}]},{"id":"clusterengine","info":{"name":"clusterengine","author":"cn-kali-team","tags":"detect,tech,clusterengine","severity":"info","metadata":{"fofa-query":["title=\"tscev4.0\""],"product":"clusterengine","vendor":"inspur","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>tscev4.0.*?</title>"]}]}]},{"id":"phpldapadmin","info":{"name":"phpldapadmin","author":"cn-kali-team","tags":"detect,tech,phpldapadmin","severity":"info","metadata":{"product":"phpldapadmin","shodan-query":["html:\"phpldapadmin\""],"vendor":"phpldapadmin_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["phpldapadmin"],"case-insensitive":true}]}]},{"id":"joplin","info":{"name":"joplin","author":"cn-kali-team","tags":"detect,tech,joplin","severity":"info","metadata":{"product":"joplin","shodan-query":["title:\"joplin server\""],"vendor":"joplin_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>joplin server.*?</title>"]}]}]},{"id":"appwrite","info":{"name":"appwrite","author":"cn-kali-team","tags":"detect,tech,appwrite","severity":"info","metadata":{"product":"appwrite","vendor":"appwrite","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>sign in - appwrite</title>"],"case-insensitive":true}]}]},{"id":"rpcms","info":{"name":"rpcms","author":"cn-kali-team","tags":"detect,tech,rpcms","severity":"info","metadata":{"fofa-query":["body=\"rpcms\""],"product":"rpcms","shodan-query":["http.html:\"rpcms\""],"vendor":"rpcms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["rpcms"],"case-insensitive":true}]}]},{"id":"dify","info":{"name":"dify","author":"cn-kali-team","tags":"detect,tech,dify","severity":"info","metadata":{"fofa-query":["icon_hash=\"97378986\""],"product":"dify","shodan-query":["http.favicon.hash:\"97378986\""],"vendor":"langgenius","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["97378986"]},{"type":"word","words":["<title>dify</title>"],"case-insensitive":true},{"type":"favicon","hash":["97378986"]}]}]},{"id":"ueditor","info":{"name":"ueditor","author":"cn-kali-team","tags":"detect,tech,ueditor","severity":"info","metadata":{"product":"ueditor","shodan-query":["html:\"ueditor\""],"vendor":"baidu","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ueditor"],"case-insensitive":true}]}]},{"id":"smart_parking_management","info":{"name":"smart_parking_management","author":"cn-kali-team","tags":"detect,tech,smart_parking_management","severity":"info","metadata":{"fofa-query":["body=\"/wpms/asset\""],"product":"smart_parking_management","shodan-query":["html:\"/wpms/asset\"","http.html:\"/wpms/asset\""],"vendor":"dahuasecurity","verified":true,"zoomeye-query":["/wpms/asset"]}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wpms/asset"],"case-insensitive":true}]}]},{"id":"dh-ipc-hdbw23a0rn-zs_firmware","info":{"name":"dh-ipc-hdbw23a0rn-zs_firmware","author":"cn-kali-team","tags":"detect,tech,dh-ipc-hdbw23a0rn-zs_firmware","severity":"info","metadata":{"fofa-query":["icon_hash=2019488876"],"product":"dh-ipc-hdbw23a0rn-zs_firmware","shodan-query":["http.favicon.hash:2019488876"],"vendor":"dahuasecurity","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["2019488876"]}]}]},{"id":"connection_broker","info":{"name":"connection_broker","author":"cn-kali-team","tags":"detect,tech,connection_broker","severity":"info","metadata":{"product":"connection_broker","shodan-query":["http.title:\"leostream\""],"vendor":"leostream","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>leostream.*?</title>"]}]}]},{"id":"mobile-security-framework","info":{"name":"mobile-security-framework","author":"cn-kali-team","tags":"detect,tech,mobile-security-framework","severity":"info","metadata":{"fofa-query":["title=\"mobsf\""],"product":"mobile-security-framework","vendor":"mobsf_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>mobsf.*?</title>"]}]}]},{"id":"vitogate_300_firmware","info":{"name":"vitogate_300_firmware","author":"cn-kali-team","tags":"detect,tech,vitogate_300_firmware","severity":"info","metadata":{"fofa-query":["title=\"vitogate 300\""],"google-query":["intitle:\"vitogate 300\""],"product":"vitogate_300_firmware","shodan-query":["title:\"vitogate 300\"","http.title:\"vitogate 300\""],"vendor":"viessmann","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>vitogate 300.*?</title>"]}]}]},{"id":"g0","info":{"name":"g0","author":"cn-kali-team","tags":"detect,tech,g0","severity":"info","metadata":{"fofa-query":["title=\"tenda | login\" && country=\"cn\""],"product":"g0","vendor":"tendacn","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>tenda.*?</title>"]}]}]},{"id":"eventum","info":{"name":"eventum","author":"cn-kali-team","tags":"detect,tech,eventum","severity":"info","metadata":{"fofa-query":["icon_hash=305412257"],"product":"eventum","shodan-query":["http.favicon.hash:305412257"],"vendor":"eventum_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["305412257"]}]}]},{"id":"crushftp","info":{"name":"crushftp","author":"cn-kali-team","tags":"detect,tech,crushftp","severity":"info","metadata":{"fofa-query":["body=\"crushftp\""],"product":"crushftp","shodan-query":["html:\"crushftp\"","http.html:\"crushftp\""],"vendor":"crushftp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["crushftp"],"case-insensitive":true}]}]},{"id":"3cx","info":{"name":"3cx","author":"cn-kali-team","tags":"detect,tech,3cx","severity":"info","metadata":{"product":"3cx","shodan-query":["http.title:\"3cx phone system management console\""],"vendor":"3cx","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>3cx phone system management console.*?</title>"]}]}]},{"id":"acutoweb","info":{"name":"acutoweb","author":"cn-kali-team","tags":"detect,tech,acutoweb","severity":"info","metadata":{"fofa-query":["title=\"acutoweb\""],"product":"acutoweb","shodan-query":["title:\"acutoweb\""],"vendor":"opentext","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>acutoweb.*?</title>"]}]}]},{"id":"api_manager","info":{"name":"api_manager","author":"cn-kali-team","tags":"detect,tech,api_manager","severity":"info","metadata":{"fofa-query":["icon_hash=1398055326"],"google-query":["inurl:\"carbon/admin/login\""],"product":"api_manager","shodan-query":["http.favicon.hash:1398055326"],"vendor":"wso2","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1398055326"]}]}]},{"id":"wso2","info":{"name":"wso2","author":"cn-kali-team","tags":"detect,tech,wso2","severity":"info","metadata":{"product":"wso2","shodan-query":["wso2 carbon server"],"vendor":"wso2","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wso2 carbon server"],"case-insensitive":true}]}]},{"id":"network_security_manager","info":{"name":"network_security_manager","author":"cn-kali-team","tags":"detect,tech,network_security_manager","severity":"info","metadata":{"product":"network_security_manager","shodan-query":["title:\"sonicwall network security\""],"vendor":"sonicwall","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>sonicwall network security.*?</title>"]}]}]},{"id":"sma1000","info":{"name":"sma1000","author":"cn-kali-team","tags":"detect,tech,sma1000","severity":"info","metadata":{"fofa-query":["title=\"appliance management console login\""],"google-query":["intitle:\"appliance management console login\""],"product":"sma1000","shodan-query":["title:\"appliance management console login\""],"vendor":"sonicwall","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>appliance management console login.*?</title>"]}]}]},{"id":"analytics","info":{"name":"analytics","author":"cn-kali-team","tags":"detect,tech,analytics","severity":"info","metadata":{"fofa-query":["icon_hash=-1381126564"],"product":"analytics","shodan-query":["http.favicon.hash:-1381126564"],"vendor":"sonicwall","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1381126564"]}]}]},{"id":"prison_management_system","info":{"name":"prison_management_system","author":"cn-kali-team","tags":"detect,tech,prison_management_system","severity":"info","metadata":{"product":"prison_management_system","shodan-query":["title:\"prison management system\""],"vendor":"prison_management_system_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>prison management system.*?</title>"]}]}]},{"id":"aruba_instant","info":{"name":"aruba_instant","author":"cn-kali-team","tags":"detect,tech,aruba_instant","severity":"info","metadata":{"fofa-query":["body=\"jscripts/third_party/raphael-treemap.min.js\" || body=\"jscripts/third_party/highcharts.src.js\""],"product":"aruba_instant","vendor":"arubanetworks","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jscripts/third_party/highcharts.src.js","jscripts/third_party/raphael-treemap.min.js"],"case-insensitive":true}]}]},{"id":"workspace_one_uem_console","info":{"name":"workspace_one_uem_console","author":"cn-kali-team","tags":"detect,tech,workspace_one_uem_console","severity":"info","metadata":{"fofa-query":["banner=\"/airwatch/default.aspx\" || header=\"/airwatch/default.aspx\""],"product":"workspace_one_uem_console","shodan-query":["html:\"/airwatch/default.aspx\""],"vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/airwatch/default.aspx"],"case-insensitive":true}]}]},{"id":"vrealize_log_insight","info":{"name":"vrealize_log_insight","author":"cn-kali-team","tags":"detect,tech,vrealize_log_insight","severity":"info","metadata":{"fofa-query":["title=\"vrealize log insight\""],"google-query":["intitle:\"vrealize log insight\""],"product":"vrealize_log_insight","shodan-query":["http.title:\"vrealize log insight\""],"vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>vrealize log insight.*?</title>"]}]}]},{"id":"vrealize_operations_manager","info":{"name":"vrealize_operations_manager","author":"cn-kali-team","tags":"detect,tech,vrealize_operations_manager","severity":"info","metadata":{"product":"vrealize_operations_manager","shodan-query":["title:\"vrealize operations manager\""],"vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>vrealize operations manager.*?</title>"]}]}]},{"id":"cloud_foundation","info":{"name":"cloud_foundation","author":"cn-kali-team","tags":"detect,tech,cloud_foundation","severity":"info","metadata":{"product":"cloud_foundation","shodan-query":["title:\"vmware cloud\""],"vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>vmware cloud.*?</title>"]}]}]},{"id":"vrealize_network_insight","info":{"name":"vrealize_network_insight","author":"cn-kali-team","tags":"detect,tech,vrealize_network_insight","severity":"info","metadata":{"fofa-query":["title=\"vmware vrealize network insight\"","title=\"vmware aria operations\""],"google-query":["intitle:\"vmware aria operations\"","intitle:\"vmware vrealize network insight\""],"product":"vrealize_network_insight","shodan-query":["title:\"vmware aria operations\"","http.title:\"vmware vrealize network insight\"","http.title:\"vmware aria operations\"","title:\"vmware vrealize network insight\""],"vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>vmware aria operations.*?</title>","(?mi)<title[^>]*>vmware vrealize network insight.*?</title>"]}]}]},{"id":"vmware-horizon","info":{"name":"vmware-horizon","author":"cn-kali-team","tags":"detect,tech,vmware-horizon","severity":"info","metadata":{"product":"horizon","vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"vmware horizon\">","href='https://www.vmware.com/go/viewclients'"],"case-insensitive":true}]}]},{"id":"identity_manager","info":{"name":"identity_manager","author":"cn-kali-team","tags":"detect,tech,identity_manager","severity":"info","metadata":{"fofa-query":["app=\"vmware-workspace-one-access\" || app=\"vmware-identity-manager\" || app=\"vmware-vrealize\"","icon_hash=-1250474341"],"product":"identity_manager","shodan-query":["http.favicon.hash:-1250474341"],"vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1250474341"]}]}]},{"id":"vcenter_server","info":{"name":"vcenter_server","author":"cn-kali-team","tags":"detect,tech,vcenter_server","severity":"info","metadata":{"product":"vcenter_server","shodan-query":["title:\"vmware vcenter\""],"vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>vmware vcenter.*?</title>"]}]}]},{"id":"vmware","info":{"name":"vmware","author":"cn-kali-team","tags":"detect,tech,vmware","severity":"info","metadata":{"product":"vmware","shodan-query":["title:\"vmware cloud\""],"vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>vmware cloud.*?</title>"]}]}]},{"id":"vrealize_operations","info":{"name":"vrealize_operations","author":"cn-kali-team","tags":"detect,tech,vrealize_operations","severity":"info","metadata":{"product":"vrealize_operations","shodan-query":["http.title:\"vrealize operations tenant app\""],"vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>vrealize operations tenant app.*?</title>"]}]}]},{"id":"aria_operations_for_logs","info":{"name":"aria_operations_for_logs","author":"cn-kali-team","tags":"detect,tech,aria_operations_for_logs","severity":"info","metadata":{"fofa-query":["title=\"vrealize log insight\""],"google-query":["intitle:\"vrealize log insight\""],"product":"aria_operations_for_logs","shodan-query":["title:\"vrealize log insight\"","http.title:\"vrealize log insight\""],"vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>vrealize log insight.*?</title>"]}]}]},{"id":"vmware-esxi","info":{"name":"vmware-esxi","author":"cn-kali-team","tags":"detect,tech,vmware-esxi","severity":"info","metadata":{"product":"esxi","vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title ng-bind=\"$root.title\">","ng-app=\"esxuiapp\""],"case-insensitive":true}]}]},{"id":"spring_boot","info":{"name":"spring_boot","author":"cn-kali-team","tags":"detect,tech,spring_boot","severity":"info","metadata":{"fofa-query":["title=\"eureka\""],"google-query":["intitle:\"eureka\""],"product":"spring_boot","shodan-query":["http.title:\"eureka\""],"vendor":"vmware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>eureka.*?</title>"]}]}]},{"id":"collaboration_server","info":{"name":"collaboration_server","author":"cn-kali-team","tags":"detect,tech,collaboration_server","severity":"info","metadata":{"product":"collaboration_server","shodan-query":["html:\"zimbra collaboration suite web client\""],"vendor":"zimbra","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["zimbra collaboration suite web client"],"case-insensitive":true}]}]},{"id":"collaboration","info":{"name":"collaboration","author":"cn-kali-team","tags":"detect,tech,collaboration","severity":"info","metadata":{"fofa-query":["icon_hash=\"475145467\"","icon_hash=\"1624375939\"","app=\"zimbra-邮件系统\""],"product":"collaboration","shodan-query":["http.favicon.hash:475145467","http.favicon.hash:\"1624375939\"","http.favicon.hash:\"475145467\""],"vendor":"zimbra","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1624375939","475145467"]}]}]},{"id":"zimbra","info":{"name":"zimbra","author":"cn-kali-team","tags":"detect,tech,zimbra","severity":"info","metadata":{"product":"zimbra","vendor":"zimbra","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["imgzimbraicon","content=\"zimbra","window._zimbramail"],"case-insensitive":true},{"type":"word","words":["set-cookie: zm_login_csrf"],"part":"header","case-insensitive":true}]}]},{"id":"enterprise_server","info":{"name":"enterprise_server","author":"cn-kali-team","tags":"detect,tech,enterprise_server","severity":"info","metadata":{"fofa-query":["app=\"github-enterprise\""],"product":"enterprise_server","shodan-query":["title:\"github enterprise\"","micro focus dsd"],"vendor":"github","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["micro focus dsd"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>github enterprise.*?</title>"]}]}]},{"id":"fastbee","info":{"name":"fastbee","author":"cn-kali-team","tags":"detect,tech,fastbee","severity":"info","metadata":{"fofa-query":["fastbee"],"product":"fastbee","vendor":"fastbee","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["fastbee"],"case-insensitive":true}]}]},{"id":"yui","info":{"name":"yui","author":"cn-kali-team","tags":"detect,tech,yui","severity":"info","metadata":{"fofa-query":["body=\"bower_components/yui2/\""],"product":"yui","shodan-query":["html:\"bower_components/yui2/\"","http.html:\"bower_components/yui2/\""],"vendor":"yui_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["bower_components/yui2/"],"case-insensitive":true}]}]},{"id":"experience_platform","info":{"name":"experience_platform","author":"cn-kali-team","tags":"detect,tech,experience_platform","severity":"info","metadata":{"fofa-query":["title=\"sitecore\""],"google-query":["intitle:\"sitecore\""],"product":"experience_platform","shodan-query":["http.title:\"sitecore\""],"vendor":"sitecore","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>sitecore.*?</title>"]}]}]},{"id":"sitecore.net","info":{"name":"sitecore.net","author":"cn-kali-team","tags":"detect,tech,sitecore.net","severity":"info","metadata":{"product":"sitecore.net","shodan-query":["html:\"sitecore\""],"vendor":"sitecore","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sitecore"],"case-insensitive":true}]}]},{"id":"experience_commerce","info":{"name":"experience_commerce","author":"cn-kali-team","tags":"detect,tech,experience_commerce","severity":"info","metadata":{"fofa-query":["title=\"sitecore\""],"google-query":["intitle:\"sitecore\""],"product":"experience_commerce","shodan-query":["title:\"sitecore\"","http.title:\"sitecore\""],"vendor":"sitecore","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>sitecore.*?</title>"]}]}]},{"id":"sitecore","info":{"name":"sitecore","author":"cn-kali-team","tags":"detect,tech,sitecore","severity":"info","metadata":{"product":"sitecore","vendor":"sitecore","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["7e7727c980ccf9d9a3d11bbc702f6363"]},{"type":"word","words":["alt=\"sitecore\" id=\"sclogo\" />","title=\"sitecore documentation site\">"],"case-insensitive":true}]}]},{"id":"experience_commerce,experience_platform","info":{"name":"experience_commerce,experience_platform","author":"cn-kali-team","tags":"detect,tech,experience_commerce,experience_platform","severity":"info","metadata":{"product":"experience_commerce,experience_platform","shodan-query":["title:\"sitecore\""],"vendor":"sitecore","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>sitecore.*?</title>"]}]}]},{"id":"wapples","info":{"name":"wapples","author":"cn-kali-team","tags":"detect,tech,wapples","severity":"info","metadata":{"fofa-query":["title=\"intelligent wapples\""],"google-query":["intitle:\"intelligent wapples\""],"product":"wapples","shodan-query":["http.title:\"intelligent wapples\""],"vendor":"pentasecurity","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>intelligent wapples.*?</title>"]}]}]},{"id":"thinfinity_virtualui","info":{"name":"thinfinity_virtualui","author":"cn-kali-team","tags":"detect,tech,thinfinity_virtualui","severity":"info","metadata":{"fofa-query":["title=\"thinfinity virtualui\""],"google-query":["intitle:\"thinfinity virtualui\""],"product":"thinfinity_virtualui","shodan-query":["http.title:\"thinfinity virtualui\""],"vendor":"cybelesoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>thinfinity virtualui.*?</title>"]}]}]},{"id":"servicenow","info":{"name":"servicenow","author":"cn-kali-team","tags":"detect,tech,servicenow","severity":"info","metadata":{"fofa-query":["title=\"servicenow\"","icon_hash=1701804003"],"google-query":["intitle:\"servicenow\""],"product":"servicenow","shodan-query":["http.title:\"servicenow\"","http.favicon.hash:1701804003","http.favicon.hash:\"1701804003\""],"vendor":"servicenow","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1701804003"]},{"type":"regex","regex":["(?mi)<title[^>]*>servicenow.*?</title>"]}]}]},{"id":"pgadmin4","info":{"name":"pgadmin4","author":"cn-kali-team","tags":"detect,tech,pgadmin4","severity":"info","metadata":{"fofa-query":["pgadmin4"],"product":"pgadmin4","vendor":"pgadmin-org","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pgadmin4"],"case-insensitive":true}]}]},{"id":"jfinalcms","info":{"name":"jfinalcms","author":"cn-kali-team","tags":"detect,tech,jfinalcms","severity":"info","metadata":{"fofa-query":["body=\"content=\\\"jrecms\""],"product":"jfinalcms","vendor":"jfinalcms_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=jrecms"],"case-insensitive":true}]}]},{"id":"webiq","info":{"name":"webiq","author":"cn-kali-team","tags":"detect,tech,webiq","severity":"info","metadata":{"product":"webiq","shodan-query":["title:\"webiq\""],"vendor":"webiq","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>webiq.*?</title>"]}]}]},{"id":"monstra","info":{"name":"monstra","author":"cn-kali-team","tags":"detect,tech,monstra","severity":"info","metadata":{"fofa-query":["icon_hash=419828698"],"product":"monstra","shodan-query":["http.favicon.hash:419828698"],"vendor":"monstra","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["419828698"]}]}]},{"id":"monstra_cms","info":{"name":"monstra_cms","author":"cn-kali-team","tags":"detect,tech,monstra_cms","severity":"info","metadata":{"fofa-query":["icon_hash=419828698"],"product":"monstra_cms","shodan-query":["http.favicon.hash:419828698"],"vendor":"monstra","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["419828698"]}]}]},{"id":"calibre","info":{"name":"calibre","author":"cn-kali-team","tags":"detect,tech,calibre","severity":"info","metadata":{"fofa-query":["server: calibre"],"product":"calibre","shodan-query":["html:\"calibre\""],"vendor":"calibre-ebook","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["calibre","server: calibre"],"case-insensitive":true}]}]},{"id":"tagdiv_composer","info":{"name":"tagdiv_composer","author":"cn-kali-team","tags":"detect,tech,tagdiv_composer","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/td-composer\""],"product":"tagdiv_composer","vendor":"tagdiv","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/td-composer"],"case-insensitive":true}]}]},{"id":"spectrum_server_firmware","info":{"name":"spectrum_server_firmware","author":"cn-kali-team","tags":"detect,tech,spectrum_server_firmware","severity":"info","metadata":{"fofa-query":["icon_hash=\"868509217\""],"product":"spectrum_server_firmware","shodan-query":["http.favicon.hash:868509217","http.favicon.hash:\"868509217\""],"vendor":"dw","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["868509217"]}]}]},{"id":"worldserver","info":{"name":"worldserver","author":"cn-kali-team","tags":"detect,tech,worldserver","severity":"info","metadata":{"product":"worldserver","shodan-query":["title:\"worldserver\""],"vendor":"rws","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>worldserver.*?</title>"]}]}]},{"id":"bigant_server","info":{"name":"bigant_server","author":"cn-kali-team","tags":"detect,tech,bigant_server","severity":"info","metadata":{"fofa-query":["body=\"bigant\""],"product":"bigant_server","shodan-query":["http.html:\"bigant\""],"vendor":"bigantsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["bigant"],"case-insensitive":true}]}]},{"id":"debian","info":{"name":"debian","author":"cn-kali-team","tags":"detect,tech,debian","severity":"info","metadata":{"product":"debian","vendor":"debian","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1>welcome to nginx on debian!</h1>"],"case-insensitive":true}]}]},{"id":"document_locator","info":{"name":"document_locator","author":"cn-kali-team","tags":"detect,tech,document_locator","severity":"info","metadata":{"fofa-query":["title=\"document locator - webtools\""],"google-query":["intitle:\"document locator - webtools\""],"product":"document_locator","shodan-query":["title:\"document locator - webtools\"","http.title:\"document locator - webtools\""],"vendor":"documentlocator","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>document locator - webtools.*?</title>"]}]}]},{"id":"perfsonar","info":{"name":"perfsonar","author":"cn-kali-team","tags":"detect,tech,perfsonar","severity":"info","metadata":{"fofa-query":["title=\"perfsonar toolkit\""],"product":"perfsonar","vendor":"perfsonar","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>perfsonar toolkit.*?</title>"]}]}]},{"id":"phpipam","info":{"name":"phpipam","author":"cn-kali-team","tags":"detect,tech,phpipam","severity":"info","metadata":{"fofa-query":["body=\"phpipam ip address management\""],"product":"phpipam","shodan-query":["html:\"phpipam ip address management\"","http.html:\"phpipam ip address management\""],"vendor":"phpipam","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["phpipam ip address management"],"case-insensitive":true}]}]},{"id":"omnia_mpx_node_firmware","info":{"name":"omnia_mpx_node_firmware","author":"cn-kali-team","tags":"detect,tech,omnia_mpx_node_firmware","severity":"info","metadata":{"fofa-query":["title=\"omnia mpx node | login\""],"google-query":["intitle:\"omnia mpx node | login\""],"product":"omnia_mpx_node_firmware","shodan-query":["http.title:\"omnia mpx node | login\""],"vendor":"telosalliance","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>omnia mpx node .*?</title>"]}]}]},{"id":"mobsf","info":{"name":"mobsf","author":"cn-kali-team","tags":"detect,tech,mobsf","severity":"info","metadata":{"fofa-query":["mobsf"],"product":"mobsf","vendor":"mobsf","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mobsf"],"case-insensitive":true}]}]},{"id":"syncserver_s650","info":{"name":"syncserver_s650","author":"cn-kali-team","tags":"detect,tech,syncserver_s650","severity":"info","metadata":{"product":"syncserver_s650","shodan-query":["html:\"symmetricom syncserver\""],"vendor":"microchip","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["symmetricom syncserver"],"case-insensitive":true}]}]},{"id":"siteengine","info":{"name":"siteengine","author":"cn-kali-team","tags":"detect,tech,siteengine","severity":"info","metadata":{"fofa-query":["body=\"siteengine\""],"product":"siteengine","shodan-query":["html:\"siteengine\"","http.html:\"siteengine\""],"vendor":"boka","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["siteengine"],"case-insensitive":true}]}]},{"id":"dotcms","info":{"name":"dotcms","author":"cn-kali-team","tags":"detect,tech,dotcms","severity":"info","metadata":{"fofa-query":["title=\"dotcms\""],"google-query":["intitle:\"dotcms\""],"product":"dotcms","shodan-query":["http.title:\"dotcms\""],"vendor":"dotcms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>dotcms.*?</title>"]}]}]},{"id":"boa","info":{"name":"boa","author":"cn-kali-team","tags":"detect,tech,boa","severity":"info","metadata":{"fofa-query":["server: boa/0.94.13"],"product":"boa","shodan-query":["server: boa/0.94.13"],"vendor":"boa","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: boa/0.94.13"],"case-insensitive":true}]}]},{"id":"mojarra","info":{"name":"mojarra","author":"cn-kali-team","tags":"detect,tech,mojarra","severity":"info","metadata":{"fofa-query":["body=\"javax.faces.viewstate\"","body=\"javax.faces.resource\""],"product":"mojarra","shodan-query":["html:\"javax.faces.resource\"","http.html:\"javax.faces.viewstate\"","http.html:\"javax.faces.resource\""],"vendor":"eclipse","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["javax.faces.resource","javax.faces.viewstate"],"case-insensitive":true}]}]},{"id":"ui","info":{"name":"ui","author":"cn-kali-team","tags":"detect,tech,ui","severity":"info","metadata":{"fofa-query":["icon_hash=\"-1477045616\""],"product":"ui","vendor":"provectus","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1477045616"]}]}]},{"id":"edusoho","info":{"name":"edusoho","author":"cn-kali-team","tags":"detect,tech,edusoho","severity":"info","metadata":{"fofa-query":["title=\"powered by edusoho\" || body=\"powered by <a href=\\\"http://www.edusoho.com/\\\" target=\\\"_blank\\\">edusoho\" || (body=\"powered by edusoho\" && body=\"var app\")"],"product":"edusoho","vendor":"hagzhou-kuozhi-network-technology","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href=\"http://www.edusoho.com/\" target=\"_blank\">edusoho"],"case-insensitive":true}]}]},{"id":"office_web_apps_server","info":{"name":"office_web_apps_server","author":"cn-kali-team","tags":"detect,tech,office_web_apps_server","severity":"info","metadata":{"fofa-query":["body=\"provide a link that opens word\""],"product":"office_web_apps_server","shodan-query":["html:\"provide a link that opens word\""],"vendor":"microsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["provide a link that opens word"],"case-insensitive":true}]}]},{"id":"skype_for_business_server","info":{"name":"skype_for_business_server","author":"cn-kali-team","tags":"detect,tech,skype_for_business_server","severity":"info","metadata":{"fofa-query":["body=\"skype for business\""],"product":"skype_for_business_server","shodan-query":["html:\"skype for business\"","http.html:\"skype for business\""],"vendor":"microsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["skype for business"],"case-insensitive":true}]}]},{"id":"exchange_server","info":{"name":"exchange_server","author":"cn-kali-team","tags":"detect,tech,exchange_server","severity":"info","metadata":{"fofa-query":["title=\"outlook\"","icon_hash=1768726119"],"google-query":["intitle:\"outlook\""],"product":"exchange_server","shodan-query":["vuln:cve-2021-26855","http.favicon.hash:1768726119","http.title:\"outlook\"","cpe:\"cpe:2.3:a:microsoft:exchange_server\""],"vendor":"microsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1768726119"]},{"type":"regex","regex":["(?mi)<title[^>]*>outlook.*?</title>"]}]}]},{"id":"windows","info":{"name":"windows","author":"cn-kali-team","tags":"detect,tech,windows","severity":"info","metadata":{"product":"windows","shodan-query":["title:\"filemage\"","cpe:\"cpe:2.3:o:microsoft:windows\""],"vendor":"microsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>filemage.*?</title>"]}]}]},{"id":"windows_7","info":{"name":"windows_7","author":"cn-kali-team","tags":"detect,tech,windows_7","severity":"info","metadata":{"product":"windows_7","shodan-query":["\"microsoft-iis\" \"2015\"","cpe:\"cpe:2.3:o:microsoft:windows_7\""],"vendor":"microsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["microsoft-iis\" \"2015"],"case-insensitive":true}]}]},{"id":"internet_information_server","info":{"name":"iis","author":"cn-kali-team","tags":"detect,tech,iis","severity":"info","metadata":{"product":"internet_information_server","vendor":"microsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: microsoft-iis"],"part":"header","case-insensitive":true}]}]},{"id":"hospital_management_system","info":{"name":"hospital_management_system","author":"cn-kali-team","tags":"detect,tech,hospital_management_system","severity":"info","metadata":{"product":"hospital_management_system","shodan-query":["http.html:\"hospital management system\""],"vendor":"phptpoint","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hospital management system"],"case-insensitive":true}]}]},{"id":"zkteco","info":{"name":"zkteco","author":"cn-kali-team","tags":"detect,tech,zkteco","severity":"info","metadata":{"product":"zkteco","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["67c76f647cb8d42a71eb295e003394d2"]},{"type":"word","words":["智慧园区综合管理平台"],"case-insensitive":true}]}]},{"id":"biotime","info":{"name":"biotime","author":"cn-kali-team","tags":"detect,tech,biotime","severity":"info","metadata":{"fofa-query":["title=\"biotime\""],"google-query":["intitle:\"biotime\""],"product":"biotime","shodan-query":["http.title:\"biotime\""],"vendor":"zkteco","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>biotime.*?</title>"]}]}]},{"id":"likeshop","info":{"name":"likeshop","author":"cn-kali-team","tags":"detect,tech,likeshop","severity":"info","metadata":{"fofa-query":["icon_hash=874152924"],"product":"likeshop","shodan-query":["http.favicon.hash:874152924"],"vendor":"likeshop","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["874152924"]}]}]},{"id":"kkfileview","info":{"name":"kkfileview","author":"cn-kali-team","tags":"detect,tech,kkfileview","severity":"info","metadata":{"fofa-query":["app=\"kkfileview\"","body=\"kkfileview\""],"product":"kkfileview","shodan-query":["http.html:\"kkfileview\""],"vendor":"keking","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["kkfileview"],"case-insensitive":true}]}]},{"id":"suitecrm","info":{"name":"suitecrm","author":"cn-kali-team","tags":"detect,tech,suitecrm","severity":"info","metadata":{"fofa-query":["title=\"suitecrm\""],"google-query":["intitle:\"suitecrm\""],"product":"suitecrm","shodan-query":["title:\"suitecrm\"","http.title:\"suitecrm\""],"vendor":"salesagility","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>suitecrm.*?</title>"]}]}]},{"id":"nvr301-04s2-p4","info":{"name":"nvr301-04s2-p4","author":"cn-kali-team","tags":"detect,tech,nvr301-04s2-p4","severity":"info","metadata":{"fofa-query":["title=\"nvr301-04-p4\""],"product":"nvr301-04s2-p4","vendor":"uniview","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>nvr301-04-p4.*?</title>"]}]}]},{"id":"xfilesharing","info":{"name":"xfilesharing","author":"cn-kali-team","tags":"detect,tech,xfilesharing","severity":"info","metadata":{"product":"xfilesharing","shodan-query":["html:\"/?op=registration\" \"openssl\""],"vendor":"sibsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/?op=registration\" \"openssl"],"case-insensitive":true}]}]},{"id":"fogproject","info":{"name":"fogproject","author":"cn-kali-team","tags":"detect,tech,fogproject","severity":"info","metadata":{"fofa-query":["icon_hash=\"-1952619005\""],"product":"fogproject","vendor":"fogproject","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1952619005"]}]}]},{"id":"phpmyadmin","info":{"name":"phpmyadmin","author":"cn-kali-team","tags":"detect,tech,phpmyadmin","severity":"info","metadata":{"product":"phpmyadmin","vendor":"phpmyadmin","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"phpmyadmin.css.php","pma_password"],"case-insensitive":true},{"type":"word","words":["set-cookie: phpmyadmin=","set-cookie: pma_lang="],"part":"header","case-insensitive":true}]}]},{"id":"clickshare_cs-100_huddle_firmware","info":{"name":"clickshare_cs-100_huddle_firmware","author":"cn-kali-team","tags":"detect,tech,clickshare_cs-100_huddle_firmware","severity":"info","metadata":{"product":"clickshare_cs-100_huddle_firmware","shodan-query":["clicksharesession"],"vendor":"barco","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["clicksharesession"],"case-insensitive":true}]}]},{"id":"monitor","info":{"name":"monitor","author":"cn-kali-team","tags":"detect,tech,monitor","severity":"info","metadata":{"fofa-query":["title=\"itrs\""],"product":"monitor","shodan-query":["title:\"itrs\""],"vendor":"op5","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>itrs.*?</title>"]},{"type":"word","words":["/monitor/application/views/themes/default/css/default/common.css"],"case-insensitive":true}]}]},{"id":"aurall_rec_monitor","info":{"name":"aurall_rec_monitor","author":"cn-kali-team","tags":"detect,tech,aurall_rec_monitor","severity":"info","metadata":{"fofa-query":["body=\"aurall\""],"product":"aurall_rec_monitor","shodan-query":["html:\"aurall\"","http.html:\"aurall\""],"vendor":"void","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["aurall"],"case-insensitive":true}]}]},{"id":"caseaware","info":{"name":"caseaware","author":"cn-kali-team","tags":"detect,tech,caseaware","severity":"info","metadata":{"fofa-query":["title=\"caseaware\""],"product":"caseaware","vendor":"kmc_information_systems","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>caseaware.*?</title>"]}]}]},{"id":"controller","info":{"name":"controller","author":"cn-kali-team","tags":"detect,tech,controller","severity":"info","metadata":{"product":"controller","shodan-query":["html:\"aquatronica\""],"vendor":"aquatronica","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["aquatronica"],"case-insensitive":true}]}]},{"id":"cachet","info":{"name":"cachet","author":"cn-kali-team","tags":"detect,tech,cachet","severity":"info","metadata":{"fofa-query":["icon_hash=-1606065523"],"product":"cachet","shodan-query":["http.favicon.hash:-1606065523"],"vendor":"chachethq","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1606065523"]}]}]},{"id":"rengine","info":{"name":"rengine","author":"cn-kali-team","tags":"detect,tech,rengine","severity":"info","metadata":{"product":"rengine","shodan-query":["title:\"rengine\""],"vendor":"yogeshojha","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>rengine.*?</title>"]}]}]},{"id":"panel","info":{"name":"panel","author":"cn-kali-team","tags":"detect,tech,panel","severity":"info","metadata":{"fofa-query":["title=\"pterodactyl\"","icon_hash=\"-456405319\"","icon_hash=\"846001371\"","set-cookie: pterodactyl_session="],"product":"panel","shodan-query":["title:\"pterodactyl\"","http.favicon.hash:-456405319","http.favicon.hash:846001371","set-cookie: pterodactyl_session="],"vendor":"pterodactyl","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-456405319","846001371"]},{"type":"regex","regex":["(?mi)<title[^>]*>pterodactyl.*?</title>"]}]}]},{"id":"teamcity","info":{"name":"teamcity","author":"cn-kali-team","tags":"detect,tech,teamcity","severity":"info","metadata":{"fofa-query":["title=teamcity"],"google-query":["intitle:teamcity"],"product":"teamcity","shodan-query":["http.title:teamcity","http.component:\"teamcity\"","title:teamcity"],"vendor":"jetbrains","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>teamcity.*?</title>"]}]}]},{"id":"netmri","info":{"name":"netmri","author":"cn-kali-team","tags":"detect,tech,netmri","severity":"info","metadata":{"fofa-query":["infoblox netmri"],"product":"netmri","vendor":"infoblox","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["infoblox netmri"],"case-insensitive":true}]}]},{"id":"onedev","info":{"name":"onedev","author":"cn-kali-team","tags":"detect,tech,onedev","severity":"info","metadata":{"product":"onedev","shodan-query":["html:\"onedev.io\""],"vendor":"onedev","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["onedev.io"],"case-insensitive":true}]}]},{"id":"themegrill-demo-importer","info":{"name":"themegrill-demo-importer","author":"cn-kali-team","tags":"detect,tech,themegrill-demo-importer","severity":"info","metadata":{"fofa-query":["body=\"/plugins/themegrill-demo-importer\""],"product":"themegrill-demo-importer","vendor":"themegrill","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/plugins/themegrill-demo-importer"],"case-insensitive":true}]}]},{"id":"shopex","info":{"name":"shopex","author":"cn-kali-team","tags":"detect,tech,shopex","severity":"info","metadata":{"product":"shopex","vendor":"shopex","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["@author litie[aita]shopex.cn","content=\"shopex","http://www.shopex.cn' target='_blank'"],"case-insensitive":true}]}]},{"id":"episerver","info":{"name":"episerver","author":"cn-kali-team","tags":"detect,tech,episerver","severity":"info","metadata":{"product":"episerver","vendor":"episerver","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/javascript/episerverscriptmanager.js","content=\"episerver"],"case-insensitive":true}]}]},{"id":"tl-wr841n_(9.0)_firmware","info":{"name":"tl-wr841n_(9.0)_firmware","author":"cn-kali-team","tags":"detect,tech,tl-wr841n_(9.0)_firmware","severity":"info","metadata":{"fofa-query":["title=\"tp-link\""],"google-query":["intitle:\"tp-link\""],"product":"tl-wr841n_(9.0)_firmware","shodan-query":["http.title:\"tp-link\""],"vendor":"tp-link","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>tp-link.*?</title>"]}]}]},{"id":"tl-wr840n_firmware","info":{"name":"tl-wr840n_firmware","author":"cn-kali-team","tags":"detect,tech,tl-wr840n_firmware","severity":"info","metadata":{"product":"tl-wr840n_firmware","shodan-query":["title:\"tl-wr840n\""],"vendor":"tp-link","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>tl-wr840n.*?</title>"]}]}]},{"id":"tp-link","info":{"name":"tp-link","author":"cn-kali-team","tags":"detect,tech,tp-link","severity":"info","metadata":{"fofa-query":["body=\"wr840n\""],"product":"tp-link","vendor":"tp-link","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wr840n"],"case-insensitive":true}]}]},{"id":"archer-ax21","info":{"name":"archer-ax21","author":"cn-kali-team","tags":"detect,tech,archer-ax21","severity":"info","metadata":{"fofa-query":["body=\"tp-link\""],"product":"archer-ax21","vendor":"tp-link","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tp-link"],"case-insensitive":true}]}]},{"id":"booked","info":{"name":"booked","author":"cn-kali-team","tags":"detect,tech,booked","severity":"info","metadata":{"fofa-query":["wp-content/plugins/booked/"],"google-query":["inurl:\"/wp-content/plugins/booked/\""],"product":"booked","vendor":"twinkletoessoftware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wp-content/plugins/booked/"],"case-insensitive":true}]}]},{"id":"gnuboard5","info":{"name":"gnuboard5","author":"cn-kali-team","tags":"detect,tech,gnuboard5","severity":"info","metadata":{"product":"gnuboard5","shodan-query":["http.html:\"gnuboard\"","http.html:\"gnuboard5\""],"vendor":"gnuboard","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["gnuboard","gnuboard5"],"case-insensitive":true}]}]},{"id":"nexusphp","info":{"name":"nexusphp","author":"cn-kali-team","tags":"detect,tech,nexusphp","severity":"info","metadata":{"fofa-query":["icon_hash=-582931176"],"product":"nexusphp","shodan-query":["http.favicon.hash:-582931176","cpe:\"cpe:2.3:a:nexusphp:nexusphp\""],"vendor":"nexusphp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-582931176"]}]}]},{"id":"manageengine-servicedesk","info":{"name":"manageengine-servicedesk","author":"cn-kali-team","tags":"detect,tech,manageengine-servicedesk","severity":"info","metadata":{"product":"servicedesk","vendor":"manageengine","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[",'manageengine servicedesk plus',"],"case-insensitive":true}]}]},{"id":"sante_pacs_server","info":{"name":"sante_pacs_server","author":"cn-kali-team","tags":"detect,tech,sante_pacs_server","severity":"info","metadata":{"product":"sante_pacs_server","shodan-query":["http.favicon.hash:1185161484"],"vendor":"santesoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1185161484"]}]}]},{"id":"jellyfin","info":{"name":"jellyfin","author":"cn-kali-team","tags":"detect,tech,jellyfin","severity":"info","metadata":{"product":"jellyfin","vendor":"jellyfin","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>jellyfin</title>","content=\"jellyfin\""],"condition":"and","case-insensitive":true}]}]},{"id":"parse-server","info":{"name":"parse-server","author":"cn-kali-team","tags":"detect,tech,parse-server","severity":"info","metadata":{"fofa-query":["title=\"parse dashboard\""],"product":"parse-server","shodan-query":["http.title:\"parse server\" || \"parse-server\"","http.title:\"parse dashboard\""],"vendor":"parseplatform","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>\"parse-server.*?</title>","(?mi)<title[^>]*>parse dashboard.*?</title>","(?mi)<title[^>]*>parse server\".*?</title>"]}]}]},{"id":"intouch_access_anywhere","info":{"name":"intouch_access_anywhere","author":"cn-kali-team","tags":"detect,tech,intouch_access_anywhere","severity":"info","metadata":{"fofa-query":["body=\"intouch access anywhere\""],"product":"intouch_access_anywhere","shodan-query":["http.html:\"intouch access anywhere\""],"vendor":"aveva","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["intouch access anywhere"],"case-insensitive":true}]}]},{"id":"erpnext","info":{"name":"erpnext","author":"cn-kali-team","tags":"detect,tech,erpnext","severity":"info","metadata":{"product":"erpnext","shodan-query":["html:\"login to frappe\""],"vendor":"frappe","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["login to frappe"]}]}]},{"id":"manageengine_opmanager","info":{"name":"manageengine_opmanager","author":"cn-kali-team","tags":"detect,tech,manageengine_opmanager","severity":"info","metadata":{"fofa-query":["title=\"opmanager plus\""],"google-query":["intitle:\"opmanager plus\""],"product":"manageengine_opmanager","shodan-query":["http.title:\"opmanager plus\""],"vendor":"zohocorp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>opmanager plus.*?</title>"]}]}]},{"id":"manageengine_desktop_central","info":{"name":"manageengine_desktop_central","author":"cn-kali-team","tags":"detect,tech,manageengine_desktop_central","severity":"info","metadata":{"fofa-query":["body=\"manageengine desktop central 10\"","title=\"manageengine desktop central 10\"","app=\"zoho-manageengine-desktop\""],"google-query":["intitle:\"manageengine desktop central 10\""],"product":"manageengine_desktop_central","shodan-query":["http.title:\"manageengine desktop central 10\""],"vendor":"zohocorp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["manageengine desktop central 10"],"case-insensitive":true}]}]},{"id":"manageengine_adselfservice_plus","info":{"name":"manageengine_adselfservice_plus","author":"cn-kali-team","tags":"detect,tech,manageengine_adselfservice_plus","severity":"info","metadata":{"fofa-query":["title=\"manageengine\"","title=\"adselfservice plus\""],"google-query":["intitle:\"adselfservice plus\"","intitle:\"manageengine\""],"product":"manageengine_adselfservice_plus","shodan-query":["http.title:\"manageengine\"","http.title:\"adselfservice plus\""],"vendor":"zohocorp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>adselfservice plus.*?</title>","(?mi)<title[^>]*>manageengine.*?</title>"]}]}]},{"id":"manageengine_adaudit_plus","info":{"name":"manageengine_adaudit_plus","author":"cn-kali-team","tags":"detect,tech,manageengine_adaudit_plus","severity":"info","metadata":{"fofa-query":["title=\"adaudit plus\" || http.title:\"manageengine - admanager plus\""],"google-query":["intitle:\"adaudit plus\" || http.title:\"manageengine - admanager plus\""],"product":"manageengine_adaudit_plus","shodan-query":["http.title:\"adaudit plus\" || http.title:\"manageengine - admanager plus\""],"vendor":"zohocorp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*> http.title:\"manageengine - admanager plus.*?</title>","(?mi)<title[^>]*>adaudit plus\" .*?</title>"]}]}]},{"id":"manageengine_netflow_analyzer","info":{"name":"manageengine_netflow_analyzer","author":"cn-kali-team","tags":"detect,tech,manageengine_netflow_analyzer","severity":"info","metadata":{"product":"manageengine_netflow_analyzer","shodan-query":["html:\"login - netflow analyzer\""],"vendor":"zohocorp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["login - netflow analyzer"],"case-insensitive":true}]}]},{"id":"manageengine_servicedesk_plus","info":{"name":"manageengine_servicedesk_plus","author":"cn-kali-team","tags":"detect,tech,manageengine_servicedesk_plus","severity":"info","metadata":{"fofa-query":["title=\"manageengine servicedesk plus\""],"google-query":["intitle:\"manageengine servicedesk plus\""],"product":"manageengine_servicedesk_plus","shodan-query":["http.title:\"manageengine servicedesk plus\""],"vendor":"zohocorp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>manageengine servicedesk plus.*?</title>"]}]}]},{"id":"manageengine_firewall_analyzer","info":{"name":"manageengine_firewall_analyzer","author":"cn-kali-team","tags":"detect,tech,manageengine_firewall_analyzer","severity":"info","metadata":{"fofa-query":["title=\"opmanager plus\""],"google-query":["intitle:\"opmanager plus\""],"product":"manageengine_firewall_analyzer","shodan-query":["http.title:\"opmanager plus\""],"vendor":"zohocorp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>opmanager plus.*?</title>"]}]}]},{"id":"manageengine_access_manager_plus","info":{"name":"manageengine_access_manager_plus","author":"cn-kali-team","tags":"detect,tech,manageengine_access_manager_plus","severity":"info","metadata":{"fofa-query":["title=\"manageengine\""],"google-query":["intitle:\"manageengine\""],"product":"manageengine_access_manager_plus","shodan-query":["title:\"manageengine\"","http.title:\"manageengine\""],"vendor":"zohocorp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>manageengine.*?</title>"]}]}]},{"id":"emc_avamar,emc_integrated_data_protection_appliance","info":{"name":"emc_avamar,emc_integrated_data_protection_appliance","author":"cn-kali-team","tags":"detect,tech,emc_avamar,emc_integrated_data_protection_appliance","severity":"info","metadata":{"product":"emc_avamar,emc_integrated_data_protection_appliance","shodan-query":["title:\"avamar\""],"vendor":"dell","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>avamar.*?</title>"]}]}]},{"id":"voipmonitor","info":{"name":"voipmonitor","author":"cn-kali-team","tags":"detect,tech,voipmonitor","severity":"info","metadata":{"fofa-query":["title=\"voipmonitor\""],"google-query":["intitle:\"voipmonitor\""],"product":"voipmonitor","shodan-query":["http.title:\"voipmonitor\""],"vendor":"voipmonitor","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>voipmonitor.*?</title>"]}]}]},{"id":"unifi_network_application","info":{"name":"unifi_network_application","author":"cn-kali-team","tags":"detect,tech,unifi_network_application","severity":"info","metadata":{"product":"unifi_network_application","shodan-query":["http.title:\"unifi network\""],"vendor":"ui","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>unifi network.*?</title>"]}]}]},{"id":"ispconfig","info":{"name":"ispconfig","author":"cn-kali-team","tags":"detect,tech,ispconfig","severity":"info","metadata":{"product":"ispconfig","shodan-query":["title:\"ispconfig\" http.favicon.hash:483383992","http.title:\"ispconfig\""],"vendor":"ispconfig","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>ispconfig\" http.favicon.hash:483383992.*?</title>","(?mi)<title[^>]*>ispconfig.*?</title>"]},{"type":"word","words":["powered by <a href=\"http://www.ispconfig.org"],"case-insensitive":true}]}]},{"id":"pfblockerng","info":{"name":"pfblockerng","author":"cn-kali-team","tags":"detect,tech,pfblockerng","severity":"info","metadata":{"fofa-query":["pfblockerng"],"product":"pfblockerng","shodan-query":["pfblockerng"],"vendor":"pfsense","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pfblockerng"],"case-insensitive":true}]}]},{"id":"pfsense","info":{"name":"pfsense","author":"cn-kali-team","tags":"detect,tech,pfsense","severity":"info","metadata":{"product":"pfsense","vendor":"pfsense","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h4>login to pfsense</h4>","rubicon communications, llc (netgate)"],"case-insensitive":true}]}]},{"id":"mlflow","info":{"name":"mlflow","author":"cn-kali-team","tags":"detect,tech,mlflow","severity":"info","metadata":{"fofa-query":["title=\"mlflow\"","app=\"mlflow\""],"google-query":["intitle:\"mlflow\""],"product":"mlflow","shodan-query":["http.title:\"mlflow\""],"vendor":"lfprojects","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>mlflow.*?</title>"]}]}]},{"id":"food_delivery_script","info":{"name":"food_delivery_script","author":"cn-kali-team","tags":"detect,tech,food_delivery_script","severity":"info","metadata":{"product":"food_delivery_script","shodan-query":["html:\"phpjabbers\""],"vendor":"phpjabbers","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["phpjabbers"],"case-insensitive":true}]}]},{"id":"fundraising_script","info":{"name":"fundraising_script","author":"cn-kali-team","tags":"detect,tech,fundraising_script","severity":"info","metadata":{"fofa-query":["body=\"phpjabbers\""],"product":"fundraising_script","shodan-query":["html:\"phpjabbers\""],"vendor":"phpjabbers","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["phpjabbers"],"case-insensitive":true}]}]},{"id":"taxi_booking_script","info":{"name":"taxi_booking_script","author":"cn-kali-team","tags":"detect,tech,taxi_booking_script","severity":"info","metadata":{"fofa-query":["body=\"php jabbers.com\""],"product":"taxi_booking_script","shodan-query":["html:\"php jabbers.com\"","http.html:\"php jabbers.com\""],"vendor":"phpjabbers","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["php jabbers.com"],"case-insensitive":true}]}]},{"id":"make_an_offer_widget","info":{"name":"make_an_offer_widget","author":"cn-kali-team","tags":"detect,tech,make_an_offer_widget","severity":"info","metadata":{"fofa-query":["body=\"phpjabbers\""],"product":"make_an_offer_widget","shodan-query":["html:\"phpjabbers\""],"vendor":"phpjabbers","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["phpjabbers"],"case-insensitive":true}]}]},{"id":"shuttle_booking_software","info":{"name":"shuttle_booking_software","author":"cn-kali-team","tags":"detect,tech,shuttle_booking_software","severity":"info","metadata":{"fofa-query":["body=\"php jabbers.com\""],"product":"shuttle_booking_software","shodan-query":["html:\"php jabbers.com\"","http.html:\"php jabbers.com\""],"vendor":"phpjabbers","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["php jabbers.com"],"case-insensitive":true}]}]},{"id":"ticket_support_script","info":{"name":"ticket_support_script","author":"cn-kali-team","tags":"detect,tech,ticket_support_script","severity":"info","metadata":{"fofa-query":["body=\"phpjabbers\""],"product":"ticket_support_script","shodan-query":["html:\"phpjabbers\""],"vendor":"phpjabbers","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["phpjabbers"],"case-insensitive":true}]}]},{"id":"yacht_listing_script","info":{"name":"yacht_listing_script","author":"cn-kali-team","tags":"detect,tech,yacht_listing_script","severity":"info","metadata":{"fofa-query":["body=\"phpjabbers\""],"product":"yacht_listing_script","shodan-query":["html:\"phpjabbers\""],"vendor":"phpjabbers","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["phpjabbers"],"case-insensitive":true}]}]},{"id":"callback_widget","info":{"name":"callback_widget","author":"cn-kali-team","tags":"detect,tech,callback_widget","severity":"info","metadata":{"fofa-query":["body=\"phpjabbers\""],"product":"callback_widget","shodan-query":["html:\"phpjabbers\""],"vendor":"phpjabbers","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["phpjabbers"],"case-insensitive":true}]}]},{"id":"ray","info":{"name":"ray","author":"cn-kali-team","tags":"detect,tech,ray","severity":"info","metadata":{"fofa-query":["body=\"ray dashboard\"","icon_hash=463802404"],"product":"ray","shodan-query":["http.favicon.hash:463802404","http.html:\"ray dashboard\"","html:\"ray dashboard\""],"vendor":"ray_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ray dashboard"],"case-insensitive":true},{"type":"favicon","hash":["463802404"]}]}]},{"id":"candidats","info":{"name":"candidats","author":"cn-kali-team","tags":"detect,tech,candidats","severity":"info","metadata":{"fofa-query":["body=\"candidats\""],"product":"candidats","shodan-query":["http.html:\"candidats\""],"vendor":"auieo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["candidats"],"case-insensitive":true}]}]},{"id":"yearning","info":{"name":"yearning","author":"cn-kali-team","tags":"detect,tech,yearning","severity":"info","metadata":{"product":"yearning","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["id=subnet"],"case-insensitive":true}]}]},{"id":"shokoserver","info":{"name":"shokoserver","author":"cn-kali-team","tags":"detect,tech,shokoserver","severity":"info","metadata":{"fofa-query":["title=\"shoko web ui\""],"product":"shokoserver","vendor":"shokoanime","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>shoko web ui.*?</title>"]}]}]},{"id":"mikopbx","info":{"name":"mikopbx","author":"cn-kali-team","tags":"detect,tech,mikopbx","severity":"info","metadata":{"fofa-query":["icon_hash=\"8309143\"","title=\"mikopbx\""],"product":"mikopbx","shodan-query":["product:\"mikopbx\"","http.favicon.hash:8309143","title:\"mikopbx\""],"vendor":"miko","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["8309143"]},{"type":"regex","regex":["(?mi)<title[^>]*>mikopbx.*?</title>"]}]}]},{"id":"repetier-server","info":{"name":"repetier-server","author":"cn-kali-team","tags":"detect,tech,repetier-server","severity":"info","metadata":{"fofa-query":["title=\"repetier-server\""],"google-query":["intitle:\"repetier-server\""],"product":"repetier-server","shodan-query":["title:\"repetier-server\"","http.title:\"repetier-server\""],"vendor":"repetier-server","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>repetier-server.*?</title>"]}]}]},{"id":"zentao","info":{"name":"zentao","author":"cn-kali-team","tags":"detect,tech,zentao","severity":"info","metadata":{"fofa-query":["zentao"],"product":"zentao","shodan-query":["http.title:\"zentao\""],"vendor":"easycorp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["zentao"],"case-insensitive":true}]}]},{"id":"changedetection","info":{"name":"changedetection","author":"cn-kali-team","tags":"detect,tech,changedetection","severity":"info","metadata":{"fofa-query":["title=\"change detection\""],"google-query":["intitle:\"change detection\""],"product":"changedetection","shodan-query":["http.title:\"change detection\"","html:\"change detection\""],"vendor":"changedetection","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["change detection"],"case-insensitive":true}]}]},{"id":"neo4j","info":{"name":"neo4j","author":"cn-kali-team","tags":"detect,tech,neo4j","severity":"info","metadata":{"product":"neo4j","vendor":"neo4j","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"neo4j","ng-show=\"neo4j.enterpriseedition","play-topic=\"neo4j-sync","{{ neo4j.version | neo4jdeveloperdoc }}/"],"case-insensitive":true}]}]},{"id":"apollo","info":{"name":"apollo","author":"cn-kali-team","tags":"detect,tech,apollo","severity":"info","metadata":{"product":"apollo","shodan-query":["http.favicon.hash:11794165"],"vendor":"ctrip","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["11794165"]}]}]},{"id":"openfire","info":{"name":"openfire","author":"cn-kali-team","tags":"detect,tech,openfire","severity":"info","metadata":{"fofa-query":["title=\"openfire\"","title=\"openfire admin console\""],"google-query":["intitle:\"openfire\"","intitle:\"openfire admin console\""],"product":"openfire","shodan-query":["http.title:\"openfire admin console\"","http.title:\"openfire\"","title:\"openfire\""],"vendor":"igniterealtime","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>openfire admin console.*?</title>","(?mi)<title[^>]*>openfire.*?</title>"]}]}]},{"id":"bibliopac","info":{"name":"bibliopac","author":"cn-kali-team","tags":"detect,tech,bibliopac","severity":"info","metadata":{"fofa-query":["title=\"bibliopac\""],"google-query":["intitle:\"bibliopac\""],"product":"bibliopac","shodan-query":["title:\"bibliopac\"","http.title:\"bibliopac\""],"vendor":"bibliosoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>bibliopac.*?</title>"]}]}]},{"id":"jeesns","info":{"name":"jeesns","author":"cn-kali-team","tags":"detect,tech,jeesns","severity":"info","metadata":{"fofa-query":["title=\"jeesns\""],"product":"jeesns","vendor":"jeesns","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>jeesns.*?</title>"]}]}]},{"id":"ectouch","info":{"name":"ectouch","author":"cn-kali-team","tags":"detect,tech,ectouch","severity":"info","metadata":{"fofa-query":["icon_hash=\"127711143\""],"product":"ectouch","vendor":"ectouch","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["127711143"]}]}]},{"id":"wps-hide-login","info":{"name":"wps-hide-login","author":"cn-kali-team","tags":"detect,tech,wps-hide-login","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/wps-hide-login\""],"product":"wps-hide-login","vendor":"wpserveur","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/wps-hide-login"],"case-insensitive":true}]}]},{"id":"udp","info":{"name":"udp","author":"cn-kali-team","tags":"detect,tech,udp","severity":"info","metadata":{"product":"udp","shodan-query":["http.favicon.hash:-1889244460"],"vendor":"arcserve","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1889244460"]}]}]},{"id":"vbulletin","info":{"name":"vbulletin","author":"cn-kali-team","tags":"detect,tech,vbulletin","severity":"info","metadata":{"product":"vbulletin","vendor":"vbulletin","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- do not remove this copyright notice -->powered by < a href=\"https://www.vbulletin.com\" id=\"vbulletinlink\">","content=\"vbulletin","powered by vbulletin™"],"case-insensitive":true}]}]},{"id":"webpagetest","info":{"name":"webpagetest","author":"cn-kali-team","tags":"detect,tech,webpagetest","severity":"info","metadata":{"product":"webpagetest","shodan-query":["title:\"webpagetest\""],"vendor":"webpagetest","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>webpagetest.*?</title>"]}]}]},{"id":"gradio","info":{"name":"gradio","author":"cn-kali-team","tags":"detect,tech,gradio","severity":"info","metadata":{"product":"gradio","shodan-query":["html:\"__gradio_mode__\""],"vendor":"gradio","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["__gradio_mode__"],"case-insensitive":true}]}]},{"id":"basic_pdu_firmware","info":{"name":"basic_pdu_firmware","author":"cn-kali-team","tags":"detect,tech,basic_pdu_firmware","severity":"info","metadata":{"fofa-query":["body=\"powertek\""],"product":"basic_pdu_firmware","shodan-query":["http.html:\"powertek\""],"vendor":"powertekpdus","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powertek"],"case-insensitive":true}]}]},{"id":"voyager","info":{"name":"voyager","author":"cn-kali-team","tags":"detect,tech,voyager","severity":"info","metadata":{"product":"voyager","shodan-query":["html:\"voyager-assets\""],"vendor":"voyager_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["voyager-assets"],"case-insensitive":true}]}]},{"id":"multiple_shipping_addresses_for_woocommerce","info":{"name":"multiple_shipping_addresses_for_woocommerce","author":"cn-kali-team","tags":"detect,tech,multiple_shipping_addresses_for_woocommerce","severity":"info","metadata":{"fofa-query":["body=\"wp-content/plugins/multiple-shipping-address-woocommerce\""],"product":"multiple_shipping_addresses_for_woocommerce","vendor":"themehigh","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wp-content/plugins/multiple-shipping-address-woocommerce"],"case-insensitive":true}]}]},{"id":"steve","info":{"name":"steve","author":"cn-kali-team","tags":"detect,tech,steve","severity":"info","metadata":{"google-query":["intitle:\"steve - steckdosenverwaltung\""],"product":"steve","shodan-query":["http.title:\"steve - steckdosenverwaltung\""],"vendor":"steve-community","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>steve - steckdosenverwaltung.*?</title>"]}]}]},{"id":"afterlogic-aurora-&-webmail","info":{"name":"afterlogic aurora & webmail","author":"cn-kali-team","tags":"detect,tech,afterlogic aurora & webmail","severity":"info","metadata":{"fofa-query":["x-server: afterlogicdavserver"],"product":"afterlogic aurora & webmail","vendor":"afterlogic","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-server: afterlogicdavserver"],"case-insensitive":true}]}]},{"id":"aurora","info":{"name":"aurora","author":"cn-kali-team","tags":"detect,tech,aurora","severity":"info","metadata":{"fofa-query":["x-server: afterlogicdavserver"],"product":"aurora","vendor":"afterlogic","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-server: afterlogicdavserver"],"case-insensitive":true}]}]},{"id":"graph_api","info":{"name":"graph_api","author":"cn-kali-team","tags":"detect,tech,graph_api","severity":"info","metadata":{"fofa-query":["title=\"owncloud\""],"google-query":["intitle:\"owncloud\""],"product":"graph_api","shodan-query":["title:\"owncloud\"","http.title:\"owncloud\""],"vendor":"owncloud","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>owncloud.*?</title>"]}]}]},{"id":"seeddms","info":{"name":"seeddms","author":"cn-kali-team","tags":"detect,tech,seeddms","severity":"info","metadata":{"product":"seeddms","shodan-query":["http.title:\"seeddms\""],"vendor":"seeddms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>seeddms.*?</title>"]}]}]},{"id":"dolibarr_erp-crm","info":{"name":"dolibarr_erp-crm","author":"cn-kali-team","tags":"detect,tech,dolibarr_erp-crm","severity":"info","metadata":{"fofa-query":["icon_hash=440258421"],"product":"dolibarr_erp-crm","shodan-query":["http.favicon.hash:440258421"],"vendor":"dolibarr","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["440258421"]}]}]},{"id":"rg-ew1200g_firmware","info":{"name":"rg-ew1200g_firmware","author":"cn-kali-team","tags":"detect,tech,rg-ew1200g_firmware","severity":"info","metadata":{"fofa-query":["body=\"app.2fe6356cdd1ddd0eb8d6317d1a48d379.css\""],"product":"rg-ew1200g_firmware","shodan-query":["http.html:\"app.2fe6356cdd1ddd0eb8d6317d1a48d379.css\""],"vendor":"ruijienetworks","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["app.2fe6356cdd1ddd0eb8d6317d1a48d379.css"],"case-insensitive":true}]}]},{"id":"jquery-bbq","info":{"name":"jquery-bbq","author":"cn-kali-team","tags":"detect,tech,jquery-bbq","severity":"info","metadata":{"product":"jquery-bbq","shodan-query":["html:\"odoo\""],"vendor":"jquery-bbq_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["odoo"],"case-insensitive":true}]}]},{"id":"supersign_cms","info":{"name":"supersign_cms","author":"cn-kali-team","tags":"detect,tech,supersign_cms","severity":"info","metadata":{"fofa-query":["title=\"lg supersign\""],"product":"supersign_cms","vendor":"lg","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>lg supersign.*?</title>"]}]}]},{"id":"simple_editor","info":{"name":"simple_editor","author":"cn-kali-team","tags":"detect,tech,simple_editor","severity":"info","metadata":{"fofa-query":["icon_hash=\"159985907\""],"product":"simple_editor","vendor":"lg","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["159985907"]}]}]},{"id":"goanywhere_managed_file_transfer","info":{"name":"goanywhere_managed_file_transfer","author":"cn-kali-team","tags":"detect,tech,goanywhere_managed_file_transfer","severity":"info","metadata":{"fofa-query":["app=\"goanywhere-mft\"","icon_hash=1484947000","icon_hash=1484947000,1828756398,1170495932"],"product":"goanywhere_managed_file_transfer","shodan-query":["http.favicon.hash:1484947000,1828756398,1170495932","http.favicon.hash:1484947000"],"vendor":"fortra","verified":true,"zoomeye-query":["app:\"fortra goanywhere-mft\""]}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1170495932","1484947000","1828756398"]}]}]},{"id":"omnipcx","info":{"name":"omnipcx","author":"cn-kali-team","tags":"detect,tech,omnipcx","severity":"info","metadata":{"fofa-query":["app=\"alcatel_lucent-omnipcx-enterprise\"","title=\"omnipcx for enterprise\""],"google-query":["intitle:\"omnipcx for enterprise\""],"product":"omnipcx","shodan-query":["title:\"omnipcx for enterprise\"","http.title:\"omnipcx for enterprise\""],"vendor":"alcatel-lucent","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>omnipcx for enterprise.*?</title>"]}]}]},{"id":"beyondtrust","info":{"name":"beyondtrust","author":"cn-kali-team","tags":"detect,tech,beyondtrust","severity":"info","metadata":{"google-query":["intext:\"beyondtrust\" \"redistribution prohibited\""],"product":"beyondtrust","shodan-query":["html:\"beyondtrust\""],"vendor":"beyondtrust","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["beyondtrust"],"case-insensitive":true}]}]},{"id":"remote_support","info":{"name":"remote_support","author":"cn-kali-team","tags":"detect,tech,remote_support","severity":"info","metadata":{"google-query":["intext:\"beyondtrust\" \"redistribution prohibited\""],"product":"remote_support","shodan-query":["html:\"beyondtrust\""],"vendor":"beyondtrust","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["beyondtrust"],"case-insensitive":true}]}]},{"id":"sangfor","info":{"name":"sangfor","author":"cn-kali-team","tags":"detect,tech,sangfor","severity":"info","metadata":{"fofa-query":["app=\"sangfor\"","fid=\"iaytna57019/kadk8nev7g==\"","ishighperformance : !!sfishighperformance","app=\"sangfor-应用交付管理系统\"","app=\"sangfor-应用交付报表系统\""],"product":"sangfor","vendor":"sangfor","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ishighperformance : !!sfishighperformance"],"case-insensitive":true}]}]},{"id":"next-gen_application_firewall","info":{"name":"next-gen_application_firewall","author":"cn-kali-team","tags":"detect,tech,next-gen_application_firewall","severity":"info","metadata":{"fofa-query":["title=\"sangfor | ngaf\""],"product":"next-gen_application_firewall","vendor":"sangfor","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>sangfor.*?</title>"]}]}]},{"id":"pmb","info":{"name":"pmb","author":"cn-kali-team","tags":"detect,tech,pmb","severity":"info","metadata":{"fofa-query":["body=\"pmb group\"","icon_hash=1469328760"],"product":"pmb","shodan-query":["http.favicon.hash:1469328760","http.html:\"pmb group\""],"vendor":"sigb","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pmb group"],"case-insensitive":true},{"type":"favicon","hash":["1469328760"]}]}]},{"id":"movable_type","info":{"name":"movable_type","author":"cn-kali-team","tags":"detect,tech,movable_type","severity":"info","metadata":{"fofa-query":["title=\"サインイン | movable type pro\""],"google-query":["intitle:\"サインイン | movable type pro\""],"product":"movable_type","shodan-query":["http.title:\"サインイン | movable type pro\"","cpe:\"cpe:2.3:a:sixapart:movable_type\""],"vendor":"sixapart","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>サインイン .*?</title>"]}]}]},{"id":"download_manager","info":{"name":"download_manager","author":"cn-kali-team","tags":"detect,tech,download_manager","severity":"info","metadata":{"fofa-query":["body=\"wp-content/plugins/download-manager/\""],"google-query":["inurl:\"/wp-content/plugins/download-manager/\""],"product":"download_manager","shodan-query":["html:\"wp-content/plugins/download-manager/\""],"vendor":"w3eden","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wp-content/plugins/download-manager/"],"case-insensitive":true}]}]},{"id":"landray_ekp","info":{"name":"landray_ekp","author":"cn-kali-team","tags":"detect,tech,landray_ekp","severity":"info","metadata":{"product":"landray_ekp","shodan-query":["http.favicon.hash:831854882"],"vendor":"landray","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["831854882"]}]}]},{"id":"i3geo","info":{"name":"i3geo","author":"cn-kali-team","tags":"detect,tech,i3geo","severity":"info","metadata":{"fofa-query":["body=\"i3geo\""],"product":"i3geo","shodan-query":["http.html:\"i3geo\""],"vendor":"softwarepublico","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["i3geo"],"case-insensitive":true}]}]},{"id":"lexmark","info":{"name":"lexmark","author":"cn-kali-team","tags":"detect,tech,lexmark","severity":"info","metadata":{"product":"lexmark","vendor":"lexmark","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/status","<title>lexmark"],"condition":"and","case-insensitive":true}]}]},{"id":"phppgadmin","info":{"name":"phppgadmin","author":"cn-kali-team","tags":"detect,tech,phppgadmin","severity":"info","metadata":{"product":"phppgadmin","vendor":"phppgadmin","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"appname\">phppgadmin"],"case-insensitive":true}]}]},{"id":"aura_utility_services","info":{"name":"aura_utility_services","author":"cn-kali-team","tags":"detect,tech,aura_utility_services","severity":"info","metadata":{"product":"aura_utility_services","shodan-query":["html:\"avaya aura\""],"vendor":"avaya","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["avaya aura"],"case-insensitive":true}]}]},{"id":"aura_device_services","info":{"name":"aura_device_services","author":"cn-kali-team","tags":"detect,tech,aura_device_services","severity":"info","metadata":{"fofa-query":["body=\"avaya aura® utility services\""],"product":"aura_device_services","shodan-query":["html:\"avaya aura® utility services\""],"vendor":"avaya","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["avaya aura","nbsp;utility services"],"case-insensitive":true}]}]},{"id":"bentoml","info":{"name":"bentoml","author":"cn-kali-team","tags":"detect,tech,bentoml","severity":"info","metadata":{"fofa-query":["body=\"bentoml\""],"product":"bentoml","shodan-query":["html:\"bentoml\""],"vendor":"bentoml","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["bentoml"]}]}]},{"id":"mojoportal","info":{"name":"mojoportal","author":"cn-kali-team","tags":"detect,tech,mojoportal","severity":"info","metadata":{"fofa-query":["body=\"mojoportal\"","title=\"mojoportal\""],"product":"mojoportal","shodan-query":["html:\"mojoportal\"","http.html:\"mojoportal\""],"vendor":"mojoportal","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["mojoportal"],"case-insensitive":true}]}]},{"id":"hd-network_real-time_monitoring_system","info":{"name":"hd-network_real-time_monitoring_system","author":"cn-kali-team","tags":"detect,tech,hd-network_real-time_monitoring_system","severity":"info","metadata":{"fofa-query":["title=\"hd-network real-time monitoring system v2.0\""],"google-query":["intitle:\"hd-network real-time monitoring system v2.0\""],"product":"hd-network_real-time_monitoring_system","shodan-query":["http.title:\"hd-network real-time monitoring system v2.0\""],"vendor":"hd-network_real-time_monitoring_system_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>hd-network real-time monitoring system v2.0.*?</title>"]}]}]},{"id":"nocodb","info":{"name":"nocodb","author":"cn-kali-team","tags":"detect,tech,nocodb","severity":"info","metadata":{"fofa-query":["icon_hash=-2017596142"],"product":"nocodb","shodan-query":["http.favicon.hash:-2017596142"],"vendor":"nocodb","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-2017596142"]}]}]},{"id":"energy_communication_unit_firmware","info":{"name":"energy_communication_unit_firmware","author":"cn-kali-team","tags":"detect,tech,energy_communication_unit_firmware","severity":"info","metadata":{"fofa-query":["title=\"altenergy power control software\""],"google-query":["intitle:\"altenergy power control software\""],"product":"energy_communication_unit_firmware","shodan-query":["title:\"altenergy power control software\"","http.title:\"altenergy power control software\""],"vendor":"apsystems","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>altenergy power control software.*?</title>"]}]}]},{"id":"aruba-instant-access-point","info":{"name":"aruba-instant-access-point","author":"cn-kali-team","tags":"detect,tech,aruba-instant-access-point","severity":"info","metadata":{"fofa-query":["body=\"jscripts/third_party/raphael-treemap.min.js\" || body=\"jscripts/third_party/highcharts.src.js\""],"product":"aruba-instant-access-point","shodan-query":["title:\"aruba\""],"vendor":"aruba","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jscripts/third_party/highcharts.src.js","jscripts/third_party/raphael-treemap.min.js"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>aruba.*?</title>"]}]}]},{"id":"moticdsm","info":{"name":"moticdsm","author":"cn-kali-team","tags":"detect,tech,moticdsm","severity":"info","metadata":{"fofa-query":["icon_hash=\"617142232\""],"product":"moticdsm","vendor":"xiamen-motic","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["617142232"]}]}]},{"id":"maxsite_cms","info":{"name":"maxsite_cms","author":"cn-kali-team","tags":"detect,tech,maxsite_cms","severity":"info","metadata":{"fofa-query":["body='content=\"maxsite cms'"],"product":"maxsite_cms","shodan-query":["html:'content=\"maxsite cms'","http.html:'content=\"maxsite cms'"],"vendor":"maxsite","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"maxsite cms"],"case-insensitive":true}]}]},{"id":"xxl-job","info":{"name":"xxl-job","author":"cn-kali-team","tags":"detect,tech,xxl-job","severity":"info","metadata":{"fofa-query":["icon_hash=1691956220"],"product":"xxl-job","shodan-query":["http.favicon.hash:1691956220"],"vendor":"xuxueli","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/","{{BaseURL}}/xxl-job-admin"],"matchers":[{"type":"favicon","hash":["1691956220"]},{"type":"word","words":["分布式任务调度平台xxl-job"],"case-insensitive":true}]}]},{"id":"datahub","info":{"name":"datahub","author":"cn-kali-team","tags":"detect,tech,datahub","severity":"info","metadata":{"product":"datahub","shodan-query":["http.title:\"datahub\""],"vendor":"datahub_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>datahub.*?</title>"]}]}]},{"id":"roundcube","info":{"name":"roundcube","author":"cn-kali-team","tags":"detect,tech,roundcube","severity":"info","metadata":{"fofa-query":["roundcube_sessid"],"product":"roundcube","shodan-query":["http.component:\"roundcube\""],"vendor":"roundcube","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["roundcube_sessid"],"case-insensitive":true}]}]},{"id":"roundcube-webmail","info":{"name":"roundcube-webmail","author":"cn-kali-team","tags":"detect,tech,roundcube-webmail","severity":"info","metadata":{"product":"roundcube-webmail","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["ef9c0362bf20a086bb7c2e8ea346b9f0"]},{"type":"word","words":["<title>roundcube"],"case-insensitive":true}]}]},{"id":"kio_firmware","info":{"name":"kio_firmware","author":"cn-kali-team","tags":"detect,tech,kio_firmware","severity":"info","metadata":{"product":"kio_firmware","shodan-query":["title:\"контроллер\""],"vendor":"tekon","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>контроллер.*?</title>"]}]}]},{"id":"xc1000_firmware","info":{"name":"xc1000_firmware","author":"cn-kali-team","tags":"detect,tech,xc1000_firmware","severity":"info","metadata":{"fofa-query":["body=\"cassia bluetooth gateway management platform\""],"product":"xc1000_firmware","shodan-query":["html:\"cassia bluetooth gateway management platform\"","http.html:\"cassia bluetooth gateway management platform\""],"vendor":"cassianetworks","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cassia bluetooth gateway management platform"],"case-insensitive":true}]}]},{"id":"pandora_fms","info":{"name":"pandora_fms","author":"cn-kali-team","tags":"detect,tech,pandora_fms","severity":"info","metadata":{"fofa-query":["title=\"pandora fms\""],"google-query":["intitle:\"pandora fms\""],"product":"pandora_fms","shodan-query":["title:\"pandora fms\"","http.title:\"pandora fms\""],"vendor":"pandorafms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>pandora fms.*?</title>"]}]}]},{"id":"mcms","info":{"name":"mcms","author":"cn-kali-team","tags":"detect,tech,mcms","severity":"info","metadata":{"fofa-query":["icon_hash=\"1464851260\""],"product":"mcms","shodan-query":["http.favicon.hash:1464851260","http.favicon.hash:\"1464851260\""],"vendor":"mingsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1464851260"]}]}]},{"id":"academy_lms","info":{"name":"academy_lms","author":"cn-kali-team","tags":"detect,tech,academy_lms","severity":"info","metadata":{"fofa-query":["body=\"academy lms\""],"product":"academy_lms","shodan-query":["http.html:\"academy lms\"","html:\"academy lms\""],"vendor":"creativeitem","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["academy lms"],"case-insensitive":true}]}]},{"id":"academy_learning_management_system","info":{"name":"academy_learning_management_system","author":"cn-kali-team","tags":"detect,tech,academy_learning_management_system","severity":"info","metadata":{"fofa-query":["body=\"study any topic, anytime\""],"google-query":["intext:\"study any topic, anytime\""],"product":"academy_learning_management_system","shodan-query":["http.html:\"study any topic, anytime\""],"vendor":"creativeitem","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["study any topic, anytime"],"case-insensitive":true}]}]},{"id":"torchserve","info":{"name":"torchserve","author":"cn-kali-team","tags":"detect,tech,torchserve","severity":"info","metadata":{"fofa-query":["body=\"requested method is not allowed, please refer to api document\""],"product":"torchserve","vendor":"pytorch","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["requested method is not allowed, please refer to api document"],"case-insensitive":true}]}]},{"id":"jorani","info":{"name":"jorani","author":"cn-kali-team","tags":"detect,tech,jorani","severity":"info","metadata":{"fofa-query":["icon_hash=-2032163853"],"product":"jorani","shodan-query":["title:\"login - jorani\"","http.favicon.hash:-2032163853"],"vendor":"jorani_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-2032163853"]},{"type":"regex","regex":["(?mi)<title[^>]*>login - jorani.*?</title>"]}]}]},{"id":"cockpit","info":{"name":"cockpit","author":"cn-kali-team","tags":"detect,tech,cockpit","severity":"info","metadata":{"fofa-query":["icon_hash=688609340","body=\"cockpit\""],"product":"cockpit","shodan-query":["http.favicon.hash:688609340","http.html:\"cockpit\"","html:\"cockpit\""],"vendor":"agentejo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["cockpit"],"case-insensitive":true},{"type":"favicon","hash":["688609340"]}]}]},{"id":"blogengine.net","info":{"name":"blogengine.net","author":"cn-kali-team","tags":"detect,tech,blogengine.net","severity":"info","metadata":{"fofa-query":["body=\"blogengine.net\""],"product":"blogengine.net","shodan-query":["http.html:\"blogengine.net\""],"vendor":"blogengine","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["blogengine.net"],"case-insensitive":true}]}]},{"id":"rukovoditel","info":{"name":"rukovoditel","author":"cn-kali-team","tags":"detect,tech,rukovoditel","severity":"info","metadata":{"fofa-query":["icon_hash=-1499940355"],"product":"rukovoditel","shodan-query":["http.favicon.hash:-1499940355"],"vendor":"rukovoditel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1499940355"]}]}]},{"id":"commvault","info":{"name":"commvault","author":"cn-kali-team","tags":"detect,tech,commvault","severity":"info","metadata":{"fofa-query":["icon_hash=\"1209838013\""],"product":"commvault","vendor":"commvault","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1209838013"]}]}]},{"id":"opencti","info":{"name":"opencti","author":"cn-kali-team","tags":"detect,tech,opencti","severity":"info","metadata":{"product":"opencti","shodan-query":["http.html:\"opencti\""],"vendor":"citeum","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["opencti"],"case-insensitive":true}]}]},{"id":"youphptube_encoder","info":{"name":"youphptube_encoder","author":"cn-kali-team","tags":"detect,tech,youphptube_encoder","severity":"info","metadata":{"fofa-query":["icon_hash=\"-276846707\""],"product":"youphptube_encoder","vendor":"youphptube","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-276846707"]}]}]},{"id":"argo_cd","info":{"name":"argo_cd","author":"cn-kali-team","tags":"detect,tech,argo_cd","severity":"info","metadata":{"product":"argo_cd","shodan-query":["html:\"argo cd\""],"vendor":"argoproj","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["argo cd"],"case-insensitive":true}]}]},{"id":"phpcollab","info":{"name":"phpcollab","author":"cn-kali-team","tags":"detect,tech,phpcollab","severity":"info","metadata":{"product":"phpcollab","vendor":"phpcollab","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- powered by phpcollab","content='phpcollab"],"case-insensitive":true}]}]},{"id":"elasticsearch","info":{"name":"elasticsearch","author":"cn-kali-team","tags":"detect,tech,elasticsearch","severity":"info","metadata":{"product":"elasticsearch","vendor":"elasticsearch","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["6177bfb75b498e0bb356223ed76ffe43"]},{"type":"word","words":[" \"tagline\" : \"you know, for search\""],"case-insensitive":true}]}]},{"id":"vmg1312-b10d_firmware","info":{"name":"vmg1312-b10d_firmware","author":"cn-kali-team","tags":"detect,tech,vmg1312-b10d_firmware","severity":"info","metadata":{"fofa-query":["body=\"vmg1312-b10d\""],"product":"vmg1312-b10d_firmware","shodan-query":["http.html:\"vmg1312-b10d\""],"vendor":"zyxel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["vmg1312-b10d"],"case-insensitive":true}]}]},{"id":"uag2100","info":{"name":"uag2100","author":"cn-kali-team","tags":"detect,tech,uag2100","severity":"info","metadata":{"fofa-query":["title=\"zywall\""],"google-query":["intitle:\"zywall\""],"product":"uag2100","shodan-query":["http.title:\"zywall\""],"vendor":"zyxel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>zywall.*?</title>"]}]}]},{"id":"usg40_firmware","info":{"name":"usg40_firmware","author":"cn-kali-team","tags":"detect,tech,usg40_firmware","severity":"info","metadata":{"fofa-query":["body=\"/2fa-access.cgi\" && body=\"zyxel zyxel_style1\""],"product":"usg40_firmware","vendor":"zyxel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" body=\"zyxel zyxel_style1","/2fa-access.cgi\" "],"case-insensitive":true}]}]},{"id":"usg20-vpn_firmware","info":{"name":"usg20-vpn_firmware","author":"cn-kali-team","tags":"detect,tech,usg20-vpn_firmware","severity":"info","metadata":{"fofa-query":["title=\"usg flex 100\""],"google-query":["intitle:\"usg flex 100\""],"product":"usg20-vpn_firmware","shodan-query":["title:\"usg flex 100\"","http.title:\"usg flex 100\""],"vendor":"zyxel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>usg flex 100.*?</title>"]}]}]},{"id":"usg_flex_100w_firmware","info":{"name":"usg_flex_100w_firmware","author":"cn-kali-team","tags":"detect,tech,usg_flex_100w_firmware","severity":"info","metadata":{"product":"usg_flex_100w_firmware","shodan-query":["title:\"usg flex 100\",\"usg flex 100w\",\"usg flex 200\",\"usg flex 500\",\"usg flex 700\",\"usg flex 50\",\"usg flex 50w\",\"atp100\",\"atp200\",\"atp500\",\"atp700\"","http.title:\"usg flex 100\",\"usg flex 100w\",\"usg flex 200\",\"usg flex 500\",\"usg flex 700\",\"usg flex 50\",\"usg flex 50w\",\"atp100\",\"atp200\",\"atp500\",\"atp700\""],"vendor":"zyxel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>usg flex 100\",\"usg flex 100w\",\"usg flex 200\",\"usg flex 500\",\"usg flex 700\",\"usg flex 50\",\"usg flex 50w\",\"atp100\",\"atp200\",\"atp500\",\"atp700.*?</title>"]}]}]},{"id":"usg1000_firmware","info":{"name":"usg1000_firmware","author":"cn-kali-team","tags":"detect,tech,usg1000_firmware","severity":"info","metadata":{"product":"usg1000_firmware","shodan-query":["title:\"usg flex\""],"vendor":"zyxel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>usg flex.*?</title>"]}]}]},{"id":"uag2100_firmware","info":{"name":"uag2100_firmware","author":"cn-kali-team","tags":"detect,tech,uag2100_firmware","severity":"info","metadata":{"fofa-query":["title=\"zywall\""],"google-query":["intitle:\"zywall\""],"product":"uag2100_firmware","shodan-query":["http.title:\"zywall\""],"vendor":"zyxel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>zywall.*?</title>"]}]}]},{"id":"zywall_2_plus_internet_security_appliance_firmware","info":{"name":"zywall_2_plus_internet_security_appliance_firmware","author":"cn-kali-team","tags":"detect,tech,zywall_2_plus_internet_security_appliance_firmware","severity":"info","metadata":{"fofa-query":["title=\"zywall2plus\""],"google-query":["intitle:\"zywall2plus\""],"product":"zywall_2_plus_internet_security_appliance_firmware","shodan-query":["http.title:\"zywall2plus\""],"vendor":"zyxel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>zywall2plus.*?</title>"]}]}]},{"id":"zyxel","info":{"name":"zyxel","author":"cn-kali-team","tags":"detect,tech,zyxel","severity":"info","metadata":{"product":"zyxel","shodan-query":["http.html:\"vmg1312-b10d\""],"vendor":"zyxel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["vmg1312-b10d"],"case-insensitive":true}]}]},{"id":"11n_firmware","info":{"name":"11n_firmware","author":"cn-kali-team","tags":"detect,tech,11n_firmware","severity":"info","metadata":{"fofa-query":["product==\"tenda-11n-wireless-ap\"","title=\"tenda 11n\""],"google-query":["intitle:\"tenda 11n\""],"product":"11n_firmware","shodan-query":["http.title:\"tenda 11n\""],"vendor":"tenda","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>tenda 11n.*?</title>"]}]}]},{"id":"ac15_firmware","info":{"name":"ac15_firmware","author":"cn-kali-team","tags":"detect,tech,ac15_firmware","severity":"info","metadata":{"product":"ac15_firmware","shodan-query":["http.title:\"tenda wifi\""],"vendor":"tenda","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>tenda wifi.*?</title>"]}]}]},{"id":"nagios_xi","info":{"name":"nagios_xi","author":"cn-kali-team","tags":"detect,tech,nagios_xi","severity":"info","metadata":{"fofa-query":["app=\"nagios-xi\"","title=\"nagios xi\""],"google-query":["intitle:\"nagios xi\""],"product":"nagios_xi","shodan-query":["http.title:\"nagios xi\"","title:\"nagios xi\""],"vendor":"nagios","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>nagios xi.*?</title>"]}]}]},{"id":"traggo","info":{"name":"traggo","author":"cn-kali-team","tags":"detect,tech,traggo","severity":"info","metadata":{"fofa-query":["body=\"traggo\""],"product":"traggo","shodan-query":["html:\"traggo\"","http.html:\"traggo\""],"vendor":"traggo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["traggo"],"case-insensitive":true}]}]},{"id":"phpshe","info":{"name":"phpshe","author":"cn-kali-team","tags":"detect,tech,phpshe","severity":"info","metadata":{"product":"phpshe","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"phpshe","powered by phpshe"],"case-insensitive":true}]}]},{"id":"ax8","info":{"name":"ax8","author":"cn-kali-team","tags":"detect,tech,ax8","severity":"info","metadata":{"fofa-query":["app=\"flir-ax8\""],"product":"ax8","shodan-query":["title:\"flir\""],"vendor":"flir","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>flir.*?</title>"]}]}]},{"id":"oscommerce","info":{"name":"oscommerce","author":"cn-kali-team","tags":"detect,tech,oscommerce","severity":"info","metadata":{"product":"oscommerce","shodan-query":["html:\"oscommerce\""],"vendor":"oscommerce","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["oscommerce"],"case-insensitive":true},{"type":"word","words":["src=\"images/oscommerce.png"],"case-insensitive":true},{"type":"word","words":["set-cookie: oscsid="],"part":"header","case-insensitive":true}]}]},{"id":"msnswitch_firmware","info":{"name":"msnswitch_firmware","author":"cn-kali-team","tags":"detect,tech,msnswitch_firmware","severity":"info","metadata":{"product":"msnswitch_firmware","shodan-query":["http.favicon.hash:-2073748627 || http.favicon.hash:-1721140132"],"vendor":"megatech","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":[" http.favicon.hash:-1721140132","-2073748627 "]}]}]},{"id":"issabel-pbx","info":{"name":"issabel-pbx","author":"cn-kali-team","tags":"detect,tech,issabel-pbx","severity":"info","metadata":{"fofa-query":["title=\"issabel\""],"product":"issabel-pbx","shodan-query":["title:\"issabel\""],"vendor":"issabel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>issabel.*?</title>"]}]}]},{"id":"pbx","info":{"name":"pbx","author":"cn-kali-team","tags":"detect,tech,pbx","severity":"info","metadata":{"fofa-query":["title=\"issabel\""],"product":"pbx","vendor":"issabel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>issabel.*?</title>"]}]}]},{"id":"qlik_sense","info":{"name":"qlik_sense","author":"cn-kali-team","tags":"detect,tech,qlik_sense","severity":"info","metadata":{"fofa-query":["app=\"qlik-sense\"","title=\"qlik-sense\"","icon_hash=-74348711","body=\"qlik\""],"google-query":["intitle:\"qlik-sense\""],"product":"qlik_sense","shodan-query":["html:\"qlik\"","http.favicon.hash:-74348711","http.html:\"qlik\"","http.title:\"qlik-sense\""],"vendor":"qlik","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["qlik"],"case-insensitive":true},{"type":"favicon","hash":["-74348711"]},{"type":"regex","regex":["(?mi)<title[^>]*>qlik-sense.*?</title>"]}]}]},{"id":"linux_kernel","info":{"name":"linux_kernel","author":"cn-kali-team","tags":"detect,tech,linux_kernel","severity":"info","metadata":{"product":"linux_kernel","shodan-query":["html:\"aspera faspex\"","cpe:\"cpe:2.3:o:linux:linux_kernel\""],"vendor":"linux","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["aspera faspex"],"case-insensitive":true}]}]},{"id":"next.js","info":{"name":"next.js","author":"cn-kali-team","tags":"detect,tech,next.js","severity":"info","metadata":{"fofa-query":["body=\"/_next/static\""],"product":"next.js","shodan-query":["http.html:\"/_next/static\"","cpe:\"cpe:2.3:a:zeit:next.js\"","html:\"/_next/static\""],"vendor":"zeit","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/_next/static"],"case-insensitive":true}]}]},{"id":"influxdata-influxdb","info":{"name":"influxdata-influxdb","author":"cn-kali-team","tags":"detect,tech,influxdata-influxdb","severity":"info","metadata":{"product":"influxdb","vendor":"influxdata","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["class=\"influxdb-version\"","influxdb"],"case-insensitive":true}]}]},{"id":"smartstorenet","info":{"name":"smartstorenet","author":"cn-kali-team","tags":"detect,tech,smartstorenet","severity":"info","metadata":{"fofa-query":["body='content=\"smartstore'"],"product":"smartstorenet","shodan-query":["http.html:'content=\"smartstore'"],"vendor":"smartstore","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"smartstore"],"case-insensitive":true}]}]},{"id":"lin-cms-spring-boot","info":{"name":"lin-cms-spring-boot","author":"cn-kali-team","tags":"detect,tech,lin-cms-spring-boot","severity":"info","metadata":{"fofa-query":["body=\"心上无垢,林间有风\""],"product":"lin-cms-spring-boot","shodan-query":["http.html:\"心上无垢,林间有风\""],"vendor":"talelin","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["心上无垢,林间有风"],"case-insensitive":true}]}]},{"id":"cph2_echarge","info":{"name":"cph2_echarge","author":"cn-kali-team","tags":"detect,tech,cph2_echarge","severity":"info","metadata":{"product":"cph2_echarge","shodan-query":["html:\"salia plcc\""],"vendor":"hardy-barth","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["salia plcc"],"case-insensitive":true}]}]},{"id":"eyesofnetwork","info":{"name":"eyesofnetwork","author":"cn-kali-team","tags":"detect,tech,eyesofnetwork","severity":"info","metadata":{"fofa-query":["title=\"eyesofnetwork\""],"product":"eyesofnetwork","shodan-query":["html:\"eyesofnetwork\""],"vendor":"eyesofnetwork","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["eyesofnetwork"],"case-insensitive":true}]}]},{"id":"secure_web_gateway","info":{"name":"secure_web_gateway","author":"cn-kali-team","tags":"detect,tech,secure_web_gateway","severity":"info","metadata":{"fofa-query":["body=\"iboss-font.css\""],"google-query":["intext:\"iboss-font.css\""],"product":"secure_web_gateway","shodan-query":["html:\"iboss-font.css\""],"vendor":"iboss","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["iboss-font.css"],"case-insensitive":true}]}]},{"id":"on-premises_installation","info":{"name":"on-premises_installation","author":"cn-kali-team","tags":"detect,tech,on-premises_installation","severity":"info","metadata":{"fofa-query":["icon_hash=1199592666"],"product":"on-premises_installation","shodan-query":["http.favicon.hash:1199592666"],"vendor":"structurizr","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1199592666"]}]}]},{"id":"balance_two_firmware","info":{"name":"balance_two_firmware","author":"cn-kali-team","tags":"detect,tech,balance_two_firmware","severity":"info","metadata":{"product":"balance_two_firmware","shodan-query":["html:\"peplink\""],"vendor":"peplink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["peplink"],"case-insensitive":true}]}]},{"id":"labkey_server","info":{"name":"labkey_server","author":"cn-kali-team","tags":"detect,tech,labkey_server","severity":"info","metadata":{"fofa-query":["title=\"sign in: /home\""],"google-query":["intitle:\"sign in: /home\""],"product":"labkey_server","shodan-query":["server: labkey","http.title:\"sign in: /home\""],"vendor":"labkey","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>sign in: /home.*?</title>"]}]}]},{"id":"magnolia_cms","info":{"name":"magnolia_cms","author":"cn-kali-team","tags":"detect,tech,magnolia_cms","severity":"info","metadata":{"product":"magnolia_cms","shodan-query":["html:\"magnolia is a registered trademark\""],"vendor":"magnolia-cms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["magnolia is a registered trademark"],"case-insensitive":true}]}]},{"id":"nas_os","info":{"name":"nas_os","author":"cn-kali-team","tags":"detect,tech,nas_os","severity":"info","metadata":{"fofa-query":["title=\"seagate nas - seagate\""],"google-query":["intitle:\"seagate nas - seagate\""],"product":"nas_os","shodan-query":["http.title:\"seagate nas - seagate\""],"vendor":"seagate","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>seagate nas - seagate.*?</title>"]}]}]},{"id":"broken_link_notifier","info":{"name":"broken_link_notifier","author":"cn-kali-team","tags":"detect,tech,broken_link_notifier","severity":"info","metadata":{"fofa-query":["body=\"blnotifier_front_end\""],"product":"broken_link_notifier","vendor":"broken_link_notifier_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["blnotifier_front_end"],"case-insensitive":true}]}]},{"id":"compact_controller_100_firmware","info":{"name":"compact_controller_100_firmware","author":"cn-kali-team","tags":"detect,tech,compact_controller_100_firmware","severity":"info","metadata":{"fofa-query":["body=\"/wbm/\" html:\"wago\""],"product":"compact_controller_100_firmware","shodan-query":["html:\"/wbm/\" html:\"wago\"","http.html:\"/wbm/\" html:\"wago\""],"vendor":"wago","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wbm/\" html:\"wago"],"case-insensitive":true}]}]},{"id":"wago","info":{"name":"wago","author":"cn-kali-team","tags":"detect,tech,wago","severity":"info","metadata":{"product":"wago","shodan-query":["html:\"wago ethernet web-based management\""],"vendor":"wago","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wago ethernet web-based management"],"case-insensitive":true}]}]},{"id":"phpmyfaq","info":{"name":"phpmyfaq","author":"cn-kali-team","tags":"detect,tech,phpmyfaq","severity":"info","metadata":{"fofa-query":["body=\"phpmyfaq\""],"product":"phpmyfaq","shodan-query":["http.html:\"phpmyfaq\""],"vendor":"phpmyfaq","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["phpmyfaq"],"case-insensitive":true}]}]},{"id":"vvvebjs","info":{"name":"vvvebjs","author":"cn-kali-team","tags":"detect,tech,vvvebjs","severity":"info","metadata":{"fofa-query":["icon_hash=\"524332373\""],"product":"vvvebjs","vendor":"vvvebjs","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["524332373"]}]}]},{"id":"opsview","info":{"name":"opsview","author":"cn-kali-team","tags":"detect,tech,opsview","severity":"info","metadata":{"fofa-query":["title=\"opsview\""],"google-query":["intitle:\"opsview\""],"product":"opsview","shodan-query":["http.title:\"opsview\"","title:\"opsview\""],"vendor":"opsview","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>opsview.*?</title>"]}]}]},{"id":"papercut","info":{"name":"papercut","author":"cn-kali-team","tags":"detect,tech,papercut","severity":"info","metadata":{"product":"papercut","vendor":"papercut","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<h1 id=\"papercut-user-login-title\">"],"case-insensitive":true}]}]},{"id":"papercut_mf","info":{"name":"papercut_mf","author":"cn-kali-team","tags":"detect,tech,papercut_mf","severity":"info","metadata":{"fofa-query":["body=\"papercut\"","body=\"content=\\\"papercut\\\"\""],"product":"papercut_mf","shodan-query":["html:\"content=\\\"papercut\\\"\"","http.html:\"papercut\"","http.html:\"content=\\\"papercut\\\"\"","cpe:\"cpe:2.3:a:papercut:papercut_mf\""],"vendor":"papercut","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=papercut","papercut"],"case-insensitive":true}]}]},{"id":"papercut_ng","info":{"name":"papercut_ng","author":"cn-kali-team","tags":"detect,tech,papercut_ng","severity":"info","metadata":{"fofa-query":["body='content=\"papercut'","body=\"content=\\\"papercut\\\"\""],"google-query":["html:'content=\"papercut'"],"product":"papercut_ng","shodan-query":["html:\"content=\\\"papercut\\\"\"","http.html:'content=\"papercut'","cpe:\"cpe:2.3:a:papercut:papercut_ng\"","http.html:\"content=\\\"papercut\\\"\""],"vendor":"papercut","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"papercut","content=papercut"],"case-insensitive":true}]}]},{"id":"device_manager_express","info":{"name":"device_manager_express","author":"cn-kali-team","tags":"detect,tech,device_manager_express","severity":"info","metadata":{"fofa-query":["title=\"audiocodes\""],"google-query":["intitle:\"audiocodes\""],"product":"device_manager_express","shodan-query":["title:\"audiocodes\"","http.title:\"audiocodes\""],"vendor":"audiocodes","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>audiocodes.*?</title>"]}]}]},{"id":"wp_go_maps","info":{"name":"wp_go_maps","author":"cn-kali-team","tags":"detect,tech,wp_go_maps","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/wp-google-maps\""],"product":"wp_go_maps","vendor":"wpgmaps","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/wp-google-maps"],"case-insensitive":true}]}]},{"id":"active_management_technology_firmware","info":{"name":"active_management_technology_firmware","author":"cn-kali-team","tags":"detect,tech,active_management_technology_firmware","severity":"info","metadata":{"fofa-query":["title=\"active management technology\""],"google-query":["intitle:\"active management technology\""],"product":"active_management_technology_firmware","shodan-query":["title:\"active management technology\"","http.title:\"active management technology\""],"vendor":"intel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>active management technology.*?</title>"]}]}]},{"id":"dapr_dashboard","info":{"name":"dapr_dashboard","author":"cn-kali-team","tags":"detect,tech,dapr_dashboard","severity":"info","metadata":{"fofa-query":["title=\"dapr dashboard\""],"google-query":["intitle:\"dapr dashboard\""],"product":"dapr_dashboard","shodan-query":["http.title:\"dapr dashboard\""],"vendor":"linuxfoundation","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>dapr dashboard.*?</title>"]}]}]},{"id":"harbor","info":{"name":"harbor","author":"cn-kali-team","tags":"detect,tech,harbor","severity":"info","metadata":{"fofa-query":["icon_hash=657337228"],"product":"harbor","shodan-query":["http.favicon.hash:657337228"],"vendor":"linuxfoundation","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["657337228"]}]}]},{"id":"avideo","info":{"name":"avideo","author":"cn-kali-team","tags":"detect,tech,avideo","severity":"info","metadata":{"fofa-query":["body=\"avideo\""],"product":"avideo","shodan-query":["http.html:\"avideo\"","html:\"avideo\""],"vendor":"wwbn","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["avideo"],"case-insensitive":true}]}]},{"id":"srx100","info":{"name":"srx100","author":"cn-kali-team","tags":"detect,tech,srx100","severity":"info","metadata":{"product":"srx100","shodan-query":["title:\"juniper web device manager\""],"vendor":"juniper","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>juniper web device manager.*?</title>"]}]}]},{"id":"junos","info":{"name":"junos","author":"cn-kali-team","tags":"detect,tech,junos","severity":"info","metadata":{"fofa-query":["title=\"juniper web device manager\""],"google-query":["intitle:\"juniper web device manager\""],"product":"junos","shodan-query":["title:\"juniper web device manager\"","http.title:\"juniper web device manager\""],"vendor":"juniper","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>juniper web device manager.*?</title>"]}]}]},{"id":"usualtoolcms","info":{"name":"usualtoolcms","author":"cn-kali-team","tags":"detect,tech,usualtoolcms","severity":"info","metadata":{"fofa-query":["body=\"usualtool\""],"product":"usualtoolcms","vendor":"usualtool","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["usualtool"],"case-insensitive":true}]}]},{"id":"turbomeeting","info":{"name":"turbomeeting","author":"cn-kali-team","tags":"detect,tech,turbomeeting","severity":"info","metadata":{"product":"turbomeeting","shodan-query":["html:\"turbomeeting\""],"vendor":"rhubcom","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["turbomeeting"],"case-insensitive":true}]}]},{"id":"ethos_identity","info":{"name":"ethos_identity","author":"cn-kali-team","tags":"detect,tech,ethos_identity","severity":"info","metadata":{"fofa-query":["body=\"ellucian company\""],"google-query":["login with ellucian ethos identity"],"product":"ethos_identity","shodan-query":["html:\"ellucian company\"","http.html:\"ellucian company\""],"vendor":"ellucian","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ellucian company"],"case-insensitive":true}]}]},{"id":"streampipes","info":{"name":"streampipes","author":"cn-kali-team","tags":"detect,tech,streampipes","severity":"info","metadata":{"fofa-query":["title=\"apache streampipes\""],"product":"streampipes","shodan-query":["http.title:\"apache streampipes\""],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>apache streampipes.*?</title>"]}]}]},{"id":"dolphinscheduler","info":{"name":"dolphinscheduler","author":"cn-kali-team","tags":"detect,tech,dolphinscheduler","severity":"info","metadata":{"product":"dolphinscheduler","shodan-query":["http.title:\"dolphinscheduler\""],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>dolphinscheduler.*?</title>"]}]}]},{"id":"apache-shiro","info":{"name":"apache-shiro","author":"cn-kali-team","tags":"detect,tech,apache-shiro","severity":"info","metadata":{"product":"shiro","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"headers":{"Cookie":"rememberMe=admin;rememberMe-K=admin"},"cookie-reuse":true,"matchers":[{"type":"word","words":["</i> shiro</li>"],"case-insensitive":true},{"type":"word","words":["set-cookie: rememberme"],"part":"header","case-insensitive":true}]}]},{"id":"streampark","info":{"name":"streampark","author":"cn-kali-team","tags":"detect,tech,streampark","severity":"info","metadata":{"product":"streampark","shodan-query":["title:\"apache streampark\""],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>apache streampark.*?</title>"]}]}]},{"id":"karaf","info":{"name":"karaf","author":"cn-kali-team","tags":"detect,tech,karaf","severity":"info","metadata":{"product":"karaf","shodan-query":["realm=\"karaf\""],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["realm=\"karaf"],"case-insensitive":true}]}]},{"id":"apache-unomi","info":{"name":"apache-unomi","author":"cn-kali-team","tags":"detect,tech,apache-unomi","severity":"info","metadata":{"product":"unomi","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["logo apache unomi"],"case-insensitive":true}]}]},{"id":"kafka_connect","info":{"name":"kafka_connect","author":"cn-kali-team","tags":"detect,tech,kafka_connect","severity":"info","metadata":{"fofa-query":["body=\"apache druid\""],"product":"kafka_connect","shodan-query":["html:\"apache druid\"","http.html:\"apache druid\""],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["apache druid"],"case-insensitive":true}]}]},{"id":"apache-http","info":{"name":"apache-http","author":"cn-kali-team","tags":"detect,tech,apache-http","severity":"info","metadata":{"product":"http_server","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: apache"],"part":"header","case-insensitive":true}]}]},{"id":"apache-apisix","info":{"name":"apache-apisix","author":"cn-kali-team","tags":"detect,tech,apache-apisix","severity":"info","metadata":{"product":"apisix","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content-type: text/plain","server: nginx"],"part":"header","condition":"and","case-insensitive":true},{"type":"word","words":["content-type: text/plain","server: openresty"],"part":"header","condition":"and","case-insensitive":true},{"type":"word","words":["content-type: text/plain","server: tengine"],"part":"header","condition":"and","case-insensitive":true},{"type":"word","words":["{\"error_msg\":\"404 route not found\"}"],"case-insensitive":true},{"type":"word","words":["server: apisix"],"part":"header","case-insensitive":true}]}]},{"id":"doris","info":{"name":"doris","author":"cn-kali-team","tags":"detect,tech,doris","severity":"info","metadata":{"fofa-query":["icon_hash=24048806"],"product":"doris","shodan-query":["http.favicon.hash:\"24048806\""],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["24048806"]}]}]},{"id":"apache-druid","info":{"name":"apache-druid","author":"cn-kali-team","tags":"detect,tech,apache-druid","severity":"info","metadata":{"product":"druid","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"apache druid console\""],"case-insensitive":true}]}]},{"id":"apache-axis2","info":{"name":"apache-axis2","author":"cn-kali-team","tags":"detect,tech,apache-axis2","severity":"info","metadata":{"product":"axis2","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["axis2-admin","axis2-web"],"condition":"and","case-insensitive":true}]}]},{"id":"apache-solr","info":{"name":"apache-solr","author":"cn-kali-team","tags":"detect,tech,apache-solr","severity":"info","metadata":{"product":"solr","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["location: /solr/"],"part":"header","case-insensitive":true}]}]},{"id":"nifi","info":{"name":"nifi","author":"cn-kali-team","tags":"detect,tech,nifi","severity":"info","metadata":{"product":"nifi","shodan-query":["title:\"nifi\""],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>nifi.*?</title>"]},{"type":"word","words":["<a href=\"/nifi/\">/nifi</a>"],"case-insensitive":true}]}]},{"id":"apache-struts","info":{"name":"apache-struts","author":"cn-kali-team","tags":"detect,tech,apache-struts","severity":"info","metadata":{"product":"struts","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<form action=\"/login.action\" method=\"post","<form action=\"login.action\" method=\"post","=\"struts.token.name\"","content=\"struts2 showcase for apache struts project\"","no result defined for action and result input","struts problem report","there is no action mapped for namespace"],"case-insensitive":true},{"type":"word","words":["location: /index.action","location: /login.action"],"part":"header","case-insensitive":true}]}]},{"id":"apache-kylin","info":{"name":"apache-kylin","author":"cn-kali-team","tags":"detect,tech,apache-kylin","severity":"info","metadata":{"product":"kylin","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta http-equiv=\"refresh\" content=\"1;url=kylin\">","href=\"/kylin/\""],"case-insensitive":true}]}]},{"id":"inlong","info":{"name":"inlong","author":"cn-kali-team","tags":"detect,tech,inlong","severity":"info","metadata":{"fofa-query":["icon_hash=\"1155196680\""],"product":"inlong","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1155196680"]}]}]},{"id":"apache-dubbo","info":{"name":"apache-dubbo","author":"cn-kali-team","tags":"detect,tech,apache-dubbo","severity":"info","metadata":{"product":"dubbo","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["www-authenticate: basic realm=\"dubbo\""],"part":"header","case-insensitive":true}]}]},{"id":"shardingsphere_elasticjob-ui","info":{"name":"shardingsphere_elasticjob-ui","author":"cn-kali-team","tags":"detect,tech,shardingsphere_elasticjob-ui","severity":"info","metadata":{"fofa-query":["icon_hash=816588900"],"product":"shardingsphere_elasticjob-ui","shodan-query":["http.favicon.hash:816588900"],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["816588900"]}]}]},{"id":"ranger","info":{"name":"ranger","author":"cn-kali-team","tags":"detect,tech,ranger","severity":"info","metadata":{"product":"ranger","shodan-query":["http.title:\"ranger - sign in\""],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>ranger - sign in.*?</title>"]},{"type":"word","words":["<img src=\"images/ranger_logo.png\" alt=\"ranger logo\">"],"case-insensitive":true}]}]},{"id":"apache-mesos","info":{"name":"apache-mesos","author":"cn-kali-team","tags":"detect,tech,apache-mesos","severity":"info","metadata":{"product":"mesos","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img src=\"/static/img/mesos_logo.png\" alt=\"apache mesos\">"],"case-insensitive":true}]}]},{"id":"apache-airflow","info":{"name":"apache-airflow","author":"cn-kali-team","tags":"detect,tech,apache-airflow","severity":"info","metadata":{"product":"airflow","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span>airflow</span>","airflow","src=\"/static/pin_100.png\""],"case-insensitive":true}]}]},{"id":"apache-skywalking","info":{"name":"apache-skywalking","author":"cn-kali-team","tags":"detect,tech,apache-skywalking","severity":"info","metadata":{"product":"skywalking","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sorry but skywalking doesn't work"],"case-insensitive":true}]}]},{"id":"apache-couchdb","info":{"name":"apache-couchdb","author":"cn-kali-team","tags":"detect,tech,apache-couchdb","severity":"info","metadata":{"product":"couchdb","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: couchdb","x-couchdb-body-time: 0"],"part":"header","condition":"and","case-insensitive":true},{"type":"favicon","hash":["2ab2aae806e8393b70970b2eaace82e0"]}]}]},{"id":"apache-tomcat","info":{"name":"apache-tomcat","author":"cn-kali-team","tags":"detect,tech,apache-tomcat","severity":"info","metadata":{"product":"tomcat","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/manager/html","/manager/status"],"condition":"and","case-insensitive":true},{"type":"favicon","hash":["4644f2d45601037b8423d45e13194c93"]},{"type":"word","words":["<h3>apache tomcat","<title>apache tomcat/","href=\"tomcat.css","this is the default tomcat home page"],"case-insensitive":true},{"type":"word","words":["server: apache-coyote/","x-powered-by: tomcat"],"part":"header","case-insensitive":true}]}]},{"id":"tomcat_jk_connector","info":{"name":"tomcat_jk_connector","author":"cn-kali-team","tags":"detect,tech,tomcat_jk_connector","severity":"info","metadata":{"fofa-query":["title=\"apache tomcat\""],"google-query":["intitle:\"apache tomcat\""],"product":"tomcat_jk_connector","shodan-query":["title:\"apache tomcat\"","http.title:\"apache tomcat\""],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>apache tomcat.*?</title>"]}]}]},{"id":"apache-flink","info":{"name":"apache-flink","author":"cn-kali-team","tags":"detect,tech,apache-flink","severity":"info","metadata":{"product":"flink","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<img alt=\"apache flink dashboard\" src=\"images/flink-logo.png","<title>apache flink web dashboard</title>"],"case-insensitive":true}]}]},{"id":"cloudstack","info":{"name":"cloudstack","author":"cn-kali-team","tags":"detect,tech,cloudstack","severity":"info","metadata":{"fofa-query":["app=\"apache-cloudstack\""],"product":"cloudstack","shodan-query":["http.title:\"apache cloudstack\""],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>apache cloudstack.*?</title>"]}]}]},{"id":"apache-hadoop","info":{"name":"apache-hadoop","author":"cn-kali-team","tags":"detect,tech,apache-hadoop","severity":"info","metadata":{"product":"hadoop","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/static/hadoop-st.png","parsehadoopprogress"],"condition":"and","case-insensitive":true}]}]},{"id":"apache-ambari","info":{"name":"apache-ambari","author":"cn-kali-team","tags":"detect,tech,apache-ambari","severity":"info","metadata":{"product":"ambari","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["\"/licenses/notice.txt\"","<title>ambari</title>"],"condition":"and","case-insensitive":true}]}]},{"id":"spark","info":{"name":"spark","author":"cn-kali-team","tags":"detect,tech,spark","severity":"info","metadata":{"fofa-query":["body=\"/apps/imt/html/\"","title=\"spark master at\""],"google-query":["intitle:\"spark master at\""],"product":"spark","shodan-query":["title:\"spark master at\"","http.html:\"/apps/imt/html/\"","http.title:\"spark master at\""],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/apps/imt/html/"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>spark master at.*?</title>"]}]}]},{"id":"apache-ofbiz","info":{"name":"apache-ofbiz","author":"cn-kali-team","tags":"detect,tech,apache-ofbiz","severity":"info","metadata":{"product":"ofbiz","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<span>powered by ofbiz</span>"],"case-insensitive":true}]}]},{"id":"apache-cocoon","info":{"name":"apache-cocoon","author":"cn-kali-team","tags":"detect,tech,apache-cocoon","severity":"info","metadata":{"product":"cocoon","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-cocoon-version:"],"part":"header","case-insensitive":true}]}]},{"id":"apache-activemq","info":{"name":"apache-activemq","author":"cn-kali-team","tags":"detect,tech,apache-activemq","severity":"info","metadata":{"product":"activemq","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>apache activemq</title>"],"case-insensitive":true}]}]},{"id":"apache-superset","info":{"name":"apache-superset","author":"cn-kali-team","tags":"detect,tech,apache-superset","severity":"info","metadata":{"product":"superset","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>superset</title>","src=\"/static/assets/images/superset-logo-"],"case-insensitive":true}]}]},{"id":"activemq_apollo","info":{"name":"activemq_apollo","author":"cn-kali-team","tags":"detect,tech,activemq_apollo","severity":"info","metadata":{"product":"activemq_apollo","shodan-query":["title:\"apache apollo\""],"vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>apache apollo.*?</title>"]}]}]},{"id":"hugegraph","info":{"name":"hugegraph","author":"cn-kali-team","tags":"detect,tech,hugegraph","severity":"info","metadata":{"fofa-query":["title=\"hugegraph\""],"product":"hugegraph","vendor":"apache","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>hugegraph.*?</title>"]}]}]},{"id":"larecipe","info":{"name":"larecipe","author":"cn-kali-team","tags":"detect,tech,larecipe","severity":"info","metadata":{"fofa-query":["body=\"/binarytorch/larecipe/\""],"product":"larecipe","vendor":"binarytorch","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/binarytorch/larecipe/"],"case-insensitive":true}]}]},{"id":"home-assistant","info":{"name":"home-assistant","author":"cn-kali-team","tags":"detect,tech,home-assistant","severity":"info","metadata":{"fofa-query":["title=\"home assistant\""],"google-query":["intitle:\"home assistant\""],"product":"home-assistant","shodan-query":["title:\"home assistant\"","http.title:\"home assistant\"","cpe:\"cpe:2.3:a:home-assistant:home-assistant\""],"vendor":"home-assistant","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>home assistant.*?</title>"]}]}]},{"id":"data_science_studio","info":{"name":"data_science_studio","author":"cn-kali-team","tags":"detect,tech,data_science_studio","severity":"info","metadata":{"product":"data_science_studio","shodan-query":["title:\"dataiku\""],"vendor":"dataiku","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>dataiku.*?</title>"]}]}]},{"id":"journyx-jtime","info":{"name":"journyx-jtime","author":"cn-kali-team","tags":"detect,tech,journyx-jtime","severity":"info","metadata":{"fofa-query":["icon_hash=\"-109972155\""],"product":"journyx-jtime","vendor":"journyx","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-109972155"]}]}]},{"id":"journyx","info":{"name":"journyx","author":"cn-kali-team","tags":"detect,tech,journyx","severity":"info","metadata":{"product":"journyx","shodan-query":["html:\"journyx\""],"vendor":"journyx","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["journyx"],"case-insensitive":true}]}]},{"id":"rt-n16","info":{"name":"rt-n16","author":"cn-kali-team","tags":"detect,tech,rt-n16","severity":"info","metadata":{"product":"rt-n16","shodan-query":["rt-n16"],"vendor":"asus","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["rt-n16"],"case-insensitive":true}]}]},{"id":"webmail","info":{"name":"webmail","author":"cn-kali-team","tags":"detect,tech,webmail","severity":"info","metadata":{"fofa-query":["title=\"axigen\""],"product":"webmail","shodan-query":["title:\"axigen\""],"vendor":"axigen","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>axigen.*?</title>"]}]}]},{"id":"axigen_mobile_webmail","info":{"name":"axigen_mobile_webmail","author":"cn-kali-team","tags":"detect,tech,axigen_mobile_webmail","severity":"info","metadata":{"fofa-query":["icon_hash=-1247684400"],"product":"axigen_mobile_webmail","shodan-query":["http.favicon.hash:-1247684400"],"vendor":"axigen","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1247684400"]}]}]},{"id":"quicklancer","info":{"name":"quicklancer","author":"cn-kali-team","tags":"detect,tech,quicklancer","severity":"info","metadata":{"fofa-query":["icon_hash=\"1099370896\""],"product":"quicklancer","shodan-query":["http.favicon.hash:1099370896"],"vendor":"bylancer","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1099370896"]}]}]},{"id":"langchain","info":{"name":"langchain","author":"cn-kali-team","tags":"detect,tech,langchain","severity":"info","metadata":{"product":"langchain","vendor":"langchain","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>langchain chat</title>"],"case-insensitive":true}]}]},{"id":"jeecg","info":{"name":"jeecg","author":"cn-kali-team","tags":"detect,tech,jeecg","severity":"info","metadata":{"product":"jeecg","vendor":"jeecg","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["plug-in/ace/"],"case-insensitive":true}]}]},{"id":"jeecg-boot","info":{"name":"jeecg-boot","author":"cn-kali-team","tags":"detect,tech,jeecg-boot","severity":"info","metadata":{"fofa-query":["icon_hash=1380908726"],"product":"jeecg-boot","shodan-query":["http.favicon.hash:1380908726"],"vendor":"jeecg","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1380908726"]}]}]},{"id":"jeecg_boot","info":{"name":"jeecg_boot","author":"cn-kali-team","tags":"detect,tech,jeecg_boot","severity":"info","metadata":{"fofa-query":["icon_hash=1380908726"],"product":"jeecg_boot","shodan-query":["http.favicon.hash:1380908726"],"vendor":"jeecg","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1380908726"]}]}]},{"id":"ex1200t_firmware","info":{"name":"ex1200t_firmware","author":"cn-kali-team","tags":"detect,tech,ex1200t_firmware","severity":"info","metadata":{"fofa-query":["title=\"totolink\""],"google-query":["intitle:\"totolink\""],"product":"ex1200t_firmware","shodan-query":["title:\"totolink\"","http.title:\"totolink\""],"vendor":"totolink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>totolink.*?</title>"]}]}]},{"id":"cp450_firmware","info":{"name":"cp450_firmware","author":"cn-kali-team","tags":"detect,tech,cp450_firmware","severity":"info","metadata":{"fofa-query":["title=\"totolink\""],"product":"cp450_firmware","vendor":"totolink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>totolink.*?</title>"]}]}]},{"id":"a3002ru","info":{"name":"a3002ru","author":"cn-kali-team","tags":"detect,tech,a3002ru","severity":"info","metadata":{"fofa-query":["title=\"totolink\""],"product":"a3002ru","vendor":"totolink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>totolink.*?</title>"]}]}]},{"id":"totolink-router","info":{"name":"totolink-router","author":"cn-kali-team","tags":"detect,tech,totolink-router","severity":"info","metadata":{"fofa-query":["title=\"totolink\""],"product":"totolink-router","shodan-query":["http.html:\"totolink\""],"vendor":"totolink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["totolink"]}]}]},{"id":"a3700r_firmware","info":{"name":"a3700r_firmware","author":"cn-kali-team","tags":"detect,tech,a3700r_firmware","severity":"info","metadata":{"fofa-query":["title=\"totolink\""],"google-query":["intitle:\"totolink\""],"product":"a3700r_firmware","shodan-query":["title:\"totolink\"","http.title:\"totolink\""],"vendor":"totolink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>totolink.*?</title>"]}]}]},{"id":"a3300r_firmware","info":{"name":"a3300r_firmware","author":"cn-kali-team","tags":"detect,tech,a3300r_firmware","severity":"info","metadata":{"fofa-query":["title=\"totolink\""],"product":"a3300r_firmware","vendor":"totolink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>totolink.*?</title>"]}]}]},{"id":"rebuild","info":{"name":"rebuild","author":"cn-kali-team","tags":"detect,tech,rebuild","severity":"info","metadata":{"fofa-query":["icon_hash=\"871154672\""],"product":"rebuild","shodan-query":["http.favicon.hash:\"871154672\""],"vendor":"ruifang-tech","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["871154672"]}]}]},{"id":"portainer","info":{"name":"portainer","author":"cn-kali-team","tags":"detect,tech,portainer","severity":"info","metadata":{"product":"portainer","vendor":"portainer","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ng-app=\"portainer\""],"case-insensitive":true}]}]},{"id":"jux_real_estate","info":{"name":"jux_real_estate","author":"cn-kali-team","tags":"detect,tech,jux_real_estate","severity":"info","metadata":{"fofa-query":["body=\"joomlaux\""],"product":"jux_real_estate","vendor":"joomlaux","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["joomlaux"],"case-insensitive":true}]}]},{"id":"genieacs","info":{"name":"genieacs","author":"cn-kali-team","tags":"detect,tech,genieacs","severity":"info","metadata":{"fofa-query":["body=\"genieacs\"","icon_hash=-2098066288"],"product":"genieacs","shodan-query":["http.favicon.hash:-2098066288","http.html:\"genieacs\""],"vendor":"genieacs","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["genieacs"],"case-insensitive":true},{"type":"favicon","hash":["-2098066288"]}]}]},{"id":"cgit","info":{"name":"cgit","author":"cn-kali-team","tags":"detect,tech,cgit","severity":"info","metadata":{"fofa-query":["title=\"git repository browser\""],"google-query":["intitle:\"git repository browser\""],"product":"cgit","shodan-query":["http.title:\"git repository browser\""],"vendor":"cgit_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>git repository browser.*?</title>"]}]}]},{"id":"sympa","info":{"name":"sympa","author":"cn-kali-team","tags":"detect,tech,sympa","severity":"info","metadata":{"fofa-query":["body=\"sympa\""],"product":"sympa","shodan-query":["http.html:\"sympa\""],"vendor":"sympa","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["sympa"],"case-insensitive":true}]}]},{"id":"finecms","info":{"name":"finecms","author":"cn-kali-team","tags":"detect,tech,finecms","severity":"info","metadata":{"product":"finecms","vendor":"finecms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/statics/js/dayrui.js","copyright\" content=\"finecms","[email protected]","powered by finecms"],"case-insensitive":true}]}]},{"id":"winter","info":{"name":"winter","author":"cn-kali-team","tags":"detect,tech,winter","severity":"info","metadata":{"fofa-query":["title=\"winter cms\""],"google-query":["intitle:\"winter cms\""],"product":"winter","shodan-query":["title:\"winter cms\"","http.title:\"winter cms\""],"vendor":"wintercms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>winter cms.*?</title>"]}]}]},{"id":"kiwi_tcms","info":{"name":"kiwi_tcms","author":"cn-kali-team","tags":"detect,tech,kiwi_tcms","severity":"info","metadata":{"product":"kiwi_tcms","shodan-query":["title:\"kiwi tcms - login\" http.favicon.hash:-1909533337"],"vendor":"kiwitcms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>kiwi tcms - login\" http.favicon.hash:-1909533337.*?</title>"]}]}]},{"id":"cdata","info":{"name":"cdata","author":"cn-kali-team","tags":"detect,tech,cdata","severity":"info","metadata":{"product":"cdata","shodan-query":["title:\"cdata connect\"","title:\"cdata sync\"","title:\"cdata - api server\"","title:\"cdata arc\""],"vendor":"cdata","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>cdata - api server.*?</title>","(?mi)<title[^>]*>cdata arc.*?</title>","(?mi)<title[^>]*>cdata connect.*?</title>","(?mi)<title[^>]*>cdata sync.*?</title>"]}]}]},{"id":"arc","info":{"name":"arc","author":"cn-kali-team","tags":"detect,tech,arc","severity":"info","metadata":{"fofa-query":["icon_hash=\"163538942\""],"product":"arc","shodan-query":["http.favicon.hash:163538942","http.favicon.hash:\"163538942\""],"vendor":"cdata","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["163538942"]}]}]},{"id":"lgate-902_firmware","info":{"name":"lgate-902_firmware","author":"cn-kali-team","tags":"detect,tech,lgate-902_firmware","severity":"info","metadata":{"fofa-query":["body=\"lgate-902\""],"product":"lgate-902_firmware","shodan-query":["http.html:\"lgate-902\""],"vendor":"loytec","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["lgate-902"],"case-insensitive":true}]}]},{"id":"crmeb","info":{"name":"crmeb","author":"cn-kali-team","tags":"detect,tech,crmeb","severity":"info","metadata":{"fofa-query":["title=\"crmeb\""],"product":"crmeb","vendor":"crmeb","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>crmeb.*?</title>"]},{"type":"favicon","hash":["699adaf4da1b0dc76ea5464df13755d7"]},{"type":"word","words":["<h1>crmeb</h1>"],"case-insensitive":true}]}]},{"id":"bonita","info":{"name":"bonita","author":"cn-kali-team","tags":"detect,tech,bonita","severity":"info","metadata":{"fofa-query":["title=\"bonita\" || header=\"server: bonita\""],"product":"bonita","shodan-query":["http.title:\"bonita\" || \"server: bonita\""],"vendor":"bonitasoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>\"server: bonita.*?</title>","(?mi)<title[^>]*>bonita\".*?</title>","(?mi)<title[^>]*>bonita.*?</title>"]}]}]},{"id":"crestron-device","info":{"name":"crestron-device","author":"cn-kali-team","tags":"detect,tech,crestron-device","severity":"info","metadata":{"product":"crestron-device","shodan-query":["html:\"airmedia\""],"vendor":"crestron","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["airmedia"],"case-insensitive":true}]}]},{"id":"livezilla","info":{"name":"livezilla","author":"cn-kali-team","tags":"detect,tech,livezilla","severity":"info","metadata":{"product":"livezilla","vendor":"livezilla","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"livezilla","href=\"http://www.livezilla.net\" target=\"_blank","livezilla is a registered trademark of livezilla gmbh</div>","thank you for using livezilla!"],"case-insensitive":true}]}]},{"id":"wp_go_maps","info":{"name":"wp_go_maps","author":"cn-kali-team","tags":"detect,tech,wp_go_maps","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/wp-google-maps\""],"product":"wp_go_maps","vendor":"codecabin","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/wp-google-maps"],"case-insensitive":true}]}]},{"id":"artica_proxy","info":{"name":"artica_proxy","author":"cn-kali-team","tags":"detect,tech,artica_proxy","severity":"info","metadata":{"fofa-query":["body=\"artica\""],"product":"artica_proxy","shodan-query":["http.html:\"artica\""],"vendor":"articatech","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["artica"],"case-insensitive":true}]}]},{"id":"traccar","info":{"name":"traccar","author":"cn-kali-team","tags":"detect,tech,traccar","severity":"info","metadata":{"product":"traccar","shodan-query":["html:\"traccar\""],"vendor":"traccar","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["traccar"],"case-insensitive":true}]}]},{"id":"yzmcms","info":{"name":"yzmcms","author":"cn-kali-team","tags":"detect,tech,yzmcms","severity":"info","metadata":{"fofa-query":["title=\"yzmcms\""],"google-query":["intitle:\"yzmcms\""],"product":"yzmcms","shodan-query":["title:\"yzmcms\"","http.title:\"yzmcms\""],"vendor":"yzmcms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>yzmcms.*?</title>"]}]}]},{"id":"kingsoft_antivirus","info":{"name":"kingsoft_antivirus","author":"cn-kali-team","tags":"detect,tech,kingsoft_antivirus","severity":"info","metadata":{"fofa-query":["title=\"金山vgm防毒墙\""],"product":"kingsoft_antivirus","vendor":"kingsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>金山vgm防毒墙.*?</title>"]}]}]},{"id":"d-link","info":{"name":"d-link","author":"cn-kali-team","tags":"detect,tech,d-link","severity":"info","metadata":{"product":"d-link","vendor":"d-link","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["d-link systems, inc"],"case-insensitive":true}]}]},{"id":"dotnetnuke","info":{"name":"dotnetnuke","author":"cn-kali-team","tags":"detect,tech,dotnetnuke","severity":"info","metadata":{"fofa-query":["app=\"dotnetnuke\"","set-cookie: dnn_ismobile","icon_hash=\"-1465479343\""],"product":"dotnetnuke","shodan-query":["set-cookie: dnn_ismobile","http.favicon.hash:-1465479343"],"vendor":"dnnsoftware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["set-cookie: dnn_ismobile"],"case-insensitive":true},{"type":"favicon","hash":["-1465479343"]}]}]},{"id":"caucho-resin","info":{"name":"caucho-resin","author":"cn-kali-team","tags":"detect,tech,caucho-resin","severity":"info","metadata":{"product":"resin","vendor":"caucho","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: resin"],"part":"header","case-insensitive":true}]}]},{"id":"fastadmin","info":{"name":"fastadmin","author":"cn-kali-team","tags":"detect,tech,fastadmin","severity":"info","metadata":{"fofa-query":["app=\"fastadmin-框架\"","icon_hash=\"-1036943727\""],"product":"fastadmin","vendor":"fastadmin","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1036943727"]}]}]},{"id":"freepbx","info":{"name":"freepbx","author":"cn-kali-team","tags":"detect,tech,freepbx","severity":"info","metadata":{"fofa-query":["title=\"freepbx\"","icon_hash=\"-1908328911\"","icon_hash=\"1574423538\""],"product":"freepbx","shodan-query":["http.title:\"freepbx\"","http.favicon.hash:-1908328911","http.favicon.hash:1574423538"],"vendor":"sangoma","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1908328911","1574423538"]},{"type":"regex","regex":["(?mi)<title[^>]*>freepbx.*?</title>"]}]}]},{"id":"elgg","info":{"name":"elgg","author":"cn-kali-team","tags":"detect,tech,elgg","severity":"info","metadata":{"fofa-query":["icon_hash=\"413602919\""],"product":"elgg","vendor":"elgg","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["413602919"]}]}]},{"id":"wp_go_maps","info":{"name":"wp_go_maps","author":"cn-kali-team","tags":"detect,tech,wp_go_maps","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/duplicator\""],"product":"wp_go_maps","vendor":"snapcreek","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/duplicator"],"case-insensitive":true}]}]},{"id":"revive_adserver","info":{"name":"revive_adserver","author":"cn-kali-team","tags":"detect,tech,revive_adserver","severity":"info","metadata":{"fofa-query":["icon_hash=106844876","title=\"revive adserver\""],"google-query":["intitle:\"revive adserver\""],"product":"revive_adserver","shodan-query":["http.title:\"revive adserver\"","http.favicon.hash:106844876"],"vendor":"revive-adserver","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["106844876"]},{"type":"regex","regex":["(?mi)<title[^>]*>revive adserver.*?</title>"]}]}]},{"id":"timekeeper","info":{"name":"timekeeper","author":"cn-kali-team","tags":"detect,tech,timekeeper","severity":"info","metadata":{"fofa-query":["icon_hash=2134367771"],"product":"timekeeper","shodan-query":["http.favicon.hash:2134367771"],"vendor":"fsmlabs","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["2134367771"]}]}]},{"id":"self_service","info":{"name":"self_service","author":"cn-kali-team","tags":"detect,tech,self_service","severity":"info","metadata":{"product":"self_service","shodan-query":["http.html:\"jamf\""],"vendor":"jamf","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jamf"],"case-insensitive":true}]}]},{"id":"lighttpd","info":{"name":"lighttpd","author":"cn-kali-team","tags":"detect,tech,lighttpd","severity":"info","metadata":{"product":"lighttpd","vendor":"lighttpd","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>powered by lighttpd</title>"],"case-insensitive":true},{"type":"word","words":["server: lighttpd"],"part":"header","case-insensitive":true}]}]},{"id":"quick.cms","info":{"name":"quick.cms","author":"cn-kali-team","tags":"detect,tech,quick.cms","severity":"info","metadata":{"fofa-query":["body=\"quick.cms v6.7\""],"product":"quick.cms","vendor":"opensolution","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["quick.cms v6.7"],"case-insensitive":true}]}]},{"id":"metabase","info":{"name":"metabase","author":"cn-kali-team","tags":"detect,tech,metabase","severity":"info","metadata":{"product":"metabase","vendor":"metabase","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["_metabasebootstrap","_metabaselocalization"],"condition":"and","case-insensitive":true}]}]},{"id":"netscaler_gateway","info":{"name":"netscaler_gateway","author":"cn-kali-team","tags":"detect,tech,netscaler_gateway","severity":"info","metadata":{"product":"netscaler_gateway","shodan-query":["http.favicon.hash:-1292923998,-1166125415"],"vendor":"citrix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1166125415","-1292923998"]}]}]},{"id":"netscaler_application_delivery_controller","info":{"name":"netscaler_application_delivery_controller","author":"cn-kali-team","tags":"detect,tech,netscaler_application_delivery_controller","severity":"info","metadata":{"fofa-query":["title=\"citrix gateway\" || title:\"netscaler gateway\""],"google-query":["intitle:\"citrix gateway\" || title:\"netscaler gateway\""],"product":"netscaler_application_delivery_controller","shodan-query":["title:\"citrix gateway\" || title:\"netscaler gateway\"","http.title:\"citrix gateway\" || title:\"netscaler gateway\""],"vendor":"citrix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*> title:\"netscaler gateway.*?</title>","(?mi)<title[^>]*>citrix gateway\" .*?</title>"]}]}]},{"id":"netscaler_sd-wan","info":{"name":"netscaler_sd-wan","author":"cn-kali-team","tags":"detect,tech,netscaler_sd-wan","severity":"info","metadata":{"fofa-query":["title=\"citrix sd-wan\""],"google-query":["intitle:\"citrix sd-wan\""],"product":"netscaler_sd-wan","shodan-query":["http.title:\"citrix sd-wan\""],"vendor":"citrix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>citrix sd-wan.*?</title>"]}]}]},{"id":"sharefile_storage_zones_controller","info":{"name":"sharefile_storage_zones_controller","author":"cn-kali-team","tags":"detect,tech,sharefile_storage_zones_controller","severity":"info","metadata":{"fofa-query":["title=\"sharefile storage server\""],"google-query":["intitle:\"sharefile storage server\""],"product":"sharefile_storage_zones_controller","shodan-query":["title:\"sharefile storage server\"","http.title:\"sharefile storage server\""],"vendor":"citrix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>sharefile storage server.*?</title>"]}]}]},{"id":"citrix-netscaler","info":{"name":"citrix-netscaler","author":"cn-kali-team","tags":"detect,tech,citrix-netscaler","severity":"info","metadata":{"product":"netscaler","vendor":"citrix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["netscape/firefox/opera"],"case-insensitive":true},{"type":"word","words":["set-cookie: citrix_ns_id"],"part":"header","case-insensitive":true}]}]},{"id":"gateway","info":{"name":"gateway","author":"cn-kali-team","tags":"detect,tech,gateway","severity":"info","metadata":{"fofa-query":["title=\"citrix gateway\""],"google-query":["intitle:\"citrix gateway\""],"product":"gateway","shodan-query":["http.favicon.hash:-1292923998,-1166125415","title:\"citrix gateway\"","http.title:\"citrix gateway\""],"vendor":"citrix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1166125415","-1292923998"]},{"type":"regex","regex":["(?mi)<title[^>]*>citrix gateway.*?</title>"]}]}]},{"id":"xenapp","info":{"name":"xenapp","author":"cn-kali-team","tags":"detect,tech,xenapp","severity":"info","metadata":{"product":"xenapp","shodan-query":["html:\"/citrix/xenapp\""],"vendor":"citrix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/citrix/xenapp"],"case-insensitive":true}]}]},{"id":"xenmobile_server","info":{"name":"xenmobile_server","author":"cn-kali-team","tags":"detect,tech,xenmobile_server","severity":"info","metadata":{"product":"xenmobile_server","shodan-query":["title:\"xenmobile\""],"vendor":"citrix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>xenmobile.*?</title>"]}]}]},{"id":"eventin","info":{"name":"eventin","author":"cn-kali-team","tags":"detect,tech,eventin","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/eventin\""],"product":"eventin","vendor":"themewinter","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/eventin"],"case-insensitive":true}]}]},{"id":"camaleon_cms","info":{"name":"camaleon_cms","author":"cn-kali-team","tags":"detect,tech,camaleon_cms","severity":"info","metadata":{"fofa-query":["title=\"camaleon cms\""],"product":"camaleon_cms","shodan-query":["html:\"camaleon_cms\"","title:\"camaleon cms\""],"vendor":"tuzitio","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["camaleon_cms"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>camaleon cms.*?</title>"]}]}]},{"id":"next.js","info":{"name":"next.js","author":"cn-kali-team","tags":"detect,tech,next.js","severity":"info","metadata":{"fofa-query":["body=\"/_next/static\""],"product":"next.js","shodan-query":["http.html:\"/_next/static\"","cpe:\"cpe:2.3:a:zeit:next.js\""],"vendor":"vercel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/_next/static"],"case-insensitive":true}]}]},{"id":"open_edx","info":{"name":"open_edx","author":"cn-kali-team","tags":"detect,tech,open_edx","severity":"info","metadata":{"fofa-query":["body=\"open edx\""],"product":"open_edx","shodan-query":["http.html:\"open edx\""],"vendor":"edx","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["open edx"],"case-insensitive":true}]}]},{"id":"hospital_management_system","info":{"name":"hospital_management_system","author":"cn-kali-team","tags":"detect,tech,hospital_management_system","severity":"info","metadata":{"fofa-query":["body=\"hospital management system\""],"product":"hospital_management_system","shodan-query":["http.html:\"hospital management system\""],"vendor":"hospital_management_system_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hospital management system"],"case-insensitive":true}]}]},{"id":"froxlor","info":{"name":"froxlor","author":"cn-kali-team","tags":"detect,tech,froxlor","severity":"info","metadata":{"product":"froxlor","shodan-query":["title:\"froxlor server management panel\""],"vendor":"froxlor","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>froxlor server management panel.*?</title>"]}]}]},{"id":"ncast","info":{"name":"ncast","author":"cn-kali-team","tags":"detect,tech,ncast","severity":"info","metadata":{"fofa-query":["app=\"ncast-产品\" && title==\"高清智能录播系统\"","title=\"高清智能录播系统\""],"google-query":["intitle:\"高清智能录播系统\""],"product":"ncast","shodan-query":["http.title:\"高清智能录播系统\""],"vendor":"ncast_project","verified":true,"zoomeye-query":["title:\"高清智能录播系统\""]}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>高清智能录播系统.*?</title>"]}]}]},{"id":"virtual_system_administrator","info":{"name":"virtual_system_administrator","author":"cn-kali-team","tags":"detect,tech,virtual_system_administrator","severity":"info","metadata":{"product":"virtual_system_administrator","shodan-query":["http.favicon.hash:-1445519482"],"vendor":"kaseya","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1445519482"]}]}]},{"id":"vsa","info":{"name":"vsa","author":"cn-kali-team","tags":"detect,tech,vsa","severity":"info","metadata":{"product":"vsa","shodan-query":["http.favicon.hash:-1445519482"],"vendor":"kaseya","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1445519482"]}]}]},{"id":"screenconnect","info":{"name":"screenconnect","author":"cn-kali-team","tags":"detect,tech,screenconnect","severity":"info","metadata":{"fofa-query":["app=\"screenconnect-remote-support-software\"","icon_hash=-82958153"],"hunter-query":["app.name=\"connectwise screenconnect software\""],"product":"screenconnect","shodan-query":["http.favicon.hash:-82958153"],"vendor":"connectwise","verified":true,"zoomeye-query":["app:\"screenconnect remote management software\""]}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-82958153"]}]}]},{"id":"flatpress","info":{"name":"flatpress","author":"cn-kali-team","tags":"detect,tech,flatpress","severity":"info","metadata":{"fofa-query":["body=\"flatpress\"","icon_hash=-1189292869"],"product":"flatpress","shodan-query":["http.favicon.hash:-1189292869","http.html:\"flatpress\""],"vendor":"flatpress","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["flatpress"],"case-insensitive":true},{"type":"favicon","hash":["-1189292869"]}]}]},{"id":"easy_forms_for_mailchimp","info":{"name":"easy_forms_for_mailchimp","author":"cn-kali-team","tags":"detect,tech,easy_forms_for_mailchimp","severity":"info","metadata":{"fofa-query":["body=\"wp-content/plugins/yikes-inc-easy-mailchimp-extender/\""],"product":"easy_forms_for_mailchimp","vendor":"yikesinc","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wp-content/plugins/yikes-inc-easy-mailchimp-extender/"],"case-insensitive":true}]}]},{"id":"laravel_filemanager","info":{"name":"laravel_filemanager","author":"cn-kali-team","tags":"detect,tech,laravel_filemanager","severity":"info","metadata":{"fofa-query":["body=\"laravel filemanager\""],"product":"laravel_filemanager","shodan-query":["http.html:\"laravel filemanager\""],"vendor":"unisharp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["laravel filemanager"],"case-insensitive":true}]}]},{"id":"pcoweb_card_firmware","info":{"name":"pcoweb_card_firmware","author":"cn-kali-team","tags":"detect,tech,pcoweb_card_firmware","severity":"info","metadata":{"fofa-query":["body=\"pcoweb\""],"product":"pcoweb_card_firmware","shodan-query":["http.html:\"pcoweb\""],"vendor":"carel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["pcoweb"],"case-insensitive":true}]}]},{"id":"jbpm","info":{"name":"jbpm","author":"cn-kali-team","tags":"detect,tech,jbpm","severity":"info","metadata":{"product":"jbpm","shodan-query":["html:\"jbossws\""],"vendor":"redhat","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["jbossws"],"case-insensitive":true}]}]},{"id":"keycloak","info":{"name":"keycloak","author":"cn-kali-team","tags":"detect,tech,keycloak","severity":"info","metadata":{"fofa-query":["title=\"keycloak\"","icon_hash=-1105083093","body=\"keycloak\""],"google-query":["intitle:\"keycloak\""],"product":"keycloak","shodan-query":["title:\"keycloak\"","http.title:\"keycloak\"","http.html:\"keycloak\"","http.favicon.hash:-1105083093","html:\"keycloak\""],"vendor":"redhat","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["keycloak"],"case-insensitive":true},{"type":"favicon","hash":["-1105083093"]}]}]},{"id":"openshift_origin","info":{"name":"openshift_origin","author":"cn-kali-team","tags":"detect,tech,openshift_origin","severity":"info","metadata":{"product":"openshift_origin","shodan-query":["title:\"openshift\""],"vendor":"redhat","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>openshift.*?</title>"]}]}]},{"id":"jboss_enterprise_application_platform","info":{"name":"jboss_enterprise_application_platform","author":"cn-kali-team","tags":"detect,tech,jboss_enterprise_application_platform","severity":"info","metadata":{"fofa-query":["title=\"jboss\""],"google-query":["intitle:\"jboss\""],"product":"jboss_enterprise_application_platform","shodan-query":["http.title:\"jboss\"","cpe:\"cpe:2.3:a:redhat:jboss_enterprise_application_platform\"","title:\"jboss\""],"vendor":"redhat","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>jboss.*?</title>"]}]}]},{"id":"protop","info":{"name":"protop","author":"cn-kali-team","tags":"detect,tech,protop","severity":"info","metadata":{"product":"protop","shodan-query":["html:\"<title>protop\""],"vendor":"white-star-software","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>protop"],"case-insensitive":true}]}]},{"id":"solarwinds","info":{"name":"solarwinds","author":"cn-kali-team","tags":"detect,tech,solarwinds","severity":"info","metadata":{"product":"solarwinds","vendor":"solarwinds","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["53317933c27890ae9218697ecc0e97d9"]}]}]},{"id":"security_event_manager","info":{"name":"security_event_manager","author":"cn-kali-team","tags":"detect,tech,security_event_manager","severity":"info","metadata":{"fofa-query":["title=\"solarwinds security event manager\""],"product":"security_event_manager","vendor":"solarwinds","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>solarwinds security event manager.*?</title>"]}]}]},{"id":"serv-u","info":{"name":"serv-u","author":"cn-kali-team","tags":"detect,tech,serv-u","severity":"info","metadata":{"fofa-query":["server=\"serv-u\""],"product":"serv-u","shodan-query":["html:\"serv-u\"","product:\"rhinosoft serv-u httpd\""],"vendor":"solarwinds","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["serv-u"],"case-insensitive":true}]}]},{"id":"datagerry","info":{"name":"datagerry","author":"cn-kali-team","tags":"detect,tech,datagerry","severity":"info","metadata":{"product":"datagerry","shodan-query":["http.title:\"datagerry\""],"vendor":"becon","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>datagerry.*?</title>"]}]}]},{"id":"modeldb","info":{"name":"modeldb","author":"cn-kali-team","tags":"detect,tech,modeldb","severity":"info","metadata":{"fofa-query":["icon_hash=-2097033750","title=\"verta ai\""],"google-query":["intitle:\"verta ai\""],"product":"modeldb","shodan-query":["http.favicon.hash:-2097033750","http.title:\"verta ai\""],"vendor":"vertaai","verified":true,"zoomeye-query":["title:\"verta ai\""]}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-2097033750"]},{"type":"regex","regex":["(?mi)<title[^>]*>verta ai.*?</title>"]}]}]},{"id":"office_anywhere_2017","info":{"name":"office_anywhere_2017","author":"cn-kali-team","tags":"detect,tech,office_anywhere_2017","severity":"info","metadata":{"fofa-query":["app=\"tdxk-通达oa\"","icon_hash=\"1967132225\""],"product":"office_anywhere_2017","vendor":"tongda2000","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1967132225"]}]}]},{"id":"office_anywhere","info":{"name":"office_anywhere","author":"cn-kali-team","tags":"detect,tech,office_anywhere","severity":"info","metadata":{"fofa-query":["app=\"tdxk-通达oa\"","title=\"通达oa\""],"product":"office_anywhere","shodan-query":["title:\"通达oa\""],"vendor":"tongda2000","verified":true,"zoomeye-query":["app:\"通达oa\""]}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>通达oa.*?</title>"]}]}]},{"id":"joomla!","info":{"name":"joomla!","author":"cn-kali-team","tags":"detect,tech,joomla!","severity":"info","metadata":{"fofa-query":["body=\"joomla! - open source content management\""],"product":"joomla!","shodan-query":["http.html:\"joomla! - open source content management\"","http.component:\"joomla\"","cpe:\"cpe:2.3:a:joomla:joomla\\!\"","html:\"joomla! - open source content management\""],"vendor":"joomla","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["joomla! - open source content management"],"case-insensitive":true}]}]},{"id":"joomla","info":{"name":"joomla","author":"cn-kali-team","tags":"detect,tech,joomla","severity":"info","metadata":{"product":"joomla","vendor":"joomla","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/media/system/js/core.js","/media/system/js/mootools-core.js","<meta name=\"keywords\" content=\"joomla, joomla\" />","content=\"joomla"],"case-insensitive":true}]}]},{"id":"ilias","info":{"name":"ilias","author":"cn-kali-team","tags":"detect,tech,ilias","severity":"info","metadata":{"fofa-query":["body=\"ilias\""],"product":"ilias","shodan-query":["http.html:\"ilias\""],"vendor":"ilias","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ilias"],"case-insensitive":true}]}]},{"id":"geoserver","info":{"name":"geoserver","author":"cn-kali-team","tags":"detect,tech,geoserver","severity":"info","metadata":{"fofa-query":["app=\"geoserver\""],"product":"geoserver","shodan-query":["html:\"/geoserver/\""],"vendor":"geoserver","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/geoserver/"],"case-insensitive":true}]}]},{"id":"idccms","info":{"name":"idccms","author":"cn-kali-team","tags":"detect,tech,idccms","severity":"info","metadata":{"fofa-query":["title=\"idccms\""],"product":"idccms","shodan-query":["title:\"idccms\""],"vendor":"idccms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>idccms.*?</title>"]}]}]},{"id":"cloudpanel","info":{"name":"cloudpanel","author":"cn-kali-team","tags":"detect,tech,cloudpanel","severity":"info","metadata":{"fofa-query":["icon_hash=\"151132309\"","title=\"cloudpanel\""],"google-query":["intitle:\"cloudpanel\""],"product":"cloudpanel","shodan-query":["title:\"cloudpanel\"","http.title:\"cloudpanel\"","http.favicon.hash:\"151132309\""],"vendor":"mgt-commerce","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["151132309"]},{"type":"regex","regex":["(?mi)<title[^>]*>cloudpanel.*?</title>"]}]}]},{"id":"flowpaper","info":{"name":"flowpaper","author":"cn-kali-team","tags":"detect,tech,flowpaper","severity":"info","metadata":{"fofa-query":["title=\"flexpaper\""],"product":"flowpaper","shodan-query":["title:\"flexpaper\""],"vendor":"flowpaper","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>flexpaper.*?</title>"]}]}]},{"id":"tautulli","info":{"name":"tautulli","author":"cn-kali-team","tags":"detect,tech,tautulli","severity":"info","metadata":{"product":"tautulli","vendor":"tautulli","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"plexpy\""],"case-insensitive":true}]}]},{"id":"bludit","info":{"name":"bludit","author":"cn-kali-team","tags":"detect,tech,bludit","severity":"info","metadata":{"fofa-query":["title=\"bludit\""],"google-query":["intitle:\"bludit\""],"product":"bludit","shodan-query":["title:\"bludit\"","http.title:\"bludit\""],"vendor":"bludit","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>bludit.*?</title>"]}]}]},{"id":"gibbon","info":{"name":"gibbon","author":"cn-kali-team","tags":"detect,tech,gibbon","severity":"info","metadata":{"fofa-query":["icon_hash=\"-165631681\""],"product":"gibbon","shodan-query":["http.favicon.hash:-165631681","http.favicon.hash:\"-165631681\""],"vendor":"gibbonedu","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-165631681"]}]}]},{"id":"letta","info":{"name":"letta","author":"cn-kali-team","tags":"detect,tech,letta","severity":"info","metadata":{"fofa-query":["title=\"letta\""],"product":"letta","vendor":"letta","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>letta.*?</title>"]}]}]},{"id":"icewarp","info":{"name":"icewarp","author":"cn-kali-team","tags":"detect,tech,icewarp","severity":"info","metadata":{"fofa-query":["title=\"icewarp\"","icon_hash=2144485375"],"google-query":["intitle:\"icewarp\""],"product":"icewarp","shodan-query":["title:\"icewarp\"","http.favicon.hash:2144485375","http.title:\"icewarp\""],"vendor":"icewarp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["2144485375"]},{"type":"regex","regex":["(?mi)<title[^>]*>icewarp.*?</title>"]}]}]},{"id":"server","info":{"name":"server","author":"cn-kali-team","tags":"detect,tech,server","severity":"info","metadata":{"fofa-query":["title=\"gotify\""],"google-query":["intitle:\"gotify\""],"product":"server","shodan-query":["title:\"icewarp\"","http.title:\"gotify\""],"vendor":"icewarp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>gotify.*?</title>","(?mi)<title[^>]*>icewarp.*?</title>"]}]}]},{"id":"icewarp_server","info":{"name":"icewarp_server","author":"cn-kali-team","tags":"detect,tech,icewarp_server","severity":"info","metadata":{"fofa-query":["title=\"icewarp\""],"google-query":["intitle:\"icewarp\""],"product":"icewarp_server","shodan-query":["title:\"icewarp\"","http.title:\"icewarp\""],"vendor":"icewarp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>icewarp.*?</title>"]}]}]},{"id":"mail_server","info":{"name":"mail_server","author":"cn-kali-team","tags":"detect,tech,mail_server","severity":"info","metadata":{"fofa-query":["title=\"icewarp server administration\"","title=\"icewarp\""],"google-query":["intitle:\"icewarp server administration\"","intitle:\"icewarp\"","powered by icewarp 10.4.4"],"product":"mail_server","shodan-query":["http.title:\"icewarp server administration\"","http.title:\"icewarp\"","cpe:\"cpe:2.3:a:icewarp:mail_server\"","title:\"icewarp\""],"vendor":"icewarp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>icewarp server administration.*?</title>","(?mi)<title[^>]*>icewarp.*?</title>"]}]}]},{"id":"webclient","info":{"name":"webclient","author":"cn-kali-team","tags":"detect,tech,webclient","severity":"info","metadata":{"fofa-query":["title=\"icewarp\""],"google-query":["intitle:\"icewarp\""],"product":"webclient","shodan-query":["title:\"icewarp\"","http.title:\"icewarp\""],"vendor":"icewarp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>icewarp.*?</title>"]}]}]},{"id":"deep_castle_g2","info":{"name":"deep_castle_g2","author":"cn-kali-team","tags":"detect,tech,deep_castle_g2","severity":"info","metadata":{"fofa-query":["title=\"icewarp\""],"google-query":["intitle:\"icewarp\""],"product":"deep_castle_g2","shodan-query":["title:\"icewarp\"","http.title:\"icewarp\""],"vendor":"icewarp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>icewarp.*?</title>"]}]}]},{"id":"esafenet","info":{"name":"esafenet","author":"cn-kali-team","tags":"detect,tech,esafenet","severity":"info","metadata":{"fofa-query":["title=\"电子文档安全管理系统\",body=\"cdgserver3/\""],"product":"esafenet","vendor":"esafenet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>电子文档安全管理系统\",body=\"cdgserver3/.*?</title>"]}]}]},{"id":"cdg","info":{"name":"cdg","author":"cn-kali-team","tags":"detect,tech,cdg","severity":"info","metadata":{"fofa-query":["title=\"电子文档安全管理系统\",body=\"cdgserver3/\"","esafenet"],"product":"cdg","vendor":"esafenet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["esafenet"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>电子文档安全管理系统\",body=\"cdgserver3/.*?</title>"]}]}]},{"id":"electronic_document_security_management_system","info":{"name":"electronic_document_security_management_system","author":"cn-kali-team","tags":"detect,tech,electronic_document_security_management_system","severity":"info","metadata":{"fofa-query":["title=\"电子文档安全管理系统\",body=\"cdgserver3/\"","title=\"电子文档安全管理系统\""],"hunter-query":["web.title=\"电子文档安全管理系统\",web.body=\"cdgserver3/\""],"product":"electronic_document_security_management_system","vendor":"esafenet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>电子文档安全管理系统\",body=\"cdgserver3/.*?</title>","(?mi)<title[^>]*>电子文档安全管理系统.*?</title>"]}]}]},{"id":"mantisbt","info":{"name":"mantisbt","author":"cn-kali-team","tags":"detect,tech,mantisbt","severity":"info","metadata":{"product":"mantisbt","vendor":"mantisbt","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["alt=\"mantis bugtracker","powered by mantis bugtracker"],"case-insensitive":true}]}]},{"id":"navidrome","info":{"name":"navidrome","author":"cn-kali-team","tags":"detect,tech,navidrome","severity":"info","metadata":{"product":"navidrome","shodan-query":["html:\"content=\"navidrome\"\""],"vendor":"navidrome","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"navidrome"],"case-insensitive":true}]}]},{"id":"seafile","info":{"name":"seafile","author":"cn-kali-team","tags":"detect,tech,seafile","severity":"info","metadata":{"product":"seafile","vendor":"seafile","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["css/seahub.min.css"],"case-insensitive":true}]}]},{"id":"control_panel","info":{"name":"control_panel","author":"cn-kali-team","tags":"detect,tech,control_panel","severity":"info","metadata":{"fofa-query":["title=\"hestia control panel\"","icon_hash=-476299640"],"google-query":["intitle:\"hestia control panel\""],"product":"control_panel","shodan-query":["http.favicon.hash:-476299640","http.title:\"hestia control panel\""],"vendor":"hestiacp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-476299640"]},{"type":"regex","regex":["(?mi)<title[^>]*>hestia control panel.*?</title>"]}]}]},{"id":"wuzhicms","info":{"name":"wuzhicms","author":"cn-kali-team","tags":"detect,tech,wuzhicms","severity":"info","metadata":{"fofa-query":["title=\"wuzhicms\""],"product":"wuzhicms","shodan-query":["http.html:\"wuzhicms\""],"vendor":"wuzhicms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wuzhicms"],"case-insensitive":true},{"type":"word","words":["content=\"wuzhicms","powered by wuzhicms"],"condition":"and","case-insensitive":true},{"type":"word","words":["<meta name=\"generator\" content=\"wuzhicms"],"case-insensitive":true}]}]},{"id":"weiphp","info":{"name":"weiphp","author":"cn-kali-team","tags":"detect,tech,weiphp","severity":"info","metadata":{"product":"weiphp","vendor":"weiphp","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/css/weiphp.css","content=\"weiphp","本系统由<a href=\"http://www.weiphp.cn\" target=\"_blank\">weiphp</a>强力驱动"],"case-insensitive":true}]}]},{"id":"lobe-chat","info":{"name":"lobe-chat","author":"cn-kali-team","tags":"detect,tech,lobe-chat","severity":"info","metadata":{"fofa-query":["icon_hash=\"1975020705\""],"product":"lobe-chat","vendor":"lobehub","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1975020705"]}]}]},{"id":"pandora_fms","info":{"name":"pandora_fms","author":"cn-kali-team","tags":"detect,tech,pandora_fms","severity":"info","metadata":{"fofa-query":["title=\"pandora fms\""],"google-query":["intitle:\"pandora fms\""],"product":"pandora_fms","shodan-query":["http.title:\"pandora fms\""],"vendor":"artica","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>pandora fms.*?</title>"]}]}]},{"id":"opencms","info":{"name":"opencms","author":"cn-kali-team","tags":"detect,tech,opencms","severity":"info","metadata":{"fofa-query":["title=\"opencms\""],"google-query":["intitle:\"opencms\""],"product":"opencms","shodan-query":["/opencms/","http.title:\"opencms\"","cpe:\"cpe:2.3:a:alkacon:opencms\"","title:\"opencms\""],"vendor":"alkacon","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/opencms/"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>opencms.*?</title>"]}]}]},{"id":"datepicker_calendar","info":{"name":"datepicker_calendar","author":"cn-kali-team","tags":"detect,tech,datepicker_calendar","severity":"info","metadata":{"fofa-query":["title=triconsole.com - php calendar date picker"],"google-query":["intitle:triconsole.com - php calendar date picker"],"product":"datepicker_calendar","shodan-query":["http.title:triconsole.com - php calendar date picker"],"vendor":"triconsole","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>triconsole.com - php calendar date picker.*?</title>"]}]}]},{"id":"sfos","info":{"name":"sfos","author":"cn-kali-team","tags":"detect,tech,sfos","severity":"info","metadata":{"fofa-query":["title=\"sophos\""],"google-query":["intitle:\"sophos\""],"product":"sfos","shodan-query":["http.title:\"sophos\""],"vendor":"sophos","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>sophos.*?</title>"]}]}]},{"id":"mobile","info":{"name":"mobile","author":"cn-kali-team","tags":"detect,tech,mobile","severity":"info","metadata":{"fofa-query":["title=\"sophos mobile\"","icon_hash=-1274798165"],"google-query":["intitle:\"sophos mobile\""],"product":"mobile","shodan-query":["http.favicon.hash:-1274798165","http.title:\"sophos mobile\""],"vendor":"sophos","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1274798165"]},{"type":"regex","regex":["(?mi)<title[^>]*>sophos mobile.*?</title>"]}]}]},{"id":"unified_threat_management","info":{"name":"unified_threat_management","author":"cn-kali-team","tags":"detect,tech,unified_threat_management","severity":"info","metadata":{"fofa-query":["title=\"securepoint utm\""],"google-query":["intitle:\"securepoint utm\""],"product":"unified_threat_management","shodan-query":["http.title:\"securepoint utm\""],"vendor":"sophos","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>securepoint utm.*?</title>"]}]}]},{"id":"web_appliance","info":{"name":"web_appliance","author":"cn-kali-team","tags":"detect,tech,web_appliance","severity":"info","metadata":{"fofa-query":["title=\"sophos web appliance\"","icon_hash=-893681401"],"google-query":["intitle:\"sophos web appliance\""],"product":"web_appliance","shodan-query":["title:\"sophos web appliance\"","http.title:\"sophos web appliance\"","http.favicon.hash:-893681401"],"vendor":"sophos","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-893681401"]},{"type":"regex","regex":["(?mi)<title[^>]*>sophos web appliance.*?</title>"]}]}]},{"id":"elfinder","info":{"name":"elfinder","author":"cn-kali-team","tags":"detect,tech,elfinder","severity":"info","metadata":{"product":"elfinder","shodan-query":["title:\"elfinder\""],"vendor":"std42","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>elfinder.*?</title>"]}]}]},{"id":"anything-llm","info":{"name":"anything-llm","author":"cn-kali-team","tags":"detect,tech,anything-llm","severity":"info","metadata":{"product":"anything-llm","shodan-query":["title:\"anythingllm\""],"vendor":"mintplexlabs","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>anythingllm.*?</title>"]}]}]},{"id":"h-sphere","info":{"name":"h-sphere","author":"cn-kali-team","tags":"detect,tech,h-sphere","severity":"info","metadata":{"fofa-query":["title=\"h-sphere\"","title=\"parallels h-sphere\""],"google-query":["intitle:\"h-sphere\"","intitle:\"parallels h-sphere\""],"product":"h-sphere","shodan-query":["title:\"parallels h-sphere","http.title:\"h-sphere\"","http.title:\"parallels h-sphere\"","title:\"h-sphere\""],"vendor":"parallels","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>h-sphere.*?</title>","(?mi)<title[^>]*>parallels h-sphere.*?</title>"]}]}]},{"id":"eyoucms","info":{"name":"eyoucms","author":"cn-kali-team","tags":"detect,tech,eyoucms","severity":"info","metadata":{"product":"eyoucms","vendor":"eyoucms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["name=\"generator\" content=\"eyoucms","powered by eyoucms"],"case-insensitive":true}]}]},{"id":"r-seenet","info":{"name":"r-seenet","author":"cn-kali-team","tags":"detect,tech,r-seenet","severity":"info","metadata":{"fofa-query":["body=\"r-seenet\""],"product":"r-seenet","shodan-query":["http.html:\"r-seenet\""],"vendor":"advantech","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["r-seenet"],"case-insensitive":true}]}]},{"id":"hikvision","info":{"name":"hikvision","author":"cn-kali-team","tags":"detect,tech,hikvision","severity":"info","metadata":{"fofa-query":["icon_hash=\"-808437027\",app=\"hikvision-综合安防管理平台\",title=\"综合安防管理平台\""],"product":"hikvision","vendor":"hikvision","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-808437027"]}]}]},{"id":"ds-2cd2026g2-iu-sl_firmware","info":{"name":"ds-2cd2026g2-iu-sl_firmware","author":"cn-kali-team","tags":"detect,tech,ds-2cd2026g2-iu-sl_firmware","severity":"info","metadata":{"fofa-query":["icon_hash=999357577"],"product":"ds-2cd2026g2-iu-sl_firmware","shodan-query":["http.favicon.hash:999357577"],"vendor":"hikvision","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["999357577"]}]}]},{"id":"intercom_broadcast_system","info":{"name":"intercom_broadcast_system","author":"cn-kali-team","tags":"detect,tech,intercom_broadcast_system","severity":"info","metadata":{"fofa-query":["icon_hash=\"-1830859634\""],"product":"intercom_broadcast_system","shodan-query":["http.favicon.hash:\"-1830859634\""],"vendor":"hikvision","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1830859634"]}]}]},{"id":"mybb","info":{"name":"mybb","author":"cn-kali-team","tags":"detect,tech,mybb","severity":"info","metadata":{"product":"mybb","vendor":"mybb","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<!-- mybb is free software developed and maintained","onchange=\"mybb.changelanguage();","powered by <a href=\"http://www.mybboard.com","visibility of the mybb copyright at any time"],"case-insensitive":true}]}]},{"id":"phpcms","info":{"name":"phpcms","author":"cn-kali-team","tags":"detect,tech,phpcms","severity":"info","metadata":{"product":"phpcms","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a href=\"http://www.phpcms.cn\" target=\"_blank\">phpcms</a>"],"case-insensitive":true}]}]},{"id":"phpcms-2008","info":{"name":"phpcms-2008","author":"cn-kali-team","tags":"detect,tech,phpcms-2008","severity":"info","metadata":{"fofa-query":["body=\"powered by phpcms\""],"product":"phpcms-2008","shodan-query":["http.html:\"powered by phpcms\""],"vendor":"phpcms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by phpcms"],"case-insensitive":true}]}]},{"id":"sv-cpt-mc310_firmware","info":{"name":"sv-cpt-mc310_firmware","author":"cn-kali-team","tags":"detect,tech,sv-cpt-mc310_firmware","severity":"info","metadata":{"fofa-query":["body=\"solarview compact\""],"product":"sv-cpt-mc310_firmware","shodan-query":["http.html:\"solarview compact\""],"vendor":"contec","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["solarview compact"],"case-insensitive":true}]}]},{"id":"solarview_compact","info":{"name":"solarview_compact","author":"cn-kali-team","tags":"detect,tech,solarview_compact","severity":"info","metadata":{"product":"solarview_compact","shodan-query":["http.favicon.hash:\"-244067125\"","cpe:\"cpe:2.3:h:contec:solarview_compact\"","http.html:\"solarview compact\""],"vendor":"contec","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["solarview compact"],"case-insensitive":true},{"type":"favicon","hash":["-244067125"]}]}]},{"id":"solarview_compact_firmware","info":{"name":"solarview_compact_firmware","author":"cn-kali-team","tags":"detect,tech,solarview_compact_firmware","severity":"info","metadata":{"fofa-query":["body=\"solarview compact\" && title=\"top\"","icon_hash=\"-244067125\"","body=\"solarview compact\""],"product":"solarview_compact_firmware","shodan-query":["http.html:\"solarview compact\"","http.favicon.hash:\"-244067125\"","cpe:\"cpe:2.3:o:contec:solarview_compact_firmware\""],"vendor":"contec","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":[" title=\"top","solarview compact","solarview compact\" "],"case-insensitive":true},{"type":"favicon","hash":["-244067125"]}]}]},{"id":"fortiwlm","info":{"name":"fortiwlm","author":"cn-kali-team","tags":"detect,tech,fortiwlm","severity":"info","metadata":{"fofa-query":["body=\"fortiwlm\"","title=\"fortiwlm\""],"google-query":["intitle:\"fortiwlm\""],"product":"fortiwlm","shodan-query":["http.title:\"fortiwlm\"","http.html:\"fortiwlm\""],"vendor":"fortinet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["fortiwlm"],"case-insensitive":true}]}]},{"id":"fortinac","info":{"name":"fortinac","author":"cn-kali-team","tags":"detect,tech,fortinac","severity":"info","metadata":{"fofa-query":["title=\"fortinac\""],"google-query":["intitle:\"fortinac\""],"product":"fortinac","shodan-query":["title:\"fortinac\"","http.title:\"fortinac\""],"vendor":"fortinet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>fortinac.*?</title>"]}]}]},{"id":"fortinet-fortimail","info":{"name":"fortinet-fortimail","author":"cn-kali-team","tags":"detect,tech,fortinet-fortimail","severity":"info","metadata":{"product":"fortimail","vendor":"fortinet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<script language=javascript>","location=\"/m/webmail/\";"],"condition":"and","case-insensitive":true}]}]},{"id":"fortiportal","info":{"name":"fortiportal","author":"cn-kali-team","tags":"detect,tech,fortiportal","severity":"info","metadata":{"product":"fortiportal","shodan-query":["html:\"fortiportal\""],"vendor":"fortinet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["fortiportal"],"case-insensitive":true}]}]},{"id":"fortios","info":{"name":"fortios","author":"cn-kali-team","tags":"detect,tech,fortios","severity":"info","metadata":{"fofa-query":["body=\"/remote/login\" \"xxxxxxxx\"","icon_hash=945408572"],"product":"fortios","shodan-query":["http.html:\"/remote/login\" \"xxxxxxxx\"","http.favicon.hash:945408572","cpe:\"cpe:2.3:o:fortinet:fortios\"","port:10443 http.favicon.hash:945408572"],"vendor":"fortinet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/remote/login\" \"xxxxxxxx"],"case-insensitive":true},{"type":"favicon","hash":["945408572"]}]}]},{"id":"fortiweb","info":{"name":"fortiweb","author":"cn-kali-team","tags":"detect,tech,fortiweb","severity":"info","metadata":{"fofa-query":["title=\"fortiweb - \""],"google-query":["intitle:\"fortiweb - \""],"product":"fortiweb","shodan-query":["http.title:\"fortiweb - \""],"vendor":"fortinet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>fortiweb - .*?</title>"]}]}]},{"id":"processwire","info":{"name":"processwire","author":"cn-kali-team","tags":"detect,tech,processwire","severity":"info","metadata":{"fofa-query":["body=\"processwire\""],"product":"processwire","shodan-query":["http.html:\"processwire\""],"vendor":"processwire","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["processwire"],"case-insensitive":true}]}]},{"id":"kubeflow","info":{"name":"kubeflow","author":"cn-kali-team","tags":"detect,tech,kubeflow","severity":"info","metadata":{"product":"kubeflow","vendor":"kubeflow","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"kubeflow central dashboard\""],"case-insensitive":true},{"type":"favicon","hash":["-1203021870","09282f0ea1a467a103d97ddfb8c1217c"]}]}]},{"id":"liferay","info":{"name":"liferay","author":"cn-kali-team","tags":"detect,tech,liferay","severity":"info","metadata":{"product":"liferay","vendor":"liferay","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["liferay.aui","liferay.currenturl","powered by liferay portal"],"case-insensitive":true}]}]},{"id":"liferay_portal","info":{"name":"liferay_portal","author":"cn-kali-team","tags":"detect,tech,liferay_portal","severity":"info","metadata":{"fofa-query":["icon_hash=129457226"],"product":"liferay_portal","shodan-query":["http.favicon.hash:129457226","cpe:\"cpe:2.3:a:liferay:liferay_portal\""],"vendor":"liferay","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["129457226"]}]}]},{"id":"webctrl","info":{"name":"webctrl","author":"cn-kali-team","tags":"detect,tech,webctrl","severity":"info","metadata":{"fofa-query":["body=\"/_common/lvl5/dologin.jsp\""],"product":"webctrl","shodan-query":["html:\"/_common/lvl5/dologin.jsp\"","http.html:\"/_common/lvl5/dologin.jsp\""],"vendor":"automatedlogic","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/_common/lvl5/dologin.jsp"],"case-insensitive":true}]}]},{"id":"lansweeper","info":{"name":"lansweeper","author":"cn-kali-team","tags":"detect,tech,lansweeper","severity":"info","metadata":{"product":"lansweeper","vendor":"lansweeper","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>lansweeper - login</title>"],"case-insensitive":true}]}]},{"id":"kubeview","info":{"name":"kubeview","author":"cn-kali-team","tags":"detect,tech,kubeview","severity":"info","metadata":{"fofa-query":["icon_hash=-379154636","title=\"kubeview\""],"google-query":["intitle:\"kubeview\""],"product":"kubeview","shodan-query":["http.title:\"kubeview\"","http.favicon.hash:-379154636"],"vendor":"kubeview_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-379154636"]},{"type":"regex","regex":["(?mi)<title[^>]*>kubeview.*?</title>"]}]}]},{"id":"alibaba-fastjson","info":{"name":"alibaba-fastjson","author":"cn-kali-team","tags":"detect,tech,alibaba-fastjson","severity":"info","metadata":{"product":"fastjson","vendor":"alibaba","verified":true}},"http":[{"method":"POST","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["fastjson","version"],"condition":"and","case-insensitive":true},{"type":"word","words":["com.alibaba.fastjson.jsonexception","illegal identifier : @pos 1, json : {@type:java.lang.autocloseable","js/base/fastjson","syntax error, expect {, actual error, pos 0","unclosed string","var json = json.parse"],"case-insensitive":true}]}]},{"id":"alibaba-nacos","info":{"name":"alibaba-nacos","author":"cn-kali-team","tags":"detect,tech,alibaba-nacos","severity":"info","metadata":{"product":"nacos","vendor":"alibaba","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/","{{BaseURL}}/nacos/"],"matchers":[{"type":"word","words":["<title>nacos</title>"],"case-insensitive":true}]}]},{"id":"wechat","info":{"name":"wechat","author":"cn-kali-team","tags":"detect,tech,wechat","severity":"info","metadata":{"fofa-query":["body=\"wework_admin.normal_layout\""],"product":"wechat","vendor":"tencent","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wework_admin.normal_layout"],"case-insensitive":true}]}]},{"id":"yealink","info":{"name":"yealink","author":"cn-kali-team","tags":"detect,tech,yealink","severity":"info","metadata":{"fofa-query":["yealink ctp18"],"product":"yealink","vendor":"yealink","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["yealink ctp18"],"case-insensitive":true}]}]},{"id":"asustor-data-master","info":{"name":"asustor-data-master","author":"cn-kali-team","tags":"detect,tech,asustor-data-master","severity":"info","metadata":{"fofa-query":["body=\"asustor\" && icon_hash=\"1678170702\""],"product":"asustor-data-master","shodan-query":["http.html:\"asustor\""],"vendor":"asustor","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["asustor"],"case-insensitive":true},{"type":"favicon","hash":["1678170702"]}]}]},{"id":"wftpserver","info":{"name":"wftpserver","author":"cn-kali-team","tags":"detect,tech,wftpserver","severity":"info","metadata":{"fofa-query":["icon_hash=\"963565804\"","title=\"wing ftp server\"","server: wing ftp server"],"product":"wftpserver","shodan-query":["http.html_hash:2121146066","http.favicon.hash:963565804","title:\"wing ftp server\"","server: wing ftp server"],"vendor":"wing_ftp_server","verified":true,"zoomeye-query":["app=\"wing ftp server\""]}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["server: wing ftp server"],"case-insensitive":true},{"type":"favicon","hash":["963565804"]},{"type":"regex","regex":["(?mi)<title[^>]*>wing ftp server.*?</title>"]}]}]},{"id":"gnuboard","info":{"name":"gnuboard","author":"cn-kali-team","tags":"detect,tech,gnuboard","severity":"info","metadata":{"fofa-query":["body:\"gnuboard5\""],"product":"gnuboard","shodan-query":["html:\"gnuboard5\""],"vendor":"sir","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["body:\"gnuboard5","gnuboard5"]}]}]},{"id":"zimbra_collaboration_suite","info":{"name":"zimbra_collaboration_suite","author":"cn-kali-team","tags":"detect,tech,zimbra_collaboration_suite","severity":"info","metadata":{"fofa-query":["title=\"zimbra web client sign in\"","title=\"zimbra collaboration suite\""],"google-query":["intitle:\"zimbra collaboration suite\"","intitle:\"zimbra web client sign in\""],"product":"zimbra_collaboration_suite","shodan-query":["http.title:\"zimbra collaboration suite\"","http.title:\"zimbra web client sign in\""],"vendor":"synacor","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>zimbra collaboration suite.*?</title>","(?mi)<title[^>]*>zimbra web client sign in.*?</title>"]}]}]},{"id":"opentsdb","info":{"name":"opentsdb","author":"cn-kali-team","tags":"detect,tech,opentsdb","severity":"info","metadata":{"fofa-query":["body=\"opentsdb\""],"product":"opentsdb","shodan-query":["html:\"opentsdb\"","http.html:\"opentsdb\""],"vendor":"opentsdb","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["opentsdb"],"case-insensitive":true}]}]},{"id":"cacti","info":{"name":"cacti","author":"cn-kali-team","tags":"detect,tech,cacti","severity":"info","metadata":{"product":"cacti","vendor":"cacti","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/plugins/jqueryskin/include/login.css"],"case-insensitive":true},{"type":"word","words":["set-cookie: cacti="],"part":"header","case-insensitive":true}]}]},{"id":"gl-ar300m_firmware","info":{"name":"gl-ar300m_firmware","author":"cn-kali-team","tags":"detect,tech,gl-ar300m_firmware","severity":"info","metadata":{"product":"gl-ar300m_firmware","shodan-query":["title:\"gl.inet admin panel\""],"vendor":"gl-inet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>gl.inet admin panel.*?</title>"]}]}]},{"id":"gl-s20_firmware","info":{"name":"gl-s20_firmware","author":"cn-kali-team","tags":"detect,tech,gl-s20_firmware","severity":"info","metadata":{"product":"gl-s20_firmware","shodan-query":["title:\"gl.inet admin panel\""],"vendor":"gl-inet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>gl.inet admin panel.*?</title>"]}]}]},{"id":"openmediavault","info":{"name":"openmediavault","author":"cn-kali-team","tags":"detect,tech,openmediavault","severity":"info","metadata":{"product":"openmediavault","shodan-query":["title:\"openmediavault\""],"vendor":"openmediavault","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>openmediavault.*?</title>"]}]}]},{"id":"enterprise,proton","info":{"name":"enterprise,proton","author":"cn-kali-team","tags":"detect,tech,enterprise,proton","severity":"info","metadata":{"product":"enterprise,proton","shodan-query":["html:\"optergy\""],"vendor":"optergy","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["optergy"],"case-insensitive":true}]}]},{"id":"reprise_license_manager","info":{"name":"reprise_license_manager","author":"cn-kali-team","tags":"detect,tech,reprise_license_manager","severity":"info","metadata":{"fofa-query":["body=\"reprise license manager\"","body=\"reprise license\""],"google-query":["inurl:\"/goforms/menu\""],"product":"reprise_license_manager","shodan-query":["http.html:\"reprise license\"","http.html:\"reprise license manager\""],"vendor":"reprisesoftware","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["reprise license","reprise license manager"],"case-insensitive":true}]}]},{"id":"copyparty","info":{"name":"copyparty","author":"cn-kali-team","tags":"detect,tech,copyparty","severity":"info","metadata":{"fofa-query":["title=\"copyparty\""],"google-query":["intitle:\"copyparty\""],"product":"copyparty","shodan-query":["title:\"copyparty\"","http.title:\"copyparty\""],"vendor":"copyparty_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>copyparty.*?</title>"]}]}]},{"id":"ind780_firmware","info":{"name":"ind780_firmware","author":"cn-kali-team","tags":"detect,tech,ind780_firmware","severity":"info","metadata":{"google-query":["inurl:excalweb.dll"],"product":"ind780_firmware","shodan-query":["ind780"],"vendor":"mt","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ind780"],"case-insensitive":true}]}]},{"id":"monitorr","info":{"name":"monitorr","author":"cn-kali-team","tags":"detect,tech,monitorr","severity":"info","metadata":{"fofa-query":["icon_hash=\"-211006074\""],"product":"monitorr","shodan-query":["http.favicon.hash:\"-211006074\""],"vendor":"monitorr","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-211006074"]}]}]},{"id":"koha","info":{"name":"koha","author":"cn-kali-team","tags":"detect,tech,koha","severity":"info","metadata":{"product":"koha","vendor":"koha","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"koha ","name=\"koha_login_context"],"case-insensitive":true}]}]},{"id":"free5gc","info":{"name":"free5gc","author":"cn-kali-team","tags":"detect,tech,free5gc","severity":"info","metadata":{"fofa-query":["title=\"free5gc web console\""],"google-query":["intitle:\"free5gc web console\""],"product":"free5gc","shodan-query":["http.title:\"free5gc web console\""],"vendor":"free5gc","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>free5gc web console.*?</title>"]}]}]},{"id":"help_scout","info":{"name":"help_scout","author":"cn-kali-team","tags":"detect,tech,help_scout","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/woocommerce-help-scout\""],"product":"help_scout","vendor":"woocommerce","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/woocommerce-help-scout"],"case-insensitive":true}]}]},{"id":"compact_5500r_firmware","info":{"name":"compact_5500r_firmware","author":"cn-kali-team","tags":"detect,tech,compact_5500r_firmware","severity":"info","metadata":{"fofa-query":["\"auerswald\""],"product":"compact_5500r_firmware","vendor":"auerswald","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["auerswald"],"case-insensitive":true}]}]},{"id":"appcms","info":{"name":"appcms","author":"cn-kali-team","tags":"detect,tech,appcms","severity":"info","metadata":{"product":"appcms","vendor":"appcms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powerd by appcms"],"case-insensitive":true}]}]},{"id":"elfinder","info":{"name":"elfinder","author":"cn-kali-team","tags":"detect,tech,elfinder","severity":"info","metadata":{"product":"elfinder","shodan-query":["http.title:\"elfinder\""],"vendor":"studio-42","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>elfinder.*?</title>"]}]}]},{"id":"art_gallery_management_system","info":{"name":"art_gallery_management_system","author":"cn-kali-team","tags":"detect,tech,art_gallery_management_system","severity":"info","metadata":{"fofa-query":["title=\"art gallery management system\""],"product":"art_gallery_management_system","vendor":"phpgurukul","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>art gallery management system.*?</title>"]}]}]},{"id":"hospital_management_system","info":{"name":"hospital_management_system","author":"cn-kali-team","tags":"detect,tech,hospital_management_system","severity":"info","metadata":{"fofa-query":["body=\"hospital management system\""],"product":"hospital_management_system","shodan-query":["http.html:\"hospital management system\""],"vendor":"phpgurukul","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["hospital management system"],"case-insensitive":true}]}]},{"id":"thruk","info":{"name":"thruk","author":"cn-kali-team","tags":"detect,tech,thruk","severity":"info","metadata":{"fofa-query":["body=\"thruk\"","title==\"thruk monitoring webinterface\""],"product":"thruk","shodan-query":["http.html:\"thruk\""],"vendor":"thruk","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["thruk"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>=\"thruk monitoring webinterface.*?</title>"]}]}]},{"id":"x-ui","info":{"name":"x-ui","author":"cn-kali-team","tags":"detect,tech,x-ui","severity":"info","metadata":{"fofa-query":["title=\"x-ui login\""],"product":"x-ui","shodan-query":["title:\"x-ui login\""],"vendor":"vaxilu","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>x-ui login.*?</title>"]}]}]},{"id":"e-hr","info":{"name":"e-hr","author":"cn-kali-team","tags":"detect,tech,e-hr","severity":"info","metadata":{"fofa-query":["title=\"人力资源信息管理系统\""],"product":"e-hr","vendor":"hrp2000","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>人力资源信息管理系统.*?</title>"]}]}]},{"id":"resourcespace","info":{"name":"resourcespace","author":"cn-kali-team","tags":"detect,tech,resourcespace","severity":"info","metadata":{"fofa-query":["title=\"resourcespace\""],"product":"resourcespace","shodan-query":["title:\"resourcespace\""],"vendor":"montala","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>resourcespace.*?</title>"]}]}]},{"id":"icinga_web_2","info":{"name":"icinga_web_2","author":"cn-kali-team","tags":"detect,tech,icinga_web_2","severity":"info","metadata":{"fofa-query":["title=\"icinga web 2 login\"","title=\"icinga\""],"google-query":["intitle:\"icinga\"","intitle:\"icinga web 2 login\""],"product":"icinga_web_2","shodan-query":["title:\"icinga\"","http.title:\"icinga\"","http.title:\"icinga web 2 login\""],"vendor":"icinga","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>icinga web 2 login.*?</title>","(?mi)<title[^>]*>icinga.*?</title>"]}]}]},{"id":"icinga","info":{"name":"icinga","author":"cn-kali-team","tags":"detect,tech,icinga","severity":"info","metadata":{"product":"icinga","vendor":"icinga","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["466b3dcce4a3c13f44dd0dc824b1e328"]},{"type":"word","words":["<title>icinga web 2 login</title>","mask-icon\" href=\"/icingaweb2/img/website-icon.svg\" color="],"case-insensitive":true}]}]},{"id":"moodle","info":{"name":"moodle","author":"cn-kali-team","tags":"detect,tech,moodle","severity":"info","metadata":{"product":"moodle","vendor":"moodle","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["content=\"moodle","m.str = {\"moodle\":","title=\"moodle\" href=\"http://moodle.org/"],"case-insensitive":true}]}]},{"id":"workforce_optimization","info":{"name":"workforce_optimization","author":"cn-kali-team","tags":"detect,tech,workforce_optimization","severity":"info","metadata":{"fofa-query":["title=\"verint sign-in\""],"google-query":["intitle:\"verint sign-in\""],"product":"workforce_optimization","shodan-query":["title:\"verint sign-in\"","http.title:\"verint sign-in\""],"vendor":"verint","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>verint sign-in.*?</title>"]}]}]},{"id":"hoteldruid","info":{"name":"hoteldruid","author":"cn-kali-team","tags":"detect,tech,hoteldruid","severity":"info","metadata":{"fofa-query":["title=\"hoteldruid\"","icon_hash=-1521640213"],"google-query":["intitle:\"hoteldruid\""],"product":"hoteldruid","shodan-query":["http.title:\"hoteldruid\"","http.favicon.hash:-1521640213","title:\"hoteldruid\""],"vendor":"digitaldruid","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1521640213"]},{"type":"regex","regex":["(?mi)<title[^>]*>hoteldruid.*?</title>"]}]}]},{"id":"kentico_cms","info":{"name":"kentico_cms","author":"cn-kali-team","tags":"detect,tech,kentico_cms","severity":"info","metadata":{"fofa-query":["title=\"kentico database setup\""],"google-query":["intitle:\"kentico database setup\""],"product":"kentico_cms","shodan-query":["cpe:\"cpe:2.3:a:kentico:kentico_cms\"","http.title:\"kentico database setup\""],"vendor":"kentico","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>kentico database setup.*?</title>"]}]}]},{"id":"learnpress","info":{"name":"learnpress","author":"cn-kali-team","tags":"detect,tech,learnpress","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/learnpress\""],"product":"learnpress","shodan-query":["html:\"/wp-content/plugins/learnpress\""],"vendor":"thimpress","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/learnpress"],"case-insensitive":true}]}]},{"id":"cloudtest","info":{"name":"cloudtest","author":"cn-kali-team","tags":"detect,tech,cloudtest","severity":"info","metadata":{"product":"cloudtest","shodan-query":["html:\"akamai cloudtest\""],"vendor":"akamai","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["akamai cloudtest"],"case-insensitive":true}]}]},{"id":"business_intelligence_and_reporting_tools","info":{"name":"business_intelligence_and_reporting_tools","author":"cn-kali-team","tags":"detect,tech,business_intelligence_and_reporting_tools","severity":"info","metadata":{"product":"business_intelligence_and_reporting_tools","shodan-query":["http.title:\"eclipse birt home\""],"vendor":"vendor","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>eclipse birt home.*?</title>"]}]}]},{"id":"kace_system_management_appliance","info":{"name":"kace_system_management_appliance","author":"cn-kali-team","tags":"detect,tech,kace_system_management_appliance","severity":"info","metadata":{"product":"kace_system_management_appliance","shodan-query":["title:\"kace systems management\""],"vendor":"quest","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>kace systems management.*?</title>"]}]}]},{"id":"kace_systems_management","info":{"name":"kace_systems_management","author":"cn-kali-team","tags":"detect,tech,kace_systems_management","severity":"info","metadata":{"product":"kace_systems_management","shodan-query":["html:\"k1000 logo\""],"vendor":"quest","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["k1000 logo"],"case-insensitive":true}]}]},{"id":"yonyou","info":{"name":"yonyou","author":"cn-kali-team","tags":"detect,tech,yonyou","severity":"info","metadata":{"fofa-query":["icon_hash=\"1085941792\"","app=\"用友-ufida-nc"],"product":"yonyou","vendor":"yonyou","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1085941792"]}]}]},{"id":"ufida_erp-nc","info":{"name":"ufida_erp-nc","author":"cn-kali-team","tags":"detect,tech,ufida_erp-nc","severity":"info","metadata":{"fofa-query":["icon_hash=\"1085941792\""],"product":"ufida_erp-nc","shodan-query":["title:\"用友\""],"vendor":"yonyou","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1085941792"]},{"type":"regex","regex":["(?mi)<title[^>]*>用友.*?</title>"]}]}]},{"id":"ufida-nc","info":{"name":"ufida-nc","author":"cn-kali-team","tags":"detect,tech,ufida-nc","severity":"info","metadata":{"fofa-query":["app=\"用友-移动系统管理\"","app=\"yonyou-ufida-nc\"","icon_hash=\"1085941792\"","app=\"用友-ufida-nc"],"product":"ufida-nc","vendor":"yonyou","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1085941792"]},{"type":"word","words":["ufida_iufo_over.png","ufida_nc.png"],"condition":"and","case-insensitive":true},{"type":"word","words":["logo/images/","ufida"],"condition":"and","case-insensitive":true},{"type":"word","words":["<div id=\"nc_img\" onmouseover=\"overimage('nc');","<div id=\"nc_text\">","logo/images/ufida_nc.png"],"case-insensitive":true}]}]},{"id":"rg-uac_firmware","info":{"name":"rg-uac_firmware","author":"cn-kali-team","tags":"detect,tech,rg-uac_firmware","severity":"info","metadata":{"product":"rg-uac_firmware","shodan-query":["http.html:\"get_verify_info\""],"vendor":"ruijie","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["get_verify_info"],"case-insensitive":true}]}]},{"id":"rg-uac","info":{"name":"rg-uac","author":"cn-kali-team","tags":"detect,tech,rg-uac","severity":"info","metadata":{"fofa-query":["title=\"rg-uac登录页面\" && body=\"admin\"","title=\"rg-uac登录页面\""],"product":"rg-uac","vendor":"ruijie","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>rg-uac登录页面.*?</title>"]},{"type":"word","words":["bbs.ruijie.com.cn","锐捷统一上网行为管理与审计系统"],"condition":"and","case-insensitive":true},{"type":"word","words":["src='images/free_login.png'"],"case-insensitive":true}]}]},{"id":"rg-ew1200g_firmware","info":{"name":"rg-ew1200g_firmware","author":"cn-kali-team","tags":"detect,tech,rg-ew1200g_firmware","severity":"info","metadata":{"fofa-query":["body=\"app.2fe6356cdd1ddd0eb8d6317d1a48d379.css\""],"product":"rg-ew1200g_firmware","shodan-query":["http.html:\"app.2fe6356cdd1ddd0eb8d6317d1a48d379.css\""],"vendor":"ruijie","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["app.2fe6356cdd1ddd0eb8d6317d1a48d379.css"],"case-insensitive":true}]}]},{"id":"rg-nbs2009g-p,-rg-nbs2009g-p_firmware","info":{"name":"rg-nbs2009g-p, rg-nbs2009g-p_firmware","author":"cn-kali-team","tags":"detect,tech,rg-nbs2009g-p, rg-nbs2009g-p_firmware","severity":"info","metadata":{"fofa-query":["body=\"ruijie.com.cn\""],"product":"rg-nbs2009g-p, rg-nbs2009g-p_firmware","vendor":"ruijie","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ruijie.com.cn"],"case-insensitive":true}]}]},{"id":"openmetadata","info":{"name":"openmetadata","author":"cn-kali-team","tags":"detect,tech,openmetadata","severity":"info","metadata":{"fofa-query":["title=\"openmetadata\""],"product":"openmetadata","shodan-query":["title:\"openmetadata\""],"vendor":"open-metadata","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>openmetadata.*?</title>"]}]}]},{"id":"grafana","info":{"name":"grafana","author":"cn-kali-team","tags":"detect,tech,grafana","severity":"info","metadata":{"product":"grafana","vendor":"grafana","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["grafana_icon.svg","login"],"condition":"and","case-insensitive":true},{"type":"word","words":["grafana-app","window.grafanabootdata = "],"case-insensitive":true}]}]},{"id":"ez-net_portal","info":{"name":"ez-net_portal","author":"cn-kali-team","tags":"detect,tech,ez-net_portal","severity":"info","metadata":{"fofa-query":["eznet_"],"product":"ez-net_portal","shodan-query":["eznet_"],"vendor":"cedargate","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["eznet_"],"case-insensitive":true}]}]},{"id":"wrn150","info":{"name":"wrn150","author":"cn-kali-team","tags":"detect,tech,wrn150","severity":"info","metadata":{"fofa-query":["title=\"wrn150\""],"product":"wrn150","shodan-query":["html:\"wrn150\""],"vendor":"intelbras","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["wrn150"],"case-insensitive":true}]}]},{"id":"tip300","info":{"name":"tip300","author":"cn-kali-team","tags":"detect,tech,tip300","severity":"info","metadata":{"fofa-query":["title=\"intelbras\""],"product":"tip300","shodan-query":["title:\"intelbras\""],"vendor":"intelbras","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>intelbras.*?</title>"]}]}]},{"id":"nplug","info":{"name":"nplug","author":"cn-kali-team","tags":"detect,tech,nplug","severity":"info","metadata":{"fofa-query":["title=\"nplug\""],"product":"nplug","shodan-query":["html:\"nplug\""],"vendor":"intelbras","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["nplug"],"case-insensitive":true}]}]},{"id":"tip200","info":{"name":"tip200","author":"cn-kali-team","tags":"detect,tech,tip200","severity":"info","metadata":{"fofa-query":["body=\"/cgi-bin/cgiserver.exx\""],"product":"tip200","shodan-query":["html:\"/cgi-bin/cgiserver.exx\""],"vendor":"intelbras","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/cgi-bin/cgiserver.exx"],"case-insensitive":true}]}]},{"id":"sg_2404_mr_firmware","info":{"name":"sg_2404_mr_firmware","author":"cn-kali-team","tags":"detect,tech,sg_2404_mr_firmware","severity":"info","metadata":{"fofa-query":["title=\"intelbras\""],"google-query":["intitle:\"intelbras\""],"product":"sg_2404_mr_firmware","shodan-query":["title:\"intelbras\"","http.title:\"intelbras\""],"vendor":"intelbras","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>intelbras.*?</title>"]}]}]},{"id":"piwigo","info":{"name":"piwigo","author":"cn-kali-team","tags":"detect,tech,piwigo","severity":"info","metadata":{"product":"piwigo","vendor":"piwigo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["generator\" content=\"piwigo"],"case-insensitive":true}]}]},{"id":"openmrs","info":{"name":"openmrs","author":"cn-kali-team","tags":"detect,tech,openmrs","severity":"info","metadata":{"product":"openmrs","shodan-query":["html:\"openmrs\""],"vendor":"openmrs","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["openmrs"],"case-insensitive":true}]}]},{"id":"sidekiq","info":{"name":"sidekiq","author":"cn-kali-team","tags":"detect,tech,sidekiq","severity":"info","metadata":{"fofa-query":["title=\"sidekiq\""],"google-query":["intitle:\"sidekiq\""],"product":"sidekiq","shodan-query":["http.title:\"sidekiq\"","title:\"sidekiq\""],"vendor":"contribsys","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>sidekiq.*?</title>"]}]}]},{"id":"soplanning","info":{"name":"soplanning","author":"cn-kali-team","tags":"detect,tech,soplanning","severity":"info","metadata":{"fofa-query":["body=\"soplanning\""],"product":"soplanning","shodan-query":["http.html:\"soplanning\"","html:\"soplanning\""],"vendor":"soplanning","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["soplanning"],"case-insensitive":true}]}]},{"id":"squidex","info":{"name":"squidex","author":"cn-kali-team","tags":"detect,tech,squidex","severity":"info","metadata":{"fofa-query":["icon_hash=1099097618"],"product":"squidex","shodan-query":["http.favicon.hash:1099097618"],"vendor":"squidex.io","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1099097618"]}]}]},{"id":"rocket-lms","info":{"name":"rocket-lms","author":"cn-kali-team","tags":"detect,tech,rocket-lms","severity":"info","metadata":{"product":"rocket-lms","shodan-query":["html:\"rocket lms\""],"vendor":"rocketsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["rocket lms"],"case-insensitive":true}]}]},{"id":"gestsup","info":{"name":"gestsup","author":"cn-kali-team","tags":"detect,tech,gestsup","severity":"info","metadata":{"fofa-query":["title=\"gestsup\""],"product":"gestsup","shodan-query":["http.favicon.hash:-283003760"],"vendor":"gestsup","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-283003760"]},{"type":"regex","regex":["(?mi)<title[^>]*>gestsup.*?</title>"]}]}]},{"id":"scoold","info":{"name":"scoold","author":"cn-kali-team","tags":"detect,tech,scoold","severity":"info","metadata":{"product":"scoold","shodan-query":["html:\"scoold-wrapper\""],"vendor":"erudika","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["scoold-wrapper"],"case-insensitive":true}]}]},{"id":"atmail","info":{"name":"atmail","author":"cn-kali-team","tags":"detect,tech,atmail","severity":"info","metadata":{"product":"atmail","vendor":"atmail","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/index.php/mail/auth/processlogin","<input id=\"mailserverinput","powered by atmail"],"case-insensitive":true}]}]},{"id":"poststaticfooter","info":{"name":"poststaticfooter","author":"cn-kali-team","tags":"detect,tech,poststaticfooter","severity":"info","metadata":{"product":"poststaticfooter","shodan-query":["html:\"posstaticfooter\""],"vendor":"prestashop","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["posstaticfooter"],"case-insensitive":true}]}]},{"id":"chamilo","info":{"name":"chamilo","author":"cn-kali-team","tags":"detect,tech,chamilo","severity":"info","metadata":{"product":"chamilo","vendor":"chamilo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<meta name=\"generator\" content=\"chamilo"],"case-insensitive":true}]}]},{"id":"s14","info":{"name":"s14","author":"cn-kali-team","tags":"detect,tech,s14","severity":"info","metadata":{"product":"s14","shodan-query":["title:\"mobotix\""],"vendor":"mobotix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>mobotix.*?</title>"]}]}]},{"id":"123solar","info":{"name":"123solar","author":"cn-kali-team","tags":"detect,tech,123solar","severity":"info","metadata":{"fofa-query":["title=\"123solar\""],"product":"123solar","shodan-query":["title:\"123solar\""],"vendor":"123solar","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>123solar.*?</title>"]}]}]},{"id":"zk_framework","info":{"name":"zk_framework","author":"cn-kali-team","tags":"detect,tech,zk_framework","severity":"info","metadata":{"fofa-query":["title=\"server backup manager\""],"google-query":["intitle:\"server backup manager\""],"product":"zk_framework","shodan-query":["http.title:\"server backup manager\""],"vendor":"zkoss","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>server backup manager.*?</title>"]}]}]},{"id":"ckan","info":{"name":"ckan","author":"cn-kali-team","tags":"detect,tech,ckan","severity":"info","metadata":{"product":"ckan","shodan-query":["html:\"ckan 2.8.2\" || html:\"ckan 2.3\""],"vendor":"okfn","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["ckan 2.8.2\"","html:\"ckan 2.3"],"case-insensitive":true}]}]},{"id":"leantime","info":{"name":"leantime","author":"cn-kali-team","tags":"detect,tech,leantime","severity":"info","metadata":{"product":"leantime","shodan-query":["title:\"leantime\""],"vendor":"leantime","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>leantime.*?</title>"]}]}]},{"id":"roxy_fileman","info":{"name":"roxy_fileman","author":"cn-kali-team","tags":"detect,tech,roxy_fileman","severity":"info","metadata":{"fofa-query":["title=\"roxy file manager\""],"google-query":["intitle:\"roxy file manager\""],"product":"roxy_fileman","shodan-query":["http.title:\"roxy file manager\""],"vendor":"roxyfileman","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>roxy file manager.*?</title>"]}]}]},{"id":"opnsense","info":{"name":"opnsense","author":"cn-kali-team","tags":"detect,tech,opnsense","severity":"info","metadata":{"fofa-query":["title=\"opnsense\""],"google-query":["intitle:\"opnsense\""],"product":"opnsense","shodan-query":["http.title:\"opnsense\"","title:\"opnsense\""],"vendor":"opnsense","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>opnsense.*?</title>"]}]}]},{"id":"atutor","info":{"name":"atutor","author":"cn-kali-team","tags":"detect,tech,atutor","severity":"info","metadata":{"fofa-query":["body=\"atutor\""],"product":"atutor","shodan-query":["http.html:\"atutor\""],"vendor":"atutor","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["atutor"],"case-insensitive":true}]}]},{"id":"processplus","info":{"name":"processplus","author":"cn-kali-team","tags":"detect,tech,processplus","severity":"info","metadata":{"fofa-query":["\"process plus\" && icon_hash=\"1772087922\""],"product":"processplus","vendor":"perkinelmer","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["process plus"],"case-insensitive":true},{"type":"favicon","hash":["1772087922"]}]}]},{"id":"lucee","info":{"name":"lucee","author":"cn-kali-team","tags":"detect,tech,lucee","severity":"info","metadata":{"product":"lucee","vendor":"lucee","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["by the lucee association switzerland</p>","png\" alt=\"lucee\">"],"case-insensitive":true}]}]},{"id":"thinkcmf","info":{"name":"thinkcmf","author":"cn-kali-team","tags":"detect,tech,thinkcmf","severity":"info","metadata":{"product":"thinkcmf","vendor":"thinkcmf","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<a title=\"官方网站\" href=\"http://www.thinkcmf.com\">thinkcmf</a>","content=\"thinkcmf","made by <a href=\"http://www.thinkcmf.com\" target=\"_blank\">thinkcmf</a>"],"case-insensitive":true},{"type":"word","words":["x-powered-by: thinkcmf","x-powered-by: thinkcmf"],"part":"header","case-insensitive":true}]}]},{"id":"fieldpopupnewsletter","info":{"name":"fieldpopupnewsletter","author":"cn-kali-team","tags":"detect,tech,fieldpopupnewsletter","severity":"info","metadata":{"fofa-query":["body=\"fieldpopupnewsletter\""],"product":"fieldpopupnewsletter","shodan-query":["html:\"fieldpopupnewsletter\"","http.html:\"fieldpopupnewsletter\""],"vendor":"fieldthemes","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["fieldpopupnewsletter"],"case-insensitive":true}]}]},{"id":"tinyfilemanager","info":{"name":"tinyfilemanager","author":"cn-kali-team","tags":"detect,tech,tinyfilemanager","severity":"info","metadata":{"product":"tinyfilemanager","shodan-query":["html:\"tiny file manager\""],"vendor":"tinyfilemanager_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tiny file manager"],"case-insensitive":true}]}]},{"id":"vigor","info":{"name":"vigor","author":"cn-kali-team","tags":"detect,tech,vigor","severity":"info","metadata":{"fofa-query":["\"excanvas.js\" && \"lang == \\\"zh-cn\\\"\" && \"detectlang\" && server==\"dws\""],"product":"vigor","vendor":"draytek","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["detectlang","excanvas.js"],"case-insensitive":true}]}]},{"id":"vigor300b","info":{"name":"vigor300b","author":"cn-kali-team","tags":"detect,tech,vigor300b","severity":"info","metadata":{"fofa-query":["\"excanvas.js\" && \"lang == \\\"zh-cn\\\"\" && \"detectlang\" && server==\"dws\""],"product":"vigor300b","vendor":"draytek","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["detectlang","excanvas.js"],"case-insensitive":true}]}]},{"id":"vigorconnect","info":{"name":"vigorconnect","author":"cn-kali-team","tags":"detect,tech,vigorconnect","severity":"info","metadata":{"fofa-query":["body=\"vigorconnect\""],"product":"vigorconnect","shodan-query":["http.html:\"vigorconnect\""],"vendor":"draytek","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["vigorconnect"],"case-insensitive":true}]}]},{"id":"h2","info":{"name":"h2","author":"cn-kali-team","tags":"detect,tech,h2","severity":"info","metadata":{"product":"h2","shodan-query":["http.favicon.hash:116323821"],"vendor":"h2database","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["116323821"]}]}]},{"id":"zzzcms","info":{"name":"zzzcms","author":"cn-kali-team","tags":"detect,tech,zzzcms","severity":"info","metadata":{"product":"zzzcms","vendor":"zzzcms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by <a href='http://zzzcms.com'>zzzcms</a>"],"case-insensitive":true}]}]},{"id":"osticket","info":{"name":"osticket","author":"cn-kali-team","tags":"detect,tech,osticket","severity":"info","metadata":{"product":"osticket","vendor":"osticket","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["href=\"http://osticket.com\">osticket.com"],"case-insensitive":true}]}]},{"id":"dokuwiki","info":{"name":"dokuwiki","author":"cn-kali-team","tags":"detect,tech,dokuwiki","severity":"info","metadata":{"product":"dokuwiki","vendor":"dokuwiki","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<div id=\"dokuwiki","content=\"dokuwiki","powered by dokuwiki"],"case-insensitive":true}]}]},{"id":"shopxo","info":{"name":"shopxo","author":"cn-kali-team","tags":"detect,tech,shopxo","severity":"info","metadata":{"fofa-query":["app=\"shopxo企业级b2c电商系统提供商\""],"product":"shopxo","shodan-query":["title:\"shopxo企业级b2c电商系统提供商\""],"vendor":"shopxo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>shopxo企业级b2c电商系统提供商.*?</title>"]},{"type":"favicon","hash":["6774ad0b380e1ffeee4e380352e51f15"]}]}]},{"id":"proxmox_mail_gateway","info":{"name":"proxmox_mail_gateway","author":"cn-kali-team","tags":"detect,tech,proxmox_mail_gateway","severity":"info","metadata":{"product":"proxmox_mail_gateway","shodan-query":["html:\"proxmox = {\""],"vendor":"proxmox","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["proxmox = {"],"case-insensitive":true}]}]},{"id":"prometheus","info":{"name":"prometheus","author":"cn-kali-team","tags":"detect,tech,prometheus","severity":"info","metadata":{"product":"prometheus","vendor":"prometheus","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>prometheus"],"case-insensitive":true}]}]},{"id":"jenkins","info":{"name":"jenkins","author":"cn-kali-team","tags":"detect,tech,jenkins","severity":"info","metadata":{"product":"jenkins","vendor":"jenkins","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-jenkins-session:","x-jenkins:"],"part":"header","condition":"and","case-insensitive":true},{"type":"favicon","hash":["23e8c7bd78e8cd826c5a6073b15068b1"]},{"type":"word","words":["jenkins-agent-protocols"],"case-insensitive":true}]}]},{"id":"gitlab_hook","info":{"name":"gitlab_hook","author":"cn-kali-team","tags":"detect,tech,gitlab_hook","severity":"info","metadata":{"fofa-query":["title=\"gitlab\""],"google-query":["intitle:\"gitlab\""],"product":"gitlab_hook","shodan-query":["http.title:\"gitlab\""],"vendor":"jenkins","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>gitlab.*?</title>"]}]}]},{"id":"git","info":{"name":"git","author":"cn-kali-team","tags":"detect,tech,git","severity":"info","metadata":{"product":"git","shodan-query":["x-jenkins"],"vendor":"jenkins","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["x-jenkins"],"case-insensitive":true}]}]},{"id":"profilepress","info":{"name":"profilepress","author":"cn-kali-team","tags":"detect,tech,profilepress","severity":"info","metadata":{"fofa-query":["body=\"/wp-content/plugins/profilepress\""],"product":"profilepress","vendor":"properfraction","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/wp-content/plugins/profilepress"],"case-insensitive":true}]}]},{"id":"bloofoxcms","info":{"name":"bloofoxcms","author":"cn-kali-team","tags":"detect,tech,bloofoxcms","severity":"info","metadata":{"fofa-query":["powered by bloofoxcms"],"product":"bloofoxcms","vendor":"bloofox","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by bloofoxcms"],"case-insensitive":true}]}]},{"id":"bloofox","info":{"name":"bloofox","author":"cn-kali-team","tags":"detect,tech,bloofox","severity":"info","metadata":{"fofa-query":["powered by bloofoxcms"],"product":"bloofox","vendor":"bloofox","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["powered by bloofoxcms"],"case-insensitive":true}]}]},{"id":"cobbler","info":{"name":"cobbler","author":"cn-kali-team","tags":"detect,tech,cobbler","severity":"info","metadata":{"fofa-query":["title=\"cobbler web interface\""],"google-query":["intitle:\"cobbler web interface\""],"product":"cobbler","shodan-query":["http.title:\"cobbler web interface\""],"vendor":"cobblerd","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>cobbler web interface.*?</title>"]}]}]},{"id":"openemr","info":{"name":"openemr","author":"cn-kali-team","tags":"detect,tech,openemr","severity":"info","metadata":{"fofa-query":["app=\"openemr\"","icon_hash=1971268439","body=\"openemr\"","title=\"openemr\""],"google-query":["intitle:\"openemr\""],"product":"openemr","shodan-query":["http.html:\"openemr\"","http.title:\"openemr\"","http.favicon.hash:1971268439"],"vendor":"openemr","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["openemr"],"case-insensitive":true},{"type":"favicon","hash":["1971268439"]}]}]},{"id":"opencart","info":{"name":"opencart","author":"cn-kali-team","tags":"detect,tech,opencart","severity":"info","metadata":{"fofa-query":["icon_hash=\"-1443008128\""],"product":"opencart","shodan-query":["title:\"opencart\""],"vendor":"opencart","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1443008128"]},{"type":"regex","regex":["(?mi)<title[^>]*>opencart.*?</title>"]}]}]},{"id":"trilium","info":{"name":"trilium","author":"cn-kali-team","tags":"detect,tech,trilium","severity":"info","metadata":{"fofa-query":["title=\"trilium notes\""],"google-query":["intitle:\"trilium notes\""],"product":"trilium","shodan-query":["title:\"trilium notes\"","http.title:\"trilium notes\""],"vendor":"trilium_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>trilium notes.*?</title>"]}]}]},{"id":"zoneminder","info":{"name":"zoneminder","author":"cn-kali-team","tags":"detect,tech,zoneminder","severity":"info","metadata":{"product":"zoneminder","vendor":"zoneminder","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["zoneminder login"],"case-insensitive":true}]}]},{"id":"dzzoffice","info":{"name":"dzzoffice","author":"cn-kali-team","tags":"detect,tech,dzzoffice","severity":"info","metadata":{"product":"dzzoffice","shodan-query":["http.html:\"dzzoffice\""],"vendor":"dzzoffice","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["dzzoffice"],"case-insensitive":true}]}]},{"id":"temenos","info":{"name":"temenos","author":"cn-kali-team","tags":"detect,tech,temenos","severity":"info","metadata":{"product":"temenos","shodan-query":["title:\"t24 sign in\""],"vendor":"temenos","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>t24 sign in.*?</title>"]}]}]},{"id":"t24","info":{"name":"t24","author":"cn-kali-team","tags":"detect,tech,t24","severity":"info","metadata":{"product":"t24","shodan-query":["title:\"t24 sign in\""],"vendor":"temenos","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>t24 sign in.*?</title>"]}]}]},{"id":"nvrmini_firmware","info":{"name":"nvrmini_firmware","author":"cn-kali-team","tags":"detect,tech,nvrmini_firmware","severity":"info","metadata":{"fofa-query":["title=\"nuuo\""],"product":"nvrmini_firmware","shodan-query":["title:\"nuuo\""],"vendor":"nuuo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>nuuo.*?</title>"]}]}]},{"id":"nvrsolo_firmware","info":{"name":"nvrsolo_firmware","author":"cn-kali-team","tags":"detect,tech,nvrsolo_firmware","severity":"info","metadata":{"fofa-query":["body=\"nvrsolo\""],"product":"nvrsolo_firmware","shodan-query":["http.html:\"nvrsolo\""],"vendor":"nuuo","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["nvrsolo"],"case-insensitive":true}]}]},{"id":"docusaurus_plugin_content_gists","info":{"name":"docusaurus_plugin_content_gists","author":"cn-kali-team","tags":"detect,tech,docusaurus_plugin_content_gists","severity":"info","metadata":{"fofa-query":["body=\"docusaurus\""],"product":"docusaurus_plugin_content_gists","shodan-query":["http.html:\"docusaurus\""],"vendor":"webbertakken","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["docusaurus"],"case-insensitive":true}]}]},{"id":"anything-llm","info":{"name":"anything-llm","author":"cn-kali-team","tags":"detect,tech,anything-llm","severity":"info","metadata":{"product":"anything-llm","shodan-query":["title:\"anythingllm\""],"vendor":"mintplex labs","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>anythingllm.*?</title>"]}]}]},{"id":"nexus","info":{"name":"nexus","author":"cn-kali-team","tags":"detect,tech,nexus","severity":"info","metadata":{"fofa-query":["title=\"nexus repository manager\""],"product":"nexus","vendor":"sonatype","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>nexus repository manager.*?</title>"]}]}]},{"id":"casbin","info":{"name":"casbin","author":"cn-kali-team","tags":"detect,tech","severity":"info","metadata":{"product":"casbin","vendor":"00_unknown","verified":false}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["<title>casdoor","casdoor/manifest.json"],"condition":"and","case-insensitive":true}]}]},{"id":"casdoor","info":{"name":"casdoor","author":"cn-kali-team","tags":"detect,tech,casdoor","severity":"info","metadata":{"fofa-query":["title=\"casdoor\""],"google-query":["intitle:\"casdoor\""],"product":"casdoor","shodan-query":["http.title:\"casdoor\""],"vendor":"casbin","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>casdoor.*?</title>"]}]}]},{"id":"dvr","info":{"name":"dvr","author":"cn-kali-team","tags":"detect,tech,dvr","severity":"info","metadata":{"fofa-query":["title=\"web viewer for samsung dvr\""],"google-query":["intitle:\"web viewer for samsung dvr\""],"product":"dvr","shodan-query":["http.title:\"web viewer for samsung dvr\""],"vendor":"argussurveillance","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>web viewer for samsung dvr.*?</title>"]}]}]},{"id":"tamronos","info":{"name":"tamronos","author":"cn-kali-team","tags":"detect,tech,tamronos","severity":"info","metadata":{"fofa-query":["title=\"tamronos iptv系统\""],"product":"tamronos","shodan-query":["title:\"tamronos iptv系统\""],"vendor":"tamronos","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>tamronos iptv系统.*?</title>"]}]}]},{"id":"telerik_report_server","info":{"name":"telerik_report_server","author":"cn-kali-team","tags":"detect,tech,telerik_report_server","severity":"info","metadata":{"product":"telerik_report_server","shodan-query":["title:\"log in | telerik report server\""],"vendor":"progress","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>log in.*?</title>"]}]}]},{"id":"moveit_cloud","info":{"name":"moveit_cloud","author":"cn-kali-team","tags":"detect,tech,moveit_cloud","severity":"info","metadata":{"fofa-query":["icon_hash=989289239"],"product":"moveit_cloud","shodan-query":["http.favicon.hash:989289239"],"vendor":"progress","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["989289239"]}]}]},{"id":"whatsup_gold","info":{"name":"whatsup_gold","author":"cn-kali-team","tags":"detect,tech,whatsup_gold","severity":"info","metadata":{"product":"whatsup_gold","shodan-query":["html:\"whatsup gold\"","title:\"whatsup gold\" http.favicon.hash:-2107233094"],"vendor":"progress","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["whatsup gold"],"case-insensitive":true},{"type":"regex","regex":["(?mi)<title[^>]*>whatsup gold\" http.favicon.hash:-2107233094.*?</title>"]}]}]},{"id":"ws_ftp_server","info":{"name":"ws_ftp_server","author":"cn-kali-team","tags":"detect,tech,ws_ftp_server","severity":"info","metadata":{"product":"ws_ftp_server","shodan-query":["title:\"ad hoc transfer\""],"vendor":"progress","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>ad hoc transfer.*?</title>"]}]}]},{"id":"moveit_transfer","info":{"name":"moveit_transfer","author":"cn-kali-team","tags":"detect,tech,moveit_transfer","severity":"info","metadata":{"fofa-query":["icon_hash=989289239"],"product":"moveit_transfer","shodan-query":["http.favicon.hash:989289239"],"vendor":"progress","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["989289239"]}]}]},{"id":"thinvnc","info":{"name":"thinvnc","author":"cn-kali-team","tags":"detect,tech,thinvnc","severity":"info","metadata":{"fofa-query":["icon_hash=-1414548363"],"product":"thinvnc","shodan-query":["http.favicon.hash:-1414548363"],"vendor":"cybelsoft","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1414548363"]}]}]},{"id":"mirth_connect","info":{"name":"mirth_connect","author":"cn-kali-team","tags":"detect,tech,mirth_connect","severity":"info","metadata":{"fofa-query":["title=\"mirth connect administrator\""],"google-query":["intitle:\"mirth connect administrator\""],"product":"mirth_connect","shodan-query":["title:\"mirth connect administrator\"","http.title:\"mirth connect administrator\""],"vendor":"nextgen","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>mirth connect administrator.*?</title>"]}]}]},{"id":"unified_threat_management","info":{"name":"unified_threat_management","author":"cn-kali-team","tags":"detect,tech,unified_threat_management","severity":"info","metadata":{"fofa-query":["title=\"securepoint utm\""],"google-query":["intitle:\"securepoint utm\""],"product":"unified_threat_management","shodan-query":["title:\"securepoint utm\"","http.title:\"securepoint utm\""],"vendor":"securepoint","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>securepoint utm.*?</title>"]}]}]},{"id":"apc-network-management-card","info":{"name":"apc-network-management-card","author":"cn-kali-team","tags":"detect,tech,apc-network-management-card","severity":"info","metadata":{"fofa-query":["title=\"apc | log on\""],"product":"apc-network-management-card","shodan-query":["title:\"apc | log on\""],"vendor":"schneider-electric","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>apc.*?</title>"]}]}]},{"id":"evlink_city_evc1s22p4_firmware","info":{"name":"evlink_city_evc1s22p4_firmware","author":"cn-kali-team","tags":"detect,tech,evlink_city_evc1s22p4_firmware","severity":"info","metadata":{"fofa-query":["title=\"evse web interface\""],"google-query":["intitle:\"evse web interface\""],"product":"evlink_city_evc1s22p4_firmware","shodan-query":["title:\"evse web interface\"","http.title:\"evse web interface\""],"vendor":"schneider-electric","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>evse web interface.*?</title>"]}]}]},{"id":"pelco_videoxpert","info":{"name":"pelco_videoxpert","author":"cn-kali-team","tags":"detect,tech,pelco_videoxpert","severity":"info","metadata":{"product":"pelco_videoxpert","shodan-query":["title:\"videoxpert\""],"vendor":"schneider-electric","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>videoxpert.*?</title>"]}]}]},{"id":"spacelogic_c-bus_home_controller_firmware","info":{"name":"spacelogic_c-bus_home_controller_firmware","author":"cn-kali-team","tags":"detect,tech,spacelogic_c-bus_home_controller_firmware","severity":"info","metadata":{"fofa-query":["body=\"spacelogic c-bus\""],"product":"spacelogic_c-bus_home_controller_firmware","shodan-query":["html:\"spacelogic c-bus\"","http.html:\"spacelogic c-bus\""],"vendor":"schneider-electric","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["spacelogic c-bus"],"case-insensitive":true}]}]},{"id":"swagger_ui","info":{"name":"swagger_ui","author":"cn-kali-team","tags":"detect,tech,swagger_ui","severity":"info","metadata":{"fofa-query":["icon_hash=\"-1180440057\""],"product":"swagger_ui","shodan-query":["http.component:\"swagger\"","http.favicon.hash:\"-1180440057\""],"vendor":"smartbear","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-1180440057"]}]}]},{"id":"loadmaster","info":{"name":"loadmaster","author":"cn-kali-team","tags":"detect,tech,loadmaster","severity":"info","metadata":{"product":"loadmaster","shodan-query":["html:\"kemp login screen\""],"vendor":"kemptechnologies","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["kemp login screen"],"case-insensitive":true}]}]},{"id":"d-copia253mf_plus_firmware","info":{"name":"d-copia253mf_plus_firmware","author":"cn-kali-team","tags":"detect,tech,d-copia253mf_plus_firmware","severity":"info","metadata":{"fofa-query":["icon_hash=-50306417"],"product":"d-copia253mf_plus_firmware","shodan-query":["http.favicon.hash:-50306417"],"vendor":"kyocera","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["-50306417"]}]}]},{"id":"h2o","info":{"name":"h2o","author":"cn-kali-team","tags":"detect,tech,h2o","severity":"info","metadata":{"fofa-query":["title=\"h2o flow\""],"google-query":["intitle:\"h2o flow\""],"product":"h2o","shodan-query":["title:\"h2o flow\"","http.title:\"h2o flow\""],"vendor":"h2o","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>h2o flow.*?</title>"]}]}]},{"id":"horizon","info":{"name":"horizon","author":"cn-kali-team","tags":"detect,tech,horizon","severity":"info","metadata":{"product":"horizon","shodan-query":["title:\"opennms web console\""],"vendor":"opennms","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>opennms web console.*?</title>"]}]}]},{"id":"tew-827dru_firmware","info":{"name":"tew-827dru_firmware","author":"cn-kali-team","tags":"detect,tech,tew-827dru_firmware","severity":"info","metadata":{"fofa-query":["body=\"tew-827dru\""],"product":"tew-827dru_firmware","shodan-query":["http.html:\"tew-827dru\""],"vendor":"trendnet","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["tew-827dru"],"case-insensitive":true}]}]},{"id":"pichome","info":{"name":"pichome","author":"cn-kali-team","tags":"detect,tech,pichome","severity":"info","metadata":{"fofa-query":["title=\"pichome\""],"product":"pichome","shodan-query":["title:\"pichome\""],"vendor":"zyx0814","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>pichome.*?</title>"]}]}]},{"id":"microweber","info":{"name":"microweber","author":"cn-kali-team","tags":"detect,tech,microweber","severity":"info","metadata":{"fofa-query":["body=\"microweber\"","icon_hash=780351152"],"product":"microweber","shodan-query":["http.favicon.hash:780351152","http.html:\"microweber\""],"vendor":"microweber","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["microweber"],"case-insensitive":true},{"type":"favicon","hash":["780351152"]}]}]},{"id":"jai-ext","info":{"name":"jai-ext","author":"cn-kali-team","tags":"detect,tech,jai-ext","severity":"info","metadata":{"fofa-query":["app=\"geoserver\""],"product":"jai-ext","shodan-query":["/geoserver/"],"vendor":"geosolutionsgroup","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["/geoserver/"],"case-insensitive":true}]}]},{"id":"etl3100","info":{"name":"etl3100","author":"cn-kali-team","tags":"detect,tech,etl3100","severity":"info","metadata":{"fofa-query":["body=\"etl3100\""],"product":"etl3100","shodan-query":["html:\"etl3100\""],"vendor":"eurotel","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["etl3100"],"case-insensitive":true}]}]},{"id":"viaware","info":{"name":"viaware","author":"cn-kali-team","tags":"detect,tech,viaware","severity":"info","metadata":{"fofa-query":["icon_hash=\"1521468900\""],"product":"viaware","vendor":"kramerav","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"favicon","hash":["1521468900"]}]}]},{"id":"cobbler","info":{"name":"cobbler","author":"cn-kali-team","tags":"detect,tech,cobbler","severity":"info","metadata":{"fofa-query":["title=\"cobbler web interface\""],"google-query":["intitle:\"cobbler web interface\""],"product":"cobbler","shodan-query":["http.title:\"cobbler web interface\""],"vendor":"cobbler_project","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>cobbler web interface.*?</title>"]}]}]},{"id":"controller","info":{"name":"controller","author":"cn-kali-team","tags":"detect,tech,controller","severity":"info","metadata":{"fofa-query":["title=\"aviatrix cloud controller\""],"google-query":["intitle:\"aviatrix cloud controller\""],"product":"controller","shodan-query":["http.title:\"aviatrix cloud controller\""],"vendor":"aviatrix","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"regex","regex":["(?mi)<title[^>]*>aviatrix cloud controller.*?</title>"]}]}]},{"id":"quantum_security_gateway","info":{"name":"quantum_security_gateway","author":"cn-kali-team","tags":"detect,tech,quantum_security_gateway","severity":"info","metadata":{"fofa-query":["body=\"check point ssl network\""],"product":"quantum_security_gateway","shodan-query":["html:\"check point ssl network\"","http.html:\"check point ssl network\""],"vendor":"checkpoint","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["check point ssl network"],"case-insensitive":true}]}]},{"id":"reliance","info":{"name":"reliance","author":"cn-kali-team","tags":"detect,tech,reliance","severity":"info","metadata":{"fofa-query":["body=\"etq reliance\""],"product":"reliance","shodan-query":["html:\"etq reliance\""],"vendor":"etq","verified":true}},"http":[{"method":"GET","path":["{{BaseURL}}/"],"matchers":[{"type":"word","words":["etq reliance"],"case-insensitive":true}]}]}] |