Share
## https://sploitus.com/exploit?id=27FC6B3F-62A0-599C-90C9-2E8841DF4067
#dbe

**dbe** is a Python command-line tool that allows you to search and download exploits from [Exploit-DB](https://www.exploit-db.com). It supports CVE-based queries, filtering by programming language and exploit type, and even saving exploit code to custom files.

### โš™๏ธ Features

- Search exploits by keyword  
- Filter results by programming language and type  
- Search exploits by CVE code  
- Display direct links to Exploit-DB entries  
- Download exploit code directly  
- Save downloaded code to a file with custom extension  

### ๐Ÿ“ฆ Requirements

- Python 3.x  
- [pyxploitdb](https://pypi.org/project/pyxploitdb/)  
- [rich](https://pypi.org/project/rich/)  
- [requests](https://pypi.org/project/requests/)

Install dependencies with:

```bash
pip install pyxploitdb rich requests
```

### ๐Ÿ› ๏ธ Usage

```bash
python3 dbe.py -s  -l  -t  -n  -L
python3 dbe.py -C 
python3 dbe.py -d  -f -e 
```

### ๐Ÿ“˜ Examples

- Search for exploits related to "wordpress":
  ```bash
  python3 dbe.py -s wordpress -n 5 -L
  ```

- Search by CVE code:
  ```bash
  python3 dbe.py -C CVE-2021-44228
  ```

- Download an exploit and save it as a `.py` file:
  ```bash
  python3 dbe.py -d 12345 -f -e py
  ```

### ๐Ÿ“„ License

This project is licensed under the MIT License. Feel free to use, modify, and share it.
# dbe