From bac5c7a866a9fde74454e0fb3406c2cac2f4be4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=AF=92?= <57119052+For3stCo1d@users.noreply.github.com> Date: Mon, 18 Apr 2022 23:01:15 +0800 Subject: [PATCH] Create openwrt-default-login.yaml (#4038) * Create openwrt-default-login.yaml * Update and rename default-logins/openwrt/openwrt-default-login.yaml to exposed-panels/openwrt-login.yaml * misc update * minor matcher update Co-authored-by: Prince Chaddha Co-authored-by: sandeep --- exposed-panels/openwrt-login.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 exposed-panels/openwrt-login.yaml diff --git a/exposed-panels/openwrt-login.yaml b/exposed-panels/openwrt-login.yaml new file mode 100644 index 0000000000..e783dd198d --- /dev/null +++ b/exposed-panels/openwrt-login.yaml @@ -0,0 +1,30 @@ +id: openwrt-login + +info: + name: Opentwrt Login Detect + author: For3stCo1d + severity: info + reference: https://openwrt.org + metadata: + shodan-query: http.title:"OpenWrt - LuCI" + tags: openwrt,default-login,router + +requests: + - method: GET + path: + - "{{BaseURL}}" + + redirects: true + max-redirects: 2 + matchers: + - type: word + part: body + words: + - 'OpenWrt' + + extractors: + - type: regex + part: body + group: 1 + regex: + - '(?i)OpenWrt ([A-Z0-9.]+)' \ No newline at end of file