From d63a927fcefd1709a8191f36c88b6cdf2ff062cf Mon Sep 17 00:00:00 2001 From: Techbrunch Date: Tue, 21 Dec 2021 12:04:33 +0100 Subject: [PATCH] Add Tableau Server detection (#3387) * Add Tableau Server detection * fix: lint error * update: matcher updates * added group extractors Co-authored-by: anonymous Co-authored-by: sandeep --- technologies/tableau-server-detect.yaml | 36 +++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 technologies/tableau-server-detect.yaml diff --git a/technologies/tableau-server-detect.yaml b/technologies/tableau-server-detect.yaml new file mode 100644 index 0000000000..9fa2f2373c --- /dev/null +++ b/technologies/tableau-server-detect.yaml @@ -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_]*)'