mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 08:52:20 +01:00
bug fix for --dns-domain with --technique=TS
This commit is contained in:
parent
80228f67f6
commit
c89a4162e2
1 changed files with 2 additions and 3 deletions
|
|
@ -502,6 +502,8 @@ class Connect:
|
||||||
string match check ('--string' command line parameter)
|
string match check ('--string' command line parameter)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
value = value.replace("[SLEEPTIME]", str(conf.timeSec)) if value else value
|
||||||
|
|
||||||
if conf.direct:
|
if conf.direct:
|
||||||
return direct(value, content)
|
return direct(value, content)
|
||||||
|
|
||||||
|
|
@ -519,9 +521,6 @@ class Connect:
|
||||||
if not place:
|
if not place:
|
||||||
place = kb.injection.place or PLACE.GET
|
place = kb.injection.place or PLACE.GET
|
||||||
|
|
||||||
if timeBasedCompare:
|
|
||||||
value = value.replace("[SLEEPTIME]", str(conf.timeSec))
|
|
||||||
|
|
||||||
raise404 = place != PLACE.URI if raise404 is None else raise404
|
raise404 = place != PLACE.URI if raise404 is None else raise404
|
||||||
|
|
||||||
payload = agent.extractPayload(value)
|
payload = agent.extractPayload(value)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue