Skip to content

Commit 47ee1a9

Browse files
committed
Update for an Issue sqlmapproject#2472
1 parent 9b3d229 commit 47ee1a9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

lib/core/option.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -483,14 +483,14 @@ def _setRequestFromFile():
483483

484484
conf.requestFile = safeExpandUser(conf.requestFile)
485485

486-
infoMsg = "parsing HTTP request from '%s'" % conf.requestFile
487-
logger.info(infoMsg)
488-
489486
if not os.path.isfile(conf.requestFile):
490487
errMsg = "the specified HTTP request file "
491488
errMsg += "does not exist"
492489
raise SqlmapFilePathException(errMsg)
493490

491+
infoMsg = "parsing HTTP request from '%s'" % conf.requestFile
492+
logger.info(infoMsg)
493+
494494
_feedTargetsDict(conf.requestFile, addedTargetUrls)
495495

496496
def _setCrawler():

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.4.14"
22+
VERSION = "1.1.4.15"
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
@@ -39,13 +39,13 @@ b9ff4e622c416116bee6024c0f050349 lib/core/enums.py
3939
310efc965c862cfbd7b0da5150a5ad36 lib/core/__init__.py
4040
9ba39bf66e9ecd469446bdbbeda906c3 lib/core/log.py
4141
ebb778c2d26eba8b34d7d8658e4105a6 lib/core/optiondict.py
42-
69e879487399f3028fe0291817f2f998 lib/core/option.py
42+
dd19b4d930d418f8aef498941346ab2d lib/core/option.py
4343
5f2f56e6c5f274408df61943f1e080c0 lib/core/profiling.py
4444
40be71cd774662a7b420caeb7051e7d5 lib/core/readlineng.py
4545
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4646
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4747
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
48-
eb44bcdbc0438b1ac1772b05f0e89b08 lib/core/settings.py
48+
8d6ab6209fa5fc2bb2a414992320a1ce lib/core/settings.py
4949
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5050
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5151
afd0636d2e93c23f4f0a5c9b6023ea17 lib/core/target.py

0 commit comments

Comments
 (0)