mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
again minor update
This commit is contained in:
parent
76233ff5a3
commit
9a72a25704
2 changed files with 13 additions and 3 deletions
|
|
@ -42,6 +42,7 @@ from lib.core.session import setInjection
|
|||
from lib.core.target import initTargetEnv
|
||||
from lib.core.target import setupTargetEnv
|
||||
from lib.core.testing import smokeTest
|
||||
from lib.core.testing import liveTest
|
||||
from lib.utils.parenthesis import checkForParenthesis
|
||||
|
||||
def __selectInjection(injData):
|
||||
|
|
@ -95,8 +96,13 @@ def start():
|
|||
return
|
||||
|
||||
if conf.smokeTest:
|
||||
if not smokeTest():
|
||||
return
|
||||
smokeTest()
|
||||
|
||||
if conf.liveTest:
|
||||
liveTest()
|
||||
|
||||
if conf.smokeTest or conf.liveTest:
|
||||
return
|
||||
|
||||
if conf.direct:
|
||||
initTargetEnv()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue