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

Skip to content

Commit 2a681b7

Browse files
committed
Fixes #3027
1 parent 7f3f1dc commit 2a681b7

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

lib/core/readlineng.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
try:
1515
from readline import *
1616
import readline as _readline
17-
except ImportError:
17+
except:
1818
try:
1919
from pyreadline import *
2020
import pyreadline as _readline
21-
except ImportError:
21+
except:
2222
pass
2323

2424
if IS_WIN and _readline:

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.2.4.2"
22+
VERSION = "1.2.4.3"
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
@@ -42,11 +42,11 @@ cada93357a7321655927fc9625b3bfec lib/core/exception.py
4242
c9a56e58984420a5abb7a3f7aadc196d lib/core/optiondict.py
4343
b950c8c2f2ae87ad2ec99e1d19b2c03a lib/core/option.py
4444
7cfd04e583cca782b843f6f6d973981a lib/core/profiling.py
45-
ffa5f01f39b17c8d73423acca6cfe86a lib/core/readlineng.py
45+
6f654e1715571eff68a0f8af3d62dcf8 lib/core/readlineng.py
4646
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4747
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
4848
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
49-
8c0c10ba91a0cac1315573757a5df233 lib/core/settings.py
49+
18951ad78a0c84df536edef011b2c0f0 lib/core/settings.py
5050
0dfc2ed40adf72e302291f6ecd4406f6 lib/core/shell.py
5151
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5252
a35efa7bec9f1e6cedf17c9830a79241 lib/core/target.py

0 commit comments

Comments
 (0)