mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
commit of all sorts (bug fix for heuristics and URI injections, fine tunning of tampering modules with SQL keywords,...)
This commit is contained in:
parent
cf73d9c799
commit
162d01abed
8 changed files with 328 additions and 23 deletions
|
|
@ -307,13 +307,13 @@ class Connect:
|
|||
|
||||
if not place:
|
||||
place = kb.injPlace
|
||||
|
||||
|
||||
if kb.tamperFunctions:
|
||||
for function in kb.tamperFunctions:
|
||||
value = function(place, value)
|
||||
|
||||
if "GET" in conf.parameters:
|
||||
get = conf.parameters["GET"] if place != "GET" or not value else value
|
||||
get = conf.parameters["GET"] if place != "GET" or not value else value
|
||||
|
||||
if "POST" in conf.parameters:
|
||||
post = conf.parameters["POST"] if place != "POST" or not value else value
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue