mirror of
https://github.com/sqlmapproject/sqlmap
synced 2026-02-14 19:36:59 +01:00
Avoid storing to session file also payload delimiters
This commit is contained in:
parent
2708aad504
commit
56d2b2f322
1 changed files with 1 additions and 1 deletions
|
|
@ -338,7 +338,7 @@ def checkSqlInjection(place, parameter, value):
|
||||||
injection.suffix = suffix
|
injection.suffix = suffix
|
||||||
|
|
||||||
# Feed with test details every time a test is successful
|
# Feed with test details every time a test is successful
|
||||||
injection.data[stype] = (title, reqPayload, where, comment)
|
injection.data[stype] = (title, agent.removePayloadDelimiters(reqPayload, False), where, comment)
|
||||||
|
|
||||||
if "details" in test:
|
if "details" in test:
|
||||||
for detailKey, detailValue in test.details.items():
|
for detailKey, detailValue in test.details.items():
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue