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

# Searchsploit

{% hint style="info" %}
**Searchsploit** es una herramienta para buscar rápidamente exploits conocidos y archivos relacionados con vulnerabilidades de **Exploit-DB** la base de datos. Se utiliza en la línea de comandos y funciona sin conexión, lo que lo convierte en una herramienta útil para pentesters que desean identificar exploits en sistemas vulnerables.
{% endhint %}

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

#### **Búsqueda básica**

Puedes añadir tantos términos de búsqueda como quieras. En la imagen de abajo, estamos buscando exploits que contengan los términos "oracle" y "windows".

```bash
searchsploit windows oracle 
```

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

#### **Copiar exploit al portapapeles y al directorio:**

Si quieres copiar el exploit al portapapeles, usa "-p". Por ejemplo: "searchsploit -p XYZ", donde XYZ es el ID del exploit. Si quieres copiar el exploit a tu directorio de trabajo actual, usa "-m". Por ejemplo: "searchsploit -m XYZ", donde XYZ es el ID del exploit

```
searchsploit -m 44553
```

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

#### **Examinar un exploit**

Si quieres examinar o estudiar un exploit, usa "--examine". Por ejemplo: "searchsploit XYZ --examine", donde XYZ es el ID del exploit.

```bash
searchsploit 44553 -examine
```

<figure><img src="/files/b029142029826c2d4ed793cc7f92d82ee60f0243" 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/es/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.
