mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-21 17:16:35 +03:00
Fixes #4063
This commit is contained in:
parent
49afd47c13
commit
0ea39098bd
|
@ -18,7 +18,7 @@ from lib.core.enums import OS
|
|||
from thirdparty.six import unichr as _unichr
|
||||
|
||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||
VERSION = "1.4.1.8"
|
||||
VERSION = "1.4.1.9"
|
||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
||||
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
||||
|
|
4
thirdparty/beautifulsoup/beautifulsoup.py
vendored
4
thirdparty/beautifulsoup/beautifulsoup.py
vendored
|
@ -595,7 +595,7 @@ class Tag(PageElement):
|
|||
stopNode = self._lastRecursiveChild().next
|
||||
strings = []
|
||||
current = self.contents[0]
|
||||
while current is not stopNode:
|
||||
while current and current is not stopNode:
|
||||
if isinstance(current, NavigableString):
|
||||
strings.append(current.strip())
|
||||
current = current.next
|
||||
|
@ -897,7 +897,7 @@ class Tag(PageElement):
|
|||
return # Note: https://stackoverflow.com/a/30217723 (PEP 479)
|
||||
stopNode = self._lastRecursiveChild().next
|
||||
current = self.contents[0]
|
||||
while current is not stopNode:
|
||||
while current and current is not stopNode:
|
||||
yield current
|
||||
current = current.next
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user