mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-08 09:24:01 +01:00
Displaying hex-decoded resulting output in --hex mode
This commit is contained in:
parent
029143880a
commit
b913e2123d
1 changed files with 2 additions and 0 deletions
|
|
@ -770,6 +770,8 @@ class Agent:
|
||||||
return limitedQuery
|
return limitedQuery
|
||||||
|
|
||||||
def forgeQueryOutputLength(self, expression):
|
def forgeQueryOutputLength(self, expression):
|
||||||
|
import pdb
|
||||||
|
pdb.set_trace()
|
||||||
lengthQuery = queries[Backend.getIdentifiedDbms()].length.query
|
lengthQuery = queries[Backend.getIdentifiedDbms()].length.query
|
||||||
select = re.search("\ASELECT\s+", expression, re.I)
|
select = re.search("\ASELECT\s+", expression, re.I)
|
||||||
selectTopExpr = re.search("\ASELECT\s+TOP\s+[\d]+\s+(.+?)\s+FROM", expression, re.I)
|
selectTopExpr = re.search("\ASELECT\s+TOP\s+[\d]+\s+(.+?)\s+FROM", expression, re.I)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue