deletion of duplicate raised in #6182

patch-1
Dhiyaneshwaran 2023-04-21 17:53:05 +05:30
parent 4bff503713
commit 38af41cb8e
2 changed files with 0 additions and 114 deletions

View File

@ -1,28 +0,0 @@
id: eol-magento
info:
name: Magento End-of-life Detect
author: dogancanbakir
severity: info
description: |
Magento end of life detection.
reference:
- https://www.magento.com/
classification:
cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N
cvss-score: 0.0
cwe-id: CWE-200
metadata:
verified: true
shodan-query: http.component:"Magento"
tags: tech,magento,cms
requests:
- method: GET
path:
- "{{BaseURL}}"
matchers:
- type: dsl
dsl:
- "compare_versions(version, '=2.4')"

View File

@ -1,86 +0,0 @@
id: magento-version-detect
info:
name: Magento Version Detect
author: sullo,dogancanbakir
severity: info
description: |
Magento version detection via version module and copyright text.
reference:
- https://www.magento.com/
- https://magento.stackexchange.com/a/62966
classification:
cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N
cvss-score: 0.0
cwe-id: CWE-200
metadata:
verified: true
shodan-query: http.component:"Magento"
tags: tech,magento,cms
requests:
- raw:
- |
GET /magento_version HTTP/1.1
Host: {{Hostname}}
- |
GET /skin/frontend/default/default/css/styles.css HTTP/1.1
Host: {{Hostname}}
matchers-condition: or
matchers:
- type: regex
regex:
- '^Magento/.*$'
- type: word
name: magento-1.9
words:
- "Copyright (c) 2014 Magento Inc."
- type: word
name: magento-1.8
words:
- "Copyright (c) 2013 Magento Inc."
- type: word
name: magento-1.7
words:
- "Copyright (c) 2012 Magento Inc."
- type: word
name: magento-1.6
words:
- "Copyright (c) 2011 Magento Inc."
- type: word
name: magento-1.4.1-1.5
words:
- "Copyright (c) 2010 Magento Inc."
- type: word
name: magento-1.4.0
words:
- "Copyright (c) 2009 Irubin Consulting Inc."
- type: word
name: magento-1.0-1.3
words:
- "Copyright (c) 2008 Irubin Consulting Inc."
extractors:
- type: regex
part: body
regex:
- "Magento.*$"
- type: regex
part: body
group: 1
name: version
regex:
- 'Magento\/([0-9.]+) '
# Enhanced by dcb 2022/11/29