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

# Searchsploit

{% hint style="info" %}
**Searchsploit** ist ein Tool, um schnell nach bekannten Exploits und schwachstellenbezogenen Dateien aus der **Exploit-DB** Datenbank zu suchen. Es wird in der Kommandozeile verwendet und funktioniert offline, was es zu einem praktischen Werkzeug für Pentester macht, die Exploits auf verwundbaren Systemen identifizieren möchten.
{% endhint %}

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

#### **Grundlegende Suche**

Sie können beliebig viele Suchbegriffe hinzufügen. Im Bild unten suchen wir nach Exploits, die die Begriffe „oracle“ und „windows“ enthalten.

```bash
searchsploit windows oracle 
```

<figure><img src="/files/84eb66884bd656635c7e3d434de585e5d4055ca1" alt=""><figcaption></figcaption></figure>

#### **Kopieren des Exploits in die Zwischenablage und ins Verzeichnis:**

Wenn Sie den Exploit in die Zwischenablage kopieren möchten, verwenden Sie „-p“. Zum Beispiel: „searchsploit -p XYZ“, wobei XYZ die Exploit-ID ist. Wenn Sie den Exploit in Ihr aktuelles Arbeitsverzeichnis kopieren möchten, verwenden Sie „-m“. Zum Beispiel: „searchsploit -m XYZ“, wobei XYZ die Exploit-ID ist

```
searchsploit -m 44553
```

<figure><img src="/files/33908b0e885e012da7c459d54ca12e503c35c379" alt=""><figcaption></figcaption></figure>

#### **Einen Exploit untersuchen**

Wenn Sie einen Exploit untersuchen oder studieren möchten, verwenden Sie „--examine“. Zum Beispiel: „searchsploit XYZ --examine“, wobei XYZ die Exploit-ID ist.

```bash
searchsploit 44553 -examine
```

<figure><img src="/files/1f20bc13eb2724b56402678c7af638db574a59cb" 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/de/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.
