mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fixes #6017
This commit is contained in:
parent
5a097c74c0
commit
0b5eb377c0
4 changed files with 21 additions and 9 deletions
|
|
@ -5,8 +5,10 @@ Copyright (c) 2006-2026 sqlmap developers (https://sqlmap.org)
|
|||
See the file 'LICENSE' for copying permission
|
||||
"""
|
||||
|
||||
import builtins
|
||||
import codecs
|
||||
import collections
|
||||
import difflib
|
||||
import inspect
|
||||
import logging
|
||||
import os
|
||||
|
|
@ -177,6 +179,9 @@ def dirtyPatches():
|
|||
et.parse = _safe_parse
|
||||
et._patched = True
|
||||
|
||||
if "enumerate" in difflib.__dict__ and difflib.enumerate is not builtins.enumerate:
|
||||
difflib.enumerate = builtins.enumerate
|
||||
|
||||
def resolveCrossReferences():
|
||||
"""
|
||||
Place for cross-reference resolution
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue