> 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/permissions/etc-passwd-write-abuse-linux-privilege-escalation.md).

# Злоупотребление записью в /etc/passwd — повышение привилегий в Linux

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

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

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

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

```bash
find / -writable 2>/dev/null
ls -la /etc/passwd /etc/shadow 2>/dev/null
```

## Примеры

Если мы отфильтруем файлы по \*\*возможности записи\*\* в системе, то /etc/passwd

```bash
find / -writable 2>/dev/null
```

<figure><img src="/files/2fce2ad98c5221346c8b9a15d762394b64e03f9d" alt=""><figcaption></figcaption></figure>

<div data-full-width="true"><figure><img src="/files/0903613ef0b6ac977fd4ba846daa7642ed572c56" alt=""><figcaption></figcaption></figure></div>

С **openssl**, если мы создадим пароль, он преобразует его в SSL-формат

```bash
openssl passwd
```

<div data-full-width="true"><figure><img src="/files/618a07f3d034eef6362cc72f6edb1bb27a44ff9c" alt=""><figcaption></figcaption></figure></div>

Мы вставляем эту строку для пользователя root, и система прочитает её из /etc/passwd раньше, чем из /etc/shadow:

<figure><img src="/files/450ae15931f735219757df5c8d84f9de0d0aa7a9" 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/permissions/etc-passwd-write-abuse-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.
