mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
fix for Bug #164 (Proper usage of special characters in paths)
This commit is contained in:
parent
bece99908c
commit
1bdf94f236
4 changed files with 12 additions and 8 deletions
|
|
@ -22,6 +22,7 @@ with sqlmap; if not, write to the Free Software Foundation, Inc., 51
|
|||
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
"""
|
||||
|
||||
from StringIO import StringIO
|
||||
from xml.sax import parse
|
||||
from xml.sax.handler import ContentHandler
|
||||
|
||||
|
|
@ -234,4 +235,4 @@ def queriesParser():
|
|||
|
||||
checkFile(xmlfile)
|
||||
handler = queriesHandler()
|
||||
parse(open(xmlfile), handler)
|
||||
parse(StringIO(open(xmlfile).read()), handler)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue