From f959b69a5d258b8d7e6a43cdf3f923b2b444957f Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Mon, 28 Jun 2021 19:43:39 +0200 Subject: [PATCH] Add detection of KEYCLOAK See https://www.keycloak.org/ --- keycloak-panel.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 keycloak-panel.yaml diff --git a/keycloak-panel.yaml b/keycloak-panel.yaml new file mode 100644 index 0000000000..3a89fac6e5 --- /dev/null +++ b/keycloak-panel.yaml @@ -0,0 +1,24 @@ +id: keycloak-panel + +info: + name: Keycloak Instance Detection Template + author: righettod + severity: info + description: Try to detect the presence of a Keycloak instance via the login panel + tags: panel,keycloak + +requests: + - method: GET + path: + - "{{BaseURL}}/auth/admin" + redirects: true + + matchers-condition: and + matchers: + - type: word + words: + - "keycloak" + + - type: status + status: + - 200 \ No newline at end of file