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

Skip to content

Commit 083ce11

Browse files
committed
Minor speed up
1 parent c1d4ab7 commit 083ce11

3 files changed

Lines changed: 11 additions & 7 deletions

File tree

lib/core/convert.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@
55
See the file 'doc/COPYING' for copying permission
66
"""
77

8+
try:
9+
import cPickle as pickle
10+
except:
11+
import pickle
12+
813
import base64
914
import json
10-
import pickle
1115
import re
1216
import StringIO
1317
import sys

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.0.10.57"
22+
VERSION = "1.0.10.58"
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 @@ cc9c82cfffd8ee9b25ba3af6284f057e extra/sqlharvest/__init__.py
2121
4f2f817596540d82f9fcc0c5b2228beb extra/sqlharvest/sqlharvest.py
2222
2daa39e4d59526acb4772b6c47eb315f lib/controller/action.py
2323
33299308c821d04c2caf35d4c7a415ff lib/controller/checks.py
24-
5df6cb90ffec56876e444aec8cf89c34 lib/controller/controller.py
24+
35029bd013e74ca45749aa57e585aac9 lib/controller/controller.py
2525
ec007a1424da78cfdae90da6ae49ed9b lib/controller/handler.py
2626
cc9c82cfffd8ee9b25ba3af6284f057e lib/controller/__init__.py
2727
04f16204c899438dc7599a9a8426bfee lib/core/agent.py
2828
eb0bd28b0bd9fbf67dcc3119116df377 lib/core/bigarray.py
2929
136246c879e7a15309ed892ea4c1c3eb lib/core/common.py
30-
5680d0c446a3bed5c0f2a0402d031557 lib/core/convert.py
30+
7793cad97d18e482345bdc0b12315d96 lib/core/convert.py
3131
e77cca1cb063016f71f6e6bdebf4ec73 lib/core/data.py
3232
1d042f0bc0557d3fd564ea5a46deb77e lib/core/datatype.py
3333
e4ca0fd47f20cf7ba6a5f5cbf980073c lib/core/decorators.py
@@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
4545
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
4646
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
4747
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48-
a26c40b76c7ec1f18b004790c31bdbeb lib/core/settings.py
48+
e78be7882591863c78b2ad408ad2cfee lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
c3ace7874a536d801f308cf1fd03df99 lib/core/target.py
@@ -56,7 +56,7 @@ d43f059747ffd48952922c94152e2a07 lib/core/testing.py
5656
8485a3cd94c0a5af2718bad60c5f1ae5 lib/core/wordlist.py
5757
cc9c82cfffd8ee9b25ba3af6284f057e lib/__init__.py
5858
c1288bc4ce5651dbdd82d4a9435fdc03 lib/parse/banner.py
59-
344781507a052d4d37157c5017f670ba lib/parse/cmdline.py
59+
81c02216ed37b40bb98eb78fe038344c lib/parse/cmdline.py
6060
8ec4d4f02634834701f8258726f2e511 lib/parse/configfile.py
6161
fe4e2152292587928edb94c9a4d311ff lib/parse/handler.py
6262
8e6bfb13e5a34b2610f3ff23467a34cf lib/parse/headers.py
@@ -165,7 +165,7 @@ d01229e7161a5071934fc26b48a11e8c plugins/dbms/mssqlserver/fingerprint.py
165165
2fbe5e485bcd05511cd1d7cb8cbdbde4 plugins/dbms/mssqlserver/__init__.py
166166
a727b3cac910622d22b2ed92815716ef plugins/dbms/mssqlserver/syntax.py
167167
f3da9f5298dac5d1f468828c07c81f70 plugins/dbms/mssqlserver/takeover.py
168-
d8cd212ba7be09483af3f32256b71f05 plugins/dbms/mysql/connector.py
168+
c44c561dd9df1dc844a81be500ea02e7 plugins/dbms/mysql/connector.py
169169
d251aecff7544f79f78385386bb7fa35 plugins/dbms/mysql/enumeration.py
170170
a970f90c91ebd3a7e22955424fe5414e plugins/dbms/mysql/filesystem.py
171171
edc62bbf269d053ccc68b4cdfebdf12b plugins/dbms/mysql/fingerprint.py

0 commit comments

Comments
 (0)