> 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/hacking-tools/exploitation/searchsploit.md).

# Searchsploit

{% hint style="info" %}
**Searchsploit** это инструмент для быстрого поиска известных эксплойтов и файлов, связанных с уязвимостями, в **Exploit-DB** базе данных. Он используется из командной строки и работает офлайн, что делает его удобным инструментом для пентестеров, желающих выявлять эксплойты на уязвимых системах.
{% endhint %}

{% embed url="<https://www.exploit-db.com/searchsploit>" %}

#### **Базовый поиск**

Вы можете добавить столько поисковых запросов, сколько хотите. На изображении ниже мы ищем эксплойты, содержащие термины "oracle" и "windows".

```bash
searchsploit windows oracle 
```

<figure><img src="/files/5d527b914b6c6392cbde41227365f05886676256" alt=""><figcaption></figcaption></figure>

#### **Копирование эксплойта в буфер обмена и каталог:**

Если вы хотите скопировать эксплойт в буфер обмена, используйте "-p". Например: "searchsploit -p XYZ", где XYZ — идентификатор эксплойта. Если вы хотите скопировать эксплойт в текущий рабочий каталог, используйте "-m". Например: "searchsploit -m XYZ", где XYZ — идентификатор эксплойта

```
searchsploit -m 44553
```

<figure><img src="/files/6ec4d28d5289c34ff65472b4443ad766d46caae1" alt=""><figcaption></figcaption></figure>

#### **Изучение эксплойта**

Если вы хотите изучить эксплойт, используйте "--examine". Например: "searchsploit XYZ --examine", где XYZ — идентификатор эксплойта.

```bash
searchsploit 44553 -examine
```

<figure><img src="/files/57806f505b9be125113d856c78d4949674f404d0" 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/hacking-tools/exploitation/searchsploit.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.
