mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
adding a warning about --tor switch
This commit is contained in:
parent
b81fe42d4b
commit
80aedbe284
1 changed files with 6 additions and 0 deletions
|
|
@ -1778,6 +1778,12 @@ def __setTorHttpProxySettings():
|
|||
|
||||
raise sqlmapConnectionException, errMsg
|
||||
|
||||
if not conf.checkTor:
|
||||
warnMsg = "please use regularly switch '--check-tor' for your own security when using "
|
||||
warnMsg += "default HTTP proxy settings (option '--tor-type') for accessing Tor anonymizing "
|
||||
warnMsg += "network because of known issues with default settings of various 'bundles' (e.g. Vidalia/Polipo)"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
def __setTorSocksProxySettings():
|
||||
infoMsg = "setting Tor SOCKS proxy settings"
|
||||
logger.info(infoMsg)
|
||||
|
|
|
|||
Loading…
Reference in a new issue