Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2014-6287 — Rejetto http File Server 2.3.x (Reverse shell) | Kitploit
Tools/GitHubGitHub/10cks/cve-2014-6287
Payload GenerationExploitationWeb Application ExploitationPenetration TestingCommand and ControlRed Teaming
GitHub10cks/cve-2014-6287

CVE-2014-6287

Rejetto http File Server 2.3.x (Reverse shell)

View Repository
32 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Poc exploit(bash script)

bash.webm

About the exploit

You can get reverse shell with .sh file (in Linux)
You can get reverse shell with .py file in (Windows and Linux) (in windows, you need to install netcat)

You must specify the url

example: http://target.com/

  • using for .py:
    python exploit.py

  • using for .sh:
    chmod +x exploit.sh
    ./exploit.sh

Exploit Title: CVE-2014-6287 | Reverse shell for (Rejetto http File Server 2.3.x)

Author: Tabun

POC part 1:

(without exploit,long explanation, a lot of details)

terminal

  1. To use this vulnerability, we first need a powershell reverse shell. As you can see,
    we converted it to "UTF-16LE" format with the iconv tool and parse it as hexadecimal with the xxd tool.

  2. We can take a long look at this with xxd, but we need the raw hex code,
    so we converted it to "UTF-16LE" format again and we got raw hex codes using the hexdump tool.

Download Tool
  • Finally, we converted the raw hex codes into our part of payload with base64 encode (xxd and base64 were used)

  • POC part 2:

    (without exploit,long explanation, a lot of details)

    burp

    1. Using ?search with %00, we specified the Powershell path,
      entered the base64 code and break the system with netcat.