Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 751f423

Browse files
committed
Adding latest revision of bottle.py
1 parent c124086 commit 751f423

4 files changed

Lines changed: 691 additions & 319 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.1.4.3"
22+
VERSION = "1.1.4.4"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/utils/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ def server(host=RESTAPI_DEFAULT_ADDRESS, port=RESTAPI_DEFAULT_PORT, adapter=REST
687687
errMsg = "Adapter '%s' is unknown. " % adapter
688688
errMsg += "(Note: available adapters '%s')" % ', '.join(sorted(server_names.keys()))
689689
else:
690-
errMsg = "Server '%s' is not installed on this system. " % adapter
690+
errMsg = "Server support for adapter '%s' is not installed on this system " % adapter
691691
errMsg += "(Note: you can try to install it with 'sudo apt-get install python-%s' or 'sudo pip install %s')" % (adapter, adapter)
692692
logger.critical(errMsg)
693693

0 commit comments

Comments
 (0)