Files
nuclei-templates/technologies/tableau-server-detect.yaml
Techbrunch d63a927fce Add Tableau Server detection (#3387)
* Add Tableau Server detection

* fix: lint error

* update: matcher updates

* added group extractors

Co-authored-by: anonymous <anonymous>
Co-authored-by: sandeep <sandeep@projectdiscovery.io>
2021-12-21 16:34:33 +05:30

37 lines
690 B
YAML

id: tableau-server-detect
info:
name: Detect Tableau Server
author: TechbrunchFR
description: Detects Tableau Server and extract the buildId
severity: info
tags: tech,tableau
requests:
- method: GET
path:
- "{{BaseURL}}"
matchers-condition: or
matchers:
- type: word
part: header
words:
- "X-Tableau: Tableau Server"
- "Server: Tableau"
condition: or
- type: word
part: body
words:
- "VizPortalRun"
- "vizportal"
condition: or
extractors:
- type: regex
part: body
group: 1
regex:
- 'data-buildId="([0-9a-z_]*)'