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>
This commit is contained in:
Techbrunch
2021-12-21 12:04:33 +01:00
committed by GitHub
parent 1619ee4566
commit d63a927fce

View File

@@ -0,0 +1,36 @@
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_]*)'