2021-12-21 11:04:33 +00:00
|
|
|
id: tableau-server-detect
|
|
|
|
|
|
|
|
info:
|
|
|
|
name: Detect Tableau Server
|
|
|
|
author: TechbrunchFR
|
|
|
|
severity: info
|
2022-04-22 10:38:41 +00:00
|
|
|
description: Detects Tableau Server and extract the buildId
|
2021-12-21 11:04:33 +00:00
|
|
|
tags: tech,tableau
|
2023-04-28 08:11:21 +00:00
|
|
|
metadata:
|
|
|
|
max-request: 1
|
2021-12-21 11:04:33 +00:00
|
|
|
|
2023-04-27 04:28:59 +00:00
|
|
|
http:
|
2021-12-21 11:04:33 +00:00
|
|
|
- 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_]*)'
|