Added netflix-conductor template

patch-1
sandeep 2022-02-25 16:45:17 +05:30
parent 61f1eb28af
commit 324ff2acdf
2 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,29 @@
id: netflix-conductor-ui
info:
name: Netflix Conductor UI Detection
author: c-sh0
severity: info
metadata:
shodan-query: http.title:"Conductor UI", http.title:"Workflow UI"
tags: webserver,netflix,conductor,panel
requests:
- method: GET
path:
- "{{BaseURL}}"
redirects: true
max-redirects: 2
matchers-condition: and
matchers:
- type: status
status:
- 200
- type: word
part: body
words:
- '<title>Conductor UI</title>'
- '<title>Workflow UI</title>'
condition: or

View File

@ -0,0 +1,44 @@
id: netflix-conductor-version
info:
name: Netflix Conductor Version Detection
author: c-sh0
severity: info
description: Obtain netflix conductor version information
reference:
- https://github.com/Netflix/conductor/blob/v1.6.0-rc1/ui/src/server.js#L17
- https://github.com/Netflix/conductor/blob/v3.1.0/rest/src/main/java/com/netflix/conductor/rest/controllers/AdminResource.java#L42
metadata:
shodan-query: http.title:"Conductor UI", http.title:"Workflow UI"
tags: tech,netflix,conductor,api
requests:
- method: GET
path:
- "{{BaseURL}}/api/admin/config"
- "{{BaseURL}}/api/sys"
stop-at-first-match: true
matchers-condition: and
matchers:
- type: status
status:
- 200
- type: word
part: header
words:
- 'application/json'
- type: word
part: body
words:
- 'CONDUCTOR_'
case-insensitive: true
extractors:
- type: regex
group: 1
regex:
- 'conductor\-server\-([0-9.]+)\-'
- '"version":"([0-9.]+)\-'