From 8a52bf2b96c8814c9edc75f03eeede16d70c527e Mon Sep 17 00:00:00 2001 From: sandeep Date: Sat, 20 Nov 2021 16:12:26 +0530 Subject: [PATCH] matchers/template updates for MinIO --- exposed-panels/minio-browser.yaml | 24 ++++++++++++++++++++++ exposed-panels/minio-console-detect.yaml | 24 ---------------------- exposed-panels/minio-console.yaml | 26 ++++++++++++++++++++++++ exposed-panels/minio-detect.yaml | 23 --------------------- 4 files changed, 50 insertions(+), 47 deletions(-) create mode 100644 exposed-panels/minio-browser.yaml delete mode 100644 exposed-panels/minio-console-detect.yaml create mode 100644 exposed-panels/minio-console.yaml delete mode 100644 exposed-panels/minio-detect.yaml diff --git a/exposed-panels/minio-browser.yaml b/exposed-panels/minio-browser.yaml new file mode 100644 index 0000000000..9e3e731a92 --- /dev/null +++ b/exposed-panels/minio-browser.yaml @@ -0,0 +1,24 @@ +id: minio-browser + +info: + name: MinIO Browser + author: pikpikcu + severity: info + tags: panel,minio + metadata: + shodan-query: title:"MinIO Browser" + +requests: + - method: GET + path: + - "{{BaseURL}}/minio/login" + + matchers-condition: and + matchers: + - type: dsl + dsl: + - "contains(tolower(body), 'minio browser')" + + - type: status + status: + - 200 \ No newline at end of file diff --git a/exposed-panels/minio-console-detect.yaml b/exposed-panels/minio-console-detect.yaml deleted file mode 100644 index 81f642876b..0000000000 --- a/exposed-panels/minio-console-detect.yaml +++ /dev/null @@ -1,24 +0,0 @@ -id: minio-console-detect - -info: - name: MinIO Console Detection - author: pussycat0x - severity: info - tags: panel,minio - metadata: - fofa-query: 'app="MinIO-Console"' - -requests: - - method: GET - path: - - "{{BaseURL}}/login" - - matchers-condition: and - matchers: - - type: word - words: - - 'MinIO Console' - - - type: status - status: - - 200 diff --git a/exposed-panels/minio-console.yaml b/exposed-panels/minio-console.yaml new file mode 100644 index 0000000000..b410e84a5c --- /dev/null +++ b/exposed-panels/minio-console.yaml @@ -0,0 +1,26 @@ +id: minio-console + +info: + name: MinIO Console + author: pussycat0x + severity: info + tags: panel,minio + metadata: + fofa-query: app="MinIO-Console" + shodan-query: title:"MinIO Console" + +requests: + - method: GET + path: + - "{{BaseURL}}/login" + + matchers-condition: and + matchers: + + - type: dsl + dsl: + - "contains(tolower(body), 'minio console')" + + - type: status + status: + - 200 \ No newline at end of file diff --git a/exposed-panels/minio-detect.yaml b/exposed-panels/minio-detect.yaml deleted file mode 100644 index c7c29a31f4..0000000000 --- a/exposed-panels/minio-detect.yaml +++ /dev/null @@ -1,23 +0,0 @@ -id: minio-detect - -info: - name: Minio panel detect - author: pikpikcu - severity: info - tags: panel - -requests: - - method: GET - path: - - "{{BaseURL}}/minio/login" - matchers-condition: and - matchers: - - type: word - words: - - "MinIO Browser" - - "Minio Browser" - part: body - condition: or - - type: status - status: - - 200