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

Skip to content

Commit c6577b8

Browse files
committed
Minor update
1 parent 4a4fa07 commit c6577b8

6 files changed

Lines changed: 7 additions & 10 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.7.7"
22+
VERSION = "1.1.7.8"
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/parse/cmdline.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
from lib.core.settings import DUMMY_URL
3232
from lib.core.settings import IS_WIN
3333
from lib.core.settings import MAX_HELP_OPTION_LENGTH
34-
from lib.core.settings import UNICODE_ENCODING
3534
from lib.core.settings import VERSION_STRING
3635
from lib.core.shell import autoCompletion
3736
from lib.core.shell import clearHistory

lib/utils/har.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import StringIO
1414
import time
1515

16-
from lib.core.data import logger
1716
from lib.core.settings import VERSION
1817

1918
# Reference: https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/HAR/Overview.html

plugins/generic/connector.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from lib.core.data import logger
1212
from lib.core.exception import SqlmapFilePathException
1313
from lib.core.exception import SqlmapUndefinedMethod
14-
from lib.core.settings import UNICODE_ENCODING
1514

1615
class Connector:
1716
"""

sqlmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def main():
329329
except KeyboardInterrupt:
330330
pass
331331

332-
if conf.harFile:
332+
if conf.get("harFile"):
333333
with openFile(conf.harFile, "w+b") as f:
334334
f.write(json.dumps(conf.httpCollector.obtain(), indent=4, separators=(',', ': ')))
335335

txt/checksum.md5

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ b9ff4e622c416116bee6024c0f050349 lib/core/enums.py
4646
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4747
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4848
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
49-
938c43b15900804e53882140493ffb71 lib/core/settings.py
49+
e65c91771c87c114238f281e198f802c lib/core/settings.py
5050
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5151
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5252
baa3f47efa6701076d026e43a6874a51 lib/core/target.py
@@ -57,7 +57,7 @@ ad74fc58fc7214802fd27067bce18dd2 lib/core/unescaper.py
5757
4d13ed693401a498b6d073a2a494bd83 lib/core/wordlist.py
5858
310efc965c862cfbd7b0da5150a5ad36 lib/__init__.py
5959
8c4b04062db2245d9e190b413985202a lib/parse/banner.py
60-
0557c5fee58f2578e0dd502b1839e3a3 lib/parse/cmdline.py
60+
d548e2bff2edae0b0e40364a439bb6d4 lib/parse/cmdline.py
6161
3a31657bc38f277d0016ff6d50bde61f lib/parse/configfile.py
6262
14539f1be714d4f1ed042067d63bc50a lib/parse/handler.py
6363
64e5bb3ecbdd75144500588b437ba8da lib/parse/headers.py
@@ -103,7 +103,7 @@ a73c3ddd0de359507a8ad59b363aa963 lib/utils/api.py
103103
ed70f1ca9113664043ec9e6778e48078 lib/utils/crawler.py
104104
ba12c69a90061aa14d848b8396e79191 lib/utils/deps.py
105105
3b9fd519164e0bf275d5fd361c3f11ff lib/utils/getch.py
106-
40e987b76120f0327f891d1cc7866f4e lib/utils/har.py
106+
1cd7599b5e6addb29cbab85d292ccf6c lib/utils/har.py
107107
ccfdad414ce2ec0c394c3deaa39a82bf lib/utils/hashdb.py
108108
12e0e0ab70c6fe5786bc561c35dc067f lib/utils/hash.py
109109
e76a08237ee6a4cd6855af79610ea8a5 lib/utils/htmlentities.py
@@ -201,7 +201,7 @@ deed74334b637767fc9de8f74b37647a plugins/dbms/sybase/fingerprint.py
201201
45436a42c2bb8075e1482a950d993d55 plugins/dbms/sybase/__init__.py
202202
89412a921c8c598c19d36762d5820f05 plugins/dbms/sybase/syntax.py
203203
654cd5e69cf5e5c644bfa5d284e61206 plugins/dbms/sybase/takeover.py
204-
3371edd2292e3daec8df238034684232 plugins/generic/connector.py
204+
f700954549ad8ebf77f5187262fb9af0 plugins/generic/connector.py
205205
5390591ca955036d492de11355b52e8f plugins/generic/custom.py
206206
4ad4bccc03256b8f3d21ba4f8f759404 plugins/generic/databases.py
207207
106f19c1d895963e2efa8ee193a537ec plugins/generic/entries.py
@@ -224,7 +224,7 @@ c3cc8b7727161e64ab59f312c33b541a shell/stager.aspx_
224224
1f7f125f30e0e800beb21e2ebbab18e1 shell/stager.jsp_
225225
01e3505e796edf19aad6a996101c81c9 shell/stager.php_
226226
0751a45ac4c130131f2cdb74d866b664 sqlmapapi.py
227-
290b98e6923960e17bdef3db0a05b44c sqlmap.py
227+
f53c10492a13c9f53024d8a963bd86a3 sqlmap.py
228228
08c711a470d7e0bf705320ba3c48b886 tamper/apostrophemask.py
229229
e8509df10d3f1c28014d7825562d32dd tamper/apostrophenullencode.py
230230
bb27f7dc980ea07fcfedbd7da5e5e029 tamper/appendnullbyte.py

0 commit comments

Comments
 (0)