Skip to content

Commit b23626d

Browse files
committed
Minor update
1 parent 33d8ce8 commit b23626d

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

lib/core/common.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1840,8 +1840,7 @@ def getPageWordSet(page):
18401840

18411841
# only if the page's charset has been successfully identified
18421842
if isinstance(page, unicode):
1843-
_ = getFilteredPageContent(page)
1844-
retVal = set(re.findall(r"\w+", _))
1843+
retVal = set(_.group(0) for _ in re.finditer(r"\w+", getFilteredPageContent(page)))
18451844

18461845
return retVal
18471846

@@ -3562,9 +3561,9 @@ def safeSQLIdentificatorNaming(name, isTable=False):
35623561
_ = isTable and Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE)
35633562

35643563
if _:
3565-
retVal = re.sub(r"(?i)\A%s\." % DEFAULT_MSSQL_SCHEMA, "", retVal)
3564+
retVal = re.sub(r"(?i)\A\[?%s\]?\." % DEFAULT_MSSQL_SCHEMA, "", retVal)
35663565

3567-
if retVal.upper() in kb.keywords or (retVal or " ")[0].isdigit() or not re.match(r"\A[A-Za-z0-9_@%s\$]+\Z" % ("." if _ else ""), retVal): # MsSQL is the only DBMS where we automatically prepend schema to table name (dot is normal)
3566+
if retVal.upper() in kb.keywords or (retVal or " ")[0].isdigit() or not re.match(r"\A[A-Za-z0-9_@%s\$]+\Z" % ('.' if _ else ""), retVal): # MsSQL is the only DBMS where we automatically prepend schema to table name (dot is normal)
35683567
retVal = unsafeSQLIdentificatorNaming(retVal)
35693568

35703569
if Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.ACCESS):
@@ -3599,9 +3598,7 @@ def unsafeSQLIdentificatorNaming(name):
35993598
retVal = name.replace("[", "").replace("]", "")
36003599

36013600
if Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE):
3602-
prefix = "%s." % DEFAULT_MSSQL_SCHEMA
3603-
if retVal.startswith(prefix):
3604-
retVal = retVal[len(prefix):]
3601+
retVal = re.sub(r"(?i)\A\[?%s\]?\." % DEFAULT_MSSQL_SCHEMA, "", retVal)
36053602

36063603
return retVal
36073604

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.11.32"
22+
VERSION = "1.1.11.33"
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)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ d2cdb9e832e18a81e936ca3348144b16 lib/controller/handler.py
2727
5fb9aaf874daa47ea2b672a22740e56b lib/controller/__init__.py
2828
fd69e56ce20a5a49ce10a7a745022378 lib/core/agent.py
2929
8d9d771f7e67582c56a96a8d0ccbe4fc lib/core/bigarray.py
30-
10bba585fc5fb525ffe3f7a2f67ab128 lib/core/common.py
30+
27d55009305e6409dc17f9c58cb87065 lib/core/common.py
3131
54326d3a690f8b26fe5a5da1a589b369 lib/core/convert.py
3232
90b1b08368ac8a859300e6fa6a8c796e lib/core/data.py
3333
1c14bdbf47b8dba31f73da9ad731a54a lib/core/datatype.py
@@ -46,7 +46,7 @@ e1c000db9be27f973569b1a430629037 lib/core/option.py
4646
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
4848
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49-
edbaf54b6459e379919d29c875fdece1 lib/core/settings.py
49+
8269d14ad7ba23bf255f355add19eaa5 lib/core/settings.py
5050
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252
d5a04d672a18f78deb2839c3745ff83c lib/core/target.py

0 commit comments

Comments
 (0)