mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Minor adjustment (URI (marked with custom injection char) has precedence over GET/POST)
This commit is contained in:
parent
dc21f3ce67
commit
87e923613f
|
@ -368,10 +368,10 @@ def start():
|
|||
# Do a little prioritization reorder of a testable parameter list
|
||||
parameters = conf.parameters.keys()
|
||||
|
||||
# Order of testing list (last to first)
|
||||
orderList = (PLACE.URI, PLACE.GET, PLACE.POST, PLACE.CUSTOM_POST)
|
||||
# Order of testing list (first to last)
|
||||
orderList = (PLACE.CUSTOM_POST, PLACE.URI, PLACE.POST, PLACE.GET)
|
||||
|
||||
for place in orderList:
|
||||
for place in orderList[::-1]:
|
||||
if place in parameters:
|
||||
parameters.remove(place)
|
||||
parameters.insert(0, place)
|
||||
|
|
Loading…
Reference in New Issue
Block a user