diff --git a/http/misconfiguration/readarr-dashboard-unauth.yaml b/http/misconfiguration/readarr-dashboard-unauth.yaml
new file mode 100644
index 0000000000..b2e56b5177
--- /dev/null
+++ b/http/misconfiguration/readarr-dashboard-unauth.yaml
@@ -0,0 +1,38 @@
+id: readarr-dashboard-unauth
+
+info:
+ name: Readarr Dashboard - Unauthenticated
+ author: ProjectDiscoveryAI
+ severity: medium
+ description: |
+ Exposure of Readarr dashboard which can lead to sensitive information disclosure.
+ metadata:
+ verified: true
+ max-request: 1
+ shodan-query: html:"readarr"
+ tags: readarr,dashboard,unauth,misconfig
+
+http:
+ - method: GET
+ path:
+ - "{{BaseURL}}"
+
+ host-redirects: true
+ max-redirects: 2
+
+ matchers-condition: and
+ matchers:
+ - type: word
+ part: body
+ words:
+ - "
Readarr"
+
+ - type: word
+ part: body
+ words:
+ - "Login - Readarr"
+ negative: true
+
+ - type: status
+ status:
+ - 200
diff --git a/readarr-settings-indexers.yaml b/readarr-settings-indexers.yaml
deleted file mode 100644
index 2d906054a4..0000000000
--- a/readarr-settings-indexers.yaml
+++ /dev/null
@@ -1,25 +0,0 @@
-id: readarr-settings-indexers
-
-info:
- name: Readarr Settings Indexers Exposure
- author: ProjectDiscoveryAI
- severity: medium
- description: |
- This template checks for exposed Readarr indexer settings which can lead to sensitive information disclosure.
-
-http:
- - raw:
- - |
- GET /readarr/settings/indexers HTTP/1.1
- Host: {{Hostname}}
-
- matchers-condition: and
- matchers:
- - type: status
- status:
- - 200
- - type: word
- words:
- - "Readarr"
- - "Indexer"
- - "Settings"
\ No newline at end of file