mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-16 23:53:28 +08:00
45 lines
840 B
YAML
45 lines
840 B
YAML
id: apache-answer-detect
|
|
|
|
info:
|
|
name: Apache Answer - Detection
|
|
author: omranisecurity
|
|
severity: info
|
|
description: |
|
|
Detects Apache Answer version through API endpoit
|
|
reference:
|
|
- https://answer.apache.org/
|
|
metadata:
|
|
shodan-query: html:"Apache Answer"
|
|
fofa-query: body="Apache Answer"
|
|
verified: true
|
|
max-request: 1
|
|
tags: detect,tech,apache
|
|
|
|
http:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}/answer/api/v1/siteinfo"
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- '"code":'
|
|
|
|
- type: word
|
|
part: header
|
|
words:
|
|
- application/json
|
|
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|
|
extractors:
|
|
- type: regex
|
|
part: body
|
|
name: version
|
|
regex:
|
|
- '"version":"([^"]+)"'
|