mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Implemented --tamper for direct connection too (-d)
This commit is contained in:
parent
27cea68bb8
commit
0ffffef088
|
@ -42,6 +42,10 @@ class Agent:
|
|||
elif query.startswith("; "):
|
||||
query = query.replace("; ", "", 1)
|
||||
|
||||
if kb.tamperFunctions:
|
||||
for function in kb.tamperFunctions:
|
||||
query = function(query)
|
||||
|
||||
return query
|
||||
|
||||
def payload(self, place=None, parameter=None, value=None, newValue=None, negative=False, falseCond=False):
|
||||
|
|
Loading…
Reference in New Issue
Block a user