mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-09 09:52:35 +01:00
minor cosmetics
This commit is contained in:
parent
c1c525aaea
commit
445cc3bf3c
1 changed files with 2 additions and 1 deletions
|
|
@ -401,7 +401,8 @@ def getValue(expression, blind=True, inband=True, error=True, time=True, fromUse
|
|||
try:
|
||||
if conf.direct:
|
||||
value = direct(expression)
|
||||
elif any(test is not None for test in map(isTechniqueAvailable, getPublicTypeMembers(PAYLOAD.TECHNIQUE, onlyValues=True))) or kb.unionTest:
|
||||
|
||||
elif kb.unionTest or any(map(isTechniqueAvailable, getPublicTypeMembers(PAYLOAD.TECHNIQUE, onlyValues=True))):
|
||||
query = cleanQuery(expression)
|
||||
query = expandAsteriskForColumns(query)
|
||||
value = None
|
||||
|
|
|
|||
Loading…
Reference in a new issue