Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18be319 commit 03d2c9cCopy full SHA for 03d2c9c
1 file changed
lib/core/update.py
@@ -16,11 +16,17 @@
16
from lib.core.data import conf
17
from lib.core.data import logger
18
from lib.core.data import paths
19
+from lib.core.exception import sqlmapUnsupportedFeatureException
20
from lib.core.settings import IS_WIN
21
from lib.core.settings import UNICODE_ENCODING
22
from lib.core.subprocessng import pollProcess
23
24
def update():
25
+ errMsg = "sqlmap is now hosted on GitHub at https://github.com/sqlmapproject/sqlmap. "
26
+ errMsg += "The --update switch is currently outdated and not working. Please, "
27
+ errMsg += "update sqlmap running 'git pull' for the time being"
28
+ raise sqlmapUnsupportedFeatureException, errMsg
29
+
30
if not conf.updateAll:
31
return
32
0 commit comments