mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
fix for Issue #170
This commit is contained in:
parent
7f5bc5e3fe
commit
a0ec447b7d
2 changed files with 7 additions and 3 deletions
|
|
@ -38,7 +38,7 @@ from lib.core.data import logger
|
|||
from lib.core.exception import sqlmapNotVulnerableException
|
||||
from lib.core.session import setInjection
|
||||
from lib.core.target import createTargetDirs
|
||||
from lib.core.target import initTargetEnv
|
||||
from lib.core.target import initTargetEnv, setupTargetEnv
|
||||
from lib.utils.parenthesis import checkForParenthesis
|
||||
|
||||
def __selectInjection(injData):
|
||||
|
|
@ -133,10 +133,11 @@ def start():
|
|||
|
||||
logMsg = "testing url %s" % targetUrl
|
||||
logger.info(logMsg)
|
||||
|
||||
|
||||
initTargetEnv()
|
||||
parseTargetUrl()
|
||||
createTargetDirs()
|
||||
initTargetEnv()
|
||||
setupTargetEnv()
|
||||
|
||||
if not checkConnection() or not checkString() or not checkRegexp():
|
||||
continue
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue