mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Minor language fix
This commit is contained in:
parent
941b2387c0
commit
eaacbe0b12
6 changed files with 8 additions and 8 deletions
|
|
@ -90,7 +90,7 @@ def _comparison(page, headers, code, getRatioValue, pageLength):
|
|||
|
||||
if kb.nullConnection and pageLength:
|
||||
if not seqMatcher.a:
|
||||
errMsg = "problem occured while retrieving original page content "
|
||||
errMsg = "problem occurred while retrieving original page content "
|
||||
errMsg += "which prevents sqlmap from continuation. Please rerun, "
|
||||
errMsg += "and if the problem persists turn off any optimization switches"
|
||||
raise SqlmapNoneDataException(errMsg)
|
||||
|
|
|
|||
|
|
@ -434,7 +434,7 @@ class Connect(object):
|
|||
conn.fp._sock.close()
|
||||
conn.close()
|
||||
except Exception, msg:
|
||||
warnMsg = "problem occured during connection closing ('%s')" % msg
|
||||
warnMsg = "problem occurred during connection closing ('%s')" % msg
|
||||
logger.warn(warnMsg)
|
||||
|
||||
except urllib2.HTTPError, e:
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class HTTPSConnection(httplib.HTTPSConnection):
|
|||
else:
|
||||
sock.close()
|
||||
except ssl.SSLError, errMsg:
|
||||
logger.debug("SSL connection error occured ('%s')" % errMsg)
|
||||
logger.debug("SSL connection error occurred ('%s')" % errMsg)
|
||||
|
||||
if not success:
|
||||
raise SqlmapConnectionException("can't establish SSL connection")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue