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

# Searchsploit

{% hint style="info" %}
**Searchsploit** é uma ferramenta para pesquisar rapidamente exploits conhecidos e arquivos relacionados a vulnerabilidades no **Exploit-DB** banco de dados. É usado na linha de comando e funciona offline, tornando-o uma ferramenta útil para pentesters que querem identificar exploits em sistemas vulneráveis.
{% endhint %}

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

#### **Busca Básica**

Você pode adicionar quantos termos de pesquisa quiser. Na imagem abaixo, estamos procurando exploits que contenham os termos "oracle" e "windows".

```bash
searchsploit windows oracle 
```

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

#### **Copiando o Exploit para a Área de Transferência e Diretório:**

Se você quiser copiar o exploit para a área de transferência, use "-p". Por exemplo: "searchsploit -p XYZ", onde XYZ é o ID do exploit. Se você quiser copiar o exploit para o seu diretório de trabalho atual, use "-m". Por exemplo: "searchsploit -m XYZ", onde XYZ é o ID do exploit

```
searchsploit -m 44553
```

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

#### **Examinar um Exploit**

Se você quiser examinar ou estudar um exploit, use "--examine". Por exemplo: "searchsploit XYZ --examine", onde XYZ é o ID do exploit.

```bash
searchsploit 44553 -examine
```

<figure><img src="/files/cbfad1b7a446aadd1f3650afe0326c29a1fb4d58" 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/pt-br/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.
