nuclei-templates/technologies/joomla-detect.yaml

54 lines
1.6 KiB
YAML
Raw Normal View History

2022-10-19 19:03:34 +00:00
id: joomla-detect
info:
name: Joomla! Detect
author: ricardomaia
severity: info
2022-10-21 09:43:50 +00:00
description: |
Joomla, also spelled Joomla! (with an exclamation mark) and sometimes abbreviated as J!, is a free and open-source content management system (CMS) for publishing web content on websites.
2022-10-19 19:03:34 +00:00
reference:
2022-10-21 09:43:50 +00:00
- https://www.joomla.org/
- https://github.com/joomla/joomla-cms
2022-10-19 19:03:34 +00:00
- https://www.itoctopus.com/how-to-quickly-know-the-version-of-any-joomla-website
- https://hackertarget.com/attacking-enumerating-joomla/
2022-10-21 09:43:50 +00:00
metadata:
verified: true
google-query: Joomla! Administration Login inurl:"/index.php" || intitle:"Joomla Web Installer"
2022-10-21 09:43:50 +00:00
tags: tech,joomla,cms,oss
2022-10-19 19:03:34 +00:00
requests:
2022-10-21 09:43:50 +00:00
- method:
2022-10-19 19:03:34 +00:00
path:
2022-10-21 09:43:50 +00:00
- "{{BaseURL}}" # >= 1.5.0 and <= 1.5.26
2022-10-19 19:03:34 +00:00
- "{{BaseURL}}/language/en-GB/en-GB.xml" # >= 1.5.0 and <= 1.5.26
- "{{BaseURL}}/administrator/manifests/files/joomla.xml" # >= 1.6.0
- "{{BaseURL}}/README.txt"
- "{{BaseURL}}/modules/custom.xml" # < 1.5.0
2022-10-21 09:43:50 +00:00
host-redirects: true
max-redirects: 2
2022-10-19 19:03:34 +00:00
stop-at-first-match: true
matchers-condition: or
matchers:
- type: regex
regex:
- '(?i)<meta.name="generator".content="(Joomla!).*/>'
- '(?i)Joomla_([\d.|\d]+)_version_history'
2022-10-21 09:43:50 +00:00
condition: or
- type: word
part: body
words:
- "<version>"
- "<creationDate>"
- "</metafile>"
condition: and
2022-10-19 19:03:34 +00:00
extractors:
- type: regex
name: version
part: body
group: 1
regex:
- "(?i)<version>(.*)</version>"
- '(?i)Joomla_([\d.|\d]+)_version_history'