mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Bug fix (Github searching for duplicates)
This commit is contained in:
parent
1ae2b14b39
commit
c4f09a8e8a
2 changed files with 2 additions and 2 deletions
|
|
@ -3653,7 +3653,7 @@ def createGithubIssue(errMsg, excMsg):
|
|||
_excMsg = None
|
||||
errMsg = errMsg[errMsg.find("\n"):]
|
||||
|
||||
req = _urllib.request.Request(url="https://api.github.com/search/issues?q=%s" % _urllib.parse.quote("repo:sqlmapproject/sqlmap Unhandled exception (#%s)" % key))
|
||||
req = _urllib.request.Request(url="https://api.github.com/search/issues?q=%s" % _urllib.parse.quote("repo:sqlmapproject/sqlmap Unhandled exception (#%s)" % key), headers={HTTP_HEADER.USER_AGENT: fetchRandomAgent()})
|
||||
|
||||
try:
|
||||
content = _urllib.request.urlopen(req).read()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue