An open API service indexing awesome lists of open source software.

https://github.com/0xtas/cve-2012-2982

An exploit for CVE-2012-2982 implemented in Rust
https://github.com/0xtas/cve-2012-2982

cve-2012-2982 exploit poc rust tryhackme

Last synced: 20 days ago
JSON representation

An exploit for CVE-2012-2982 implemented in Rust

Awesome Lists containing this project

README

          

**This PoC exploit for CVE-2012-2982 was written as an exercise for the "Intro to PoC scripting" Room on TryHackMe**.

The room can be found here: https://tryhackme.com/room/intropocscripting

I was originally going to use Python to follow along, but decided to practice my Rust skills instead.

I also saw that nearly every single non-Metasploit implementation on Github was in Python,
so I figured that bringing something new to the table might be fun.

---

### Usage

**Note:** The program spawns a Netcat listener by default.
If Netcat isn't in your path, or you want to run your own listener, run the program with the `-d` flag.

**From Source (Rust and Cargo required):**

```bash
# To get detailed info about arguments:
cargo run -- --help

# General command structure:
cargo run -- [options]
```

**From Binary:**

```bash
# To get detailed info about arguments:
./cve-2012-2982 --help

# General command structure:
./cve-2012-2982 [options]
```

**Program defaults:**

1. rport=10000 (Webmin's default)

2. lport=1337

3. payload = generic bash tcp reverse shell

---