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
5MMISSI-CVE-2017-1000499 — Proof-of-concept exploit for CVE-2017-1000499, a CSRF vulnerability in phpMyAdmin, demonstrating harmful database operations via crafted URLs. | Kitploit
Tools/GitHubGitHub/villaquiranm/5mmissi-cve-2017-1000499
Vulnerability AnalysisExploitationWeb Application ExploitationLearning & EducationLabs & Practice
GitHubvillaquiranm/5mmissi-cve-2017-1000499

5MMISSI-CVE-2017-1000499

Proof-of-concept exploit for CVE-2017-1000499, a CSRF vulnerability in phpMyAdmin, demonstrating harmful database operations via crafted URLs.

View Repository
37 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

5MMISSI-CVE-2017-1000499

PoC of CVE-2017-1000499

phpMyAdmin versions 4.7.x (prior to 4.7.6.1/4.7.7) are vulnerable to a CSRF weakness. By deceiving a user to click on a crafted URL, it is possible to perform harmful database operations such as deleting records, dropping/truncating tables etc.

Contents

  • Makefile
  • web/index.html

Instructions

Getting all prepared

root@kitploit:~
git clone https://github.com/Villaquiranm/5MMISSI-CVE-2017-1000499.git
cd 5MMISSI-CVE-2017-1000499/

Building docker enviroment

To build both containers you only need to type a single command.

root@kitploit:~
make create

At this point it is necessary to wait because php server and database need to be configurated. This delay is approximately one minute after a successful build.

Experimenting with your exploid

  1. First go to Localhost.

  2. Type root as user and password. (if you get an error it is because server is still configurating itself).

  3. Observe carefully all your database schemas.

  4. Assuming you are still in this repository. We will create a Python server to exploit this vulnerability.

root@kitploit:~
cd web/
python -m SimpleHTTPServer 8888
  1. Go to Localhost:8888.
  2. Reaload your database page (localhost).

Destroying docker enviroment

root@kitploit:~
make clean
Download Tool