mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-16 19:40:37 +03:00
Fixing a special case (capitalized UNION response)
This commit is contained in:
parent
e03404283c
commit
f0194a8814
|
@ -95,6 +95,11 @@ def _oneShotUnionUse(expression, unpack=True, limited=False):
|
||||||
# Perform the request
|
# Perform the request
|
||||||
page, headers, _ = Request.queryPage(payload, content=True, raise404=False)
|
page, headers, _ = Request.queryPage(payload, content=True, raise404=False)
|
||||||
|
|
||||||
|
if page and kb.chars.start.upper() in page and kb.chars.start not in page:
|
||||||
|
singleTimeWarnMessage("results seems to be upper-cased by force. sqlmap will automatically lower-case them")
|
||||||
|
|
||||||
|
page = page.lower()
|
||||||
|
|
||||||
incrementCounter(PAYLOAD.TECHNIQUE.UNION)
|
incrementCounter(PAYLOAD.TECHNIQUE.UNION)
|
||||||
|
|
||||||
if kb.jsonAggMode:
|
if kb.jsonAggMode:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user