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

# Injeção Básica de Template no Lado do Servidor em Ruby

### Injeção básica de template no lado do servidor

A aplicação usa templates ERB sem proteção, tornando-a vulnerável a uma **Injeção de Modelo no Lado do Servidor (SSTI)**./ O objetivo é executar código arbitrário para **excluir arquivo** `morale.txt` localizado na pasta inicial de Carlos\:/ `/home/carlos/morale.txt`.

#### 1. Identificação do parâmetro vulnerável

Encontramos um `mensagem` parâmetro na aplicação que **reflete nossa entrada** diretamente na página. / Este campo será usado para injetar código ERB.

<figure><img src="/files/9fe19b18d387b7fc2e12ba12918e42d46344be49" alt=""><figcaption></figcaption></figure>

#### 2. Verificar execução de código (teste com 7/\*7)

Uma expressão Ruby simples é injetada para confirmar a SSTI:

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

Se a vulnerabilidade estiver presente, a saída exibirá:

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

Isso prova que a expressão Ruby é avaliada no template do lado do servidor.

#### 3. Ler um arquivo sensível: `/etc/passwd`

Depois que a execução for confirmada, tente ler um arquivo do sistema para validar o acesso ao sistema de arquivos:

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

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

O conteúdo de `/etc/passwd` é então retornado na resposta, confirmando que você pode ler arquivos no servidor.

#### 4. Excluir Carlos `morale.txt` Arquivo

Para finalizar o laboratório, execute um comando de sistema para excluir o arquivo solicitado:

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

Esta injeção inicia o `rm` comando no lado do servidor e remove o `morale.txt` arquivo em `/home/carlos/` diretório.


---

# 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/pt-br/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.
