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

# Searchsploit

{% hint style="info" %}
**Searchsploit** est un outil permettant de rechercher rapidement des exploits connus et des fichiers liés aux vulnérabilités dans la **Exploit-DB** base de données. Il est utilisé en ligne de commande et fonctionne hors ligne, ce qui en fait un outil pratique pour les pentesters souhaitant identifier des exploits sur des systèmes vulnérables.
{% endhint %}

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

#### **Recherche de base**

Vous pouvez ajouter autant de termes de recherche que vous le souhaitez. Dans l'image ci-dessous, nous recherchons des exploits contenant les termes « oracle » et « windows ».

```bash
searchsploit windows oracle 
```

<figure><img src="/files/3e48736991ac06da215640113df1807e1b8bbfdf" alt=""><figcaption></figcaption></figure>

#### **Copie de l'exploit dans le presse-papiers et le répertoire :**

Si vous souhaitez copier l'exploit dans le presse-papiers, utilisez « -p ». Par exemple : « searchsploit -p XYZ », où XYZ est l'ID de l'exploit. Si vous souhaitez copier l'exploit dans votre répertoire de travail actuel, utilisez « -m ». Par exemple : « searchsploit -m XYZ », où XYZ est l'ID de l'exploit

```
searchsploit -m 44553
```

<figure><img src="/files/95c99b4d51664d390a24318b91eea29a514b8735" alt=""><figcaption></figcaption></figure>

#### **Examiner un exploit**

Si vous souhaitez examiner ou étudier un exploit, utilisez « --examine ». Par exemple : « searchsploit XYZ --examine », où XYZ est l'ID de l'exploit.

```bash
searchsploit 44553 -examine
```

<figure><img src="/files/3f5901ae23e7273504b780133336e4fe591407e9" 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/fr/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.
