mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-10 02:14:17 +01:00
initial page request can result in unwanted lag (e.g. slow DNS response,...), hence it's response time shouldn't be a part of response time statistical model
This commit is contained in:
parent
a7c26366b4
commit
9b0db33cc5
1 changed files with 1 additions and 1 deletions
|
|
@ -812,7 +812,7 @@ def checkConnection(suppressOutput=False):
|
|||
logger.info(infoMsg)
|
||||
|
||||
try:
|
||||
page, _ = Request.queryPage(content=True)
|
||||
page, _ = Request.queryPage(content=True, noteResponseTime=False)
|
||||
kb.originalPage = kb.pageTemplate = page
|
||||
|
||||
kb.errorIsNone = False
|
||||
|
|
|
|||
Loading…
Reference in a new issue