Files
nuclei-templates/http/technologies/apache/apache-answer-detect.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":"([^"]+)"'