mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Implemented --tamper for direct connection too (-d)
This commit is contained in:
parent
27cea68bb8
commit
0ffffef088
1 changed files with 4 additions and 0 deletions
|
|
@ -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 a new issue