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

Skip to content

Commit e42b63f

Browse files
committed
Typo fix
1 parent b8f88a0 commit e42b63f

4 files changed

Lines changed: 6 additions & 6 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.8.7"
22+
VERSION = "1.1.8.8"
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/takeover/abstraction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def initEnv(self, mandatory=True, detailed=False, web=False, forceInit=False):
189189

190190
if mandatory and not self.isDba():
191191
warnMsg = "functionality requested probably does not work because "
192-
warnMsg += "the curent session user is not a database administrator"
192+
warnMsg += "the current session user is not a database administrator"
193193

194194
if not conf.dbmsCred and Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.PGSQL):
195195
warnMsg += ". You can try to use option '--dbms-cred' "

lib/takeover/udf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def udfInjectCustom(self):
195195

196196
if not self.isDba():
197197
warnMsg = "functionality requested probably does not work because "
198-
warnMsg += "the curent session user is not a database administrator"
198+
warnMsg += "the current session user is not a database administrator"
199199
logger.warn(warnMsg)
200200

201201
if not conf.shLib:

txt/checksum.md5

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ a44d7a4cc6c9a67a72d6af2f25f4ddac lib/core/exception.py
4646
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4747
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4848
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
49-
9bcb7d67515332060766ce65d17cb88d lib/core/settings.py
49+
81979aaadc3002c17e2b50b0094f6bc7 lib/core/settings.py
5050
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5151
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5252
4a6ecdd8a6e44bb4737bd9bc7f9b5743 lib/core/target.py
@@ -79,12 +79,12 @@ bb9c165b050f7696b089b96b5947fac3 lib/request/pkihandler.py
7979
602d4338a9fceaaee40c601410d8ac0b lib/request/rangehandler.py
8080
021a3bf20bcea047ab5601e8af736fee lib/request/redirecthandler.py
8181
b373770137dc885889e495de95169b93 lib/request/templates.py
82-
4f45a856e0273b9a8954a0e6b03d8eb5 lib/takeover/abstraction.py
82+
3790c378a58ec7635d7d83efef5c1032 lib/takeover/abstraction.py
8383
c6bc7961a186baabe0a9f5b7e0d8974b lib/takeover/icmpsh.py
8484
310efc965c862cfbd7b0da5150a5ad36 lib/takeover/__init__.py
8585
c90c993b020a6ae0f0e497fd84f37466 lib/takeover/metasploit.py
8686
ac541a0d38e4ecb4e41e97799a7235f4 lib/takeover/registry.py
87-
d466eab3ff82dbe29dc820e303eb4cff lib/takeover/udf.py
87+
ff1af7f85fdf4f2a5369f2927d149824 lib/takeover/udf.py
8888
261c03b06ad74eb0b594c8ade5039bdc lib/takeover/web.py
8989
604b087dc52dbcb4c3938ad1bf63829c lib/takeover/xp_cmdshell.py
9090
201e7e69f9161dfa3aa10d83f690a488 lib/techniques/blind/inference.py

0 commit comments

Comments
 (0)