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

Skip to content

Commit 8ca4569

Browse files
committed
Minor update
1 parent bf40526 commit 8ca4569

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

lib/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1436,7 +1436,7 @@ def parseTargetUrl():
14361436
else:
14371437
conf.port = 80
14381438

1439-
if conf.port < 0 or conf.port > 65535:
1439+
if conf.port < 1 or conf.port > 65535:
14401440
errMsg = "invalid target URL's port (%d)" % conf.port
14411441
raise SqlmapSyntaxException(errMsg)
14421442

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.7.18"
22+
VERSION = "1.1.7.19"
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ c55b400b72acc43e0e59c87dd8bb8d75 extra/shellcodeexec/windows/shellcodeexec.x32.
2121
310efc965c862cfbd7b0da5150a5ad36 extra/sqlharvest/__init__.py
2222
7713aa366c983cdf1f3dbaa7383ea9e1 extra/sqlharvest/sqlharvest.py
2323
7afe836fd97271ccba67b4c0da2482ff lib/controller/action.py
24-
f77daa397016460433d5e06704efd538 lib/controller/checks.py
24+
c9733bcd06caea8262240262e4c6a06a lib/controller/checks.py
2525
130d1c16708668b8d89605b6b5b38bf5 lib/controller/controller.py
2626
a97df93b552ee4e4ba3692eae870de7c lib/controller/handler.py
2727
310efc965c862cfbd7b0da5150a5ad36 lib/controller/__init__.py
2828
49b4e3b75322bf5f95b1568633bc7914 lib/core/agent.py
2929
6cc95a117fbd34ef31b9aa25520f0e31 lib/core/bigarray.py
30-
f2e4219a187af507fd07bb08534a9ae1 lib/core/common.py
30+
0040490cdda0118a065ddc2e5bb8d108 lib/core/common.py
3131
5065a4242a8cccf72f91e22e1007ae63 lib/core/convert.py
3232
a8143dab9d3a27490f7d49b6b29ea530 lib/core/data.py
3333
7936d78b1a7f1f008ff92bf2f88574ba lib/core/datatype.py
@@ -46,12 +46,12 @@ f664e993a4e4d0f8b3153778bec49794 lib/core/option.py
4646
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4747
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4848
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
49-
e5d65791152de7ebd8b0e96956c4c8e2 lib/core/settings.py
49+
9057e2954f45a1d39f5fe6edeafae709 lib/core/settings.py
5050
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5151
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5252
080dad10c8350a66fd5321935b53fa70 lib/core/target.py
5353
8970b88627902239d695280b1160e16c lib/core/testing.py
54-
b8306192d980abdc8d669c024511e9a1 lib/core/threads.py
54+
40881e63d516d8304fc19971049cded0 lib/core/threads.py
5555
ad74fc58fc7214802fd27067bce18dd2 lib/core/unescaper.py
5656
1f1fa616b5b19308d78c610ec8046399 lib/core/update.py
5757
4d13ed693401a498b6d073a2a494bd83 lib/core/wordlist.py
@@ -103,7 +103,7 @@ db3090ff9a740ba096ba676fcf44ebfc lib/techniques/union/use.py
103103
c08d2487a53a1db8170178ebcf87c864 lib/utils/crawler.py
104104
ba12c69a90061aa14d848b8396e79191 lib/utils/deps.py
105105
3b9fd519164e0bf275d5fd361c3f11ff lib/utils/getch.py
106-
7143c26b3e18973bc5169c202b775245 lib/utils/har.py
106+
95d27ccdb712e9a750337daeb75ab12b lib/utils/har.py
107107
ccfdad414ce2ec0c394c3deaa39a82bf lib/utils/hashdb.py
108108
12e0e0ab70c6fe5786bc561c35dc067f lib/utils/hash.py
109109
e76a08237ee6a4cd6855af79610ea8a5 lib/utils/htmlentities.py

0 commit comments

Comments
 (0)