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>patch-1
parent
1619ee4566
commit
d63a927fce
|
@ -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_]*)'
|
Loading…
Reference in New Issue