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
Tools/GitHubGitHub/yousseflahouifi/dbdtct
Vulnerability ScannersWeb SecurityPenetration TestingMisconfiguration
GitHubyousseflahouifi/dbdtct

dbdtct

Python-based scanner that detects debug mode misconfigurations in web applications using multiple HTTP methods and fingerprinting techniques to identify exposed sensitive information.

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

dbgdtct

Desctiption

dbgdtct is a Python-based tool designed to help you detect if a web application is deployed in debug mode—a critical misconfiguration that can expose sensitive information and increase the risk of exploitation in production environments.

Installation

root@kitploit:~
git clone https://github.com/yousseflahouifi/dbdtct.git

setup

Create a virtual environnement

root@kitploit:~
python3 -m venv myenv
source myenv/bin/activate

install packages

root@kitploit:~
pip3 install aiohttp requests

Usage

To scan a single target application

root@kitploit:~
python dbdtct.py -u https://target.com 

To scan multiple targets and URLs

root@kitploit:~
python dbdtct.py -l list.txt

example

root@kitploit:~
python dbdtct.py -u https://target.com

  ,--.,--.      ,--.  ,--.          ,--.   
 ,-|  ||  |-.  ,-|  |,-'  '-. ,---.,-'  '-. 
' .-. || .-. '' .-. |'-.  .-'| .--''-.  .-' 
\ `-' || `-' |\ `-' |  |  |  \ `--.  |  |   
 `---'  `---'  `---'   `--'   `---'  `--'   
            dbdtct — Web Debug Mode Detection Tool
            Created by: Youssef Lahouifi
            Supervised by : Redouan Korchiyne
            
[ Debug Mode Scanner - Test various methods to detect debug mode ]

[*] Starting scan at 2025-04-12 23:01:12
[*] Testing 1 target(s)

[+] Potential Debug Mode Detected on https://target.com
    -> Technique: HTTP Method POST
    -> Fingerprint: Symfony\Component\
    -> Technique: HTTP Method PUT
    -> Fingerprint: Symfony\Component\
    -> Technique: Malformed JSON ({"foo":"bar")
    -> Fingerprint: Symfony\Component\

[*] Scan Summary:
    -> Completed in: 7.35 seconds
    -> Targets scanned: 1
    -> Vulnerable targets: 1
    -> Success rate: 100.0%

Limitation and things to improve

  • Slow
  • doesnt contain all patterns , it might miss vulnerabilities
  • False positive in some cases
Download Tool