mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Minor style update
This commit is contained in:
parent
7ea846e111
commit
ca1c0c2a1d
8 changed files with 20 additions and 20 deletions
|
|
@ -166,9 +166,9 @@ class Agent(object):
|
|||
# after the prefix or it is in GROUP BY / ORDER BY (<clause>)
|
||||
elif kb.technique == PAYLOAD.TECHNIQUE.STACKED:
|
||||
query = kb.injection.prefix
|
||||
elif kb.injection.clause == [2, 3] or kb.injection.clause == [ 2 ] or kb.injection.clause == [ 3 ]:
|
||||
elif kb.injection.clause == [2, 3] or kb.injection.clause == [2] or kb.injection.clause == [3]:
|
||||
query = kb.injection.prefix
|
||||
elif clause == [2, 3] or clause == [ 2 ] or clause == [ 3 ]:
|
||||
elif clause == [2, 3] or clause == [2] or clause == [3]:
|
||||
query = prefix
|
||||
|
||||
# In any other case prepend with the full prefix
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue