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-2018-15133-laravel-framework — Reproducible Docker lab for CVE-2018-15133 (Laravel Framework token unserialize RCE) with a known APP_KEY and a /poc route for testing exploit payloads. | Kitploit
Tools/GitHubGitHub/flame-11/cve-2018-15133-laravel-framework
Container SecurityVulnerability AnalysisExploitationWeb Application ExploitationLearning & EducationLabs & Practice
GitHubflame-11/cve-2018-15133-laravel-framework

CVE-2018-15133-laravel-framework

Reproducible Docker lab for CVE-2018-15133 (Laravel Framework token unserialize RCE) with a known APP_KEY and a /poc route for testing exploit payloads.

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository
58 months agoNot yet reviewed

CVE-2018-15133 - Laravel Framework (5.6.x) Vulnerable Lab

This repo provides a reproducible Docker lab for CVE-2018-15133 (Laravel Framework token unserialize RCE when APP_KEY is known).

The app is pinned to a vulnerable Laravel 5.6.x version and exposes a simple /poc POST route under the web middleware group so CSRF token parsing is triggered.

Quickstart

root@kitploit:~
docker compose up -d --build

Open:

  • http://localhost:18088/

Known APP_KEY

This lab uses a fixed APP_KEY (see env.example):

  • base64:C9keXyMoHkA4Rg40PHuuZakLSC5rpOF7myjb876DQv0=

Validate (example)

Use any PoC that crafts a Laravel-encrypted X-XSRF-TOKEN using the known APP_KEY (e.g. Nuclei template for CVE-2018-15133).

Example (from a nuclei-templates checkout):

root@kitploit:~
nuclei \
  -t http/cves/2018/CVE-2018-15133.yaml \
  -u http://localhost:18088 \
  -V app_key=base64:C9keXyMoHkA4Rg40PHuuZakLSC5rpOF7myjb876DQv0= \
  -nc

Cleanup

root@kitploit:~
docker compose down -v
Download Tool