> For the complete documentation index, see [llms.txt](https://book.ice-wzl.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://book.ice-wzl.xyz/recon-enumeration/exploit-research.md).

# Exploit Research

## Top Resources

* <https://attackerkb.com/>
* <https://ippsec.rocks/?#>
* Google the service and add exploit to the end!!!

## Search services vulnerabilities

```
searchsploit --exclude=dos -t apache 2.2.3
msfconsole; > search apache 2.2.3
```

### CVE Database

```
https://cve.mitre.org/cve/search_cve_list.html
```

### National Vulnerability Database (NVD)

* U.S. Government Repository of standards based vulnerability management data represented using the Security Content Automation Protocol.

```
https://nvd.mist.gov/
https://nvd.nist.gov/general/visualizations
```

* To show a visualization of CVSS’s Severity over time.

```
https://nvd.nist.gov/vuln/data-feeds
```

### CVE Details

```
https://www.cvedetails.com
```

### Exploit Database

* Search by CVE and OSVDB identifier.

```
https://www.exploit-db.com
```

### Searchsploit by Exploit-db

* Offline source for finding vulnerabilities and exploits.
* To update the database:

```
searchsploit -u
searchsploit 
searchsploit [key word or service/service version]
```

* Copy a searchsploit result to your present working directory

```
searchsploit -m 39446 win_x86-64/local/39525.py
```

* Alternative copy method

```
locate 35513.py 
cp /usr/share/exploitdb/platforms/linux/remote/35513.py /root/Desktop/35513.py
```

* Exclude certain results like DOS or POC

```
searchsploit linux kernel 3.2 --exclude="(PoC)|/dos/"
```

* Can print the file for an exploit

```
cat /usr/share/exploitdb/exploits/linux/remote/16922.rb
```

* Exact match to your keyword input

```
searchsploit -e  
```

* Always start with specific and move to more general

## Working with exploits

* Shebang

```
Python #!/usr/bin/python
Bash #!/bin/bash
Bourne shell #!/bin/sh
Perl #!/usr/bin/perl
```


---

# 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://book.ice-wzl.xyz/recon-enumeration/exploit-research.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.
