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

Skip to content

Commit 0d1ea50

Browse files
committed
Fixes #2762
1 parent cc37b12 commit 0d1ea50

3 files changed

Lines changed: 4 additions & 4 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.11.1"
22+
VERSION = "1.1.11.2"
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/search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def _search(dork):
122122
elif choice == '2':
123123
url = "https://www.bing.com/search?q=%s&first=%d" % (urlencode(dork, convall=True), (gpage - 1) * 10 + 1)
124124
regex = BING_REGEX
125-
elif choice == '1':
125+
else:
126126
url = "https://duckduckgo.com/d.js?"
127127
url += "q=%s&p=%d&s=100" % (urlencode(dork, convall=True), gpage)
128128
regex = DUCKDUCKGO_REGEX

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ ec6a778b0e74749b916caead78ba88b7 lib/core/option.py
4646
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
4848
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49-
6268552b330145e1311ed84d099af922 lib/core/settings.py
49+
d5835ec26ff3cde1f1bafedc593dbde6 lib/core/settings.py
5050
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252
7c9f2af3c0a8dd89223cfe07b0a0b826 lib/core/target.py
@@ -111,7 +111,7 @@ f20ae1aa6a8d1d5373ace1f7ed3476a7 lib/utils/htmlentities.py
111111
06cd61b634ca6142281da699a504cc85 lib/utils/pivotdumptable.py
112112
56c922696bd3d05d7be96e73b0650c4e lib/utils/progress.py
113113
a861c303293e2e6665b02a57f67fc050 lib/utils/purge.py
114-
f6652791bf98a42e3e1532180a0710cf lib/utils/search.py
114+
760290393e35e5f53f15ba46e09d59dd lib/utils/search.py
115115
b6898e77038842c853932a6662c011be lib/utils/sqlalchemy.py
116116
36b95bc7fa2cf4f005a86e516a8cba68 lib/utils/timeout.py
117117
a3b51d28b0824d4d2333a3dd792497ac lib/utils/versioncheck.py

0 commit comments

Comments
 (0)