mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-23 15:54:24 +03:00
more update
This commit is contained in:
parent
00dfd55830
commit
2b8c942b4a
|
@ -292,7 +292,7 @@ def checkStability():
|
|||
checkDynamicContent(firstPage, secondPage)
|
||||
|
||||
if not Request.queryPage():
|
||||
errMsg = "target url is too dynamic. unable to continue. consider using other methods"
|
||||
errMsg = "target url is too dynamic. unable to continue. consider using other switches (e.g. --longest-common, --string, --text-only, etc.)"
|
||||
logger.error(errMsg)
|
||||
raise sqlmapSilentQuitException
|
||||
|
||||
|
|
|
@ -1238,6 +1238,10 @@ def __basicOptionValidation():
|
|||
errMsg = "switch --text-only is incompatible with switch --null-connection"
|
||||
raise sqlmapSyntaxException, errMsg
|
||||
|
||||
if conf.longestCommon and conf.nullConnection:
|
||||
errMsg = "switch --longest-common is incompatible with switch --null-connection"
|
||||
raise sqlmapSyntaxException, errMsg
|
||||
|
||||
if conf.data and conf.nullConnection:
|
||||
errMsg = "switch --data is incompatible with switch --null-connection"
|
||||
raise sqlmapSyntaxException, errMsg
|
||||
|
|
Loading…
Reference in New Issue
Block a user