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

Skip to content

Commit 415ce05

Browse files
committed
Fixes #2677
1 parent 06deda3 commit 415ce05

13 files changed

Lines changed: 24 additions & 24 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.9.0"
22+
VERSION = "1.1.9.1"
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)

plugins/dbms/access/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
try:
99
import pyodbc
10-
except ImportError:
10+
except:
1111
pass
1212

1313
import logging

plugins/dbms/db2/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
try:
99
import ibm_db_dbi
10-
except ImportError:
10+
except:
1111
pass
1212

1313
import logging

plugins/dbms/firebird/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
try:
99
import kinterbasdb
10-
except ImportError:
10+
except:
1111
pass
1212

1313
import logging

plugins/dbms/hsqldb/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
try:
99
import jaydebeapi
1010
import jpype
11-
except ImportError, msg:
11+
except:
1212
pass
1313

1414
import logging

plugins/dbms/informix/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
try:
99
import ibm_db_dbi
10-
except ImportError:
10+
except:
1111
pass
1212

1313
import logging

plugins/dbms/mssqlserver/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
try:
99
import _mssql
1010
import pymssql
11-
except ImportError:
11+
except:
1212
pass
1313

1414
import logging

plugins/dbms/mysql/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
try:
99
import pymysql
10-
except ImportError:
10+
except:
1111
pass
1212

1313
import logging

plugins/dbms/oracle/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
try:
99
import cx_Oracle
10-
except ImportError:
10+
except:
1111
pass
1212

1313
import logging

plugins/dbms/postgresql/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import psycopg2.extensions
1111
psycopg2.extensions.register_type(psycopg2.extensions.UNICODE)
1212
psycopg2.extensions.register_type(psycopg2.extensions.UNICODEARRAY)
13-
except ImportError:
13+
except:
1414
pass
1515

1616
from lib.core.data import logger

0 commit comments

Comments
 (0)