mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Patch for an Issue #971
This commit is contained in:
parent
a0d95a8ec4
commit
8cd40f8917
1 changed files with 2 additions and 1 deletions
|
|
@ -10,6 +10,7 @@ import re
|
|||
from lib.core.common import Backend
|
||||
from lib.core.common import extractRegexResult
|
||||
from lib.core.common import getSQLSnippet
|
||||
from lib.core.common import getUnicode
|
||||
from lib.core.common import isDBMSVersionAtLeast
|
||||
from lib.core.common import isNumber
|
||||
from lib.core.common import isTechniqueAvailable
|
||||
|
|
@ -87,7 +88,7 @@ class Agent(object):
|
|||
|
||||
paramString = conf.parameters[place]
|
||||
paramDict = conf.paramDict[place]
|
||||
origValue = paramDict[parameter]
|
||||
origValue = getUnicode(paramDict[parameter])
|
||||
|
||||
if place == PLACE.URI:
|
||||
paramString = origValue
|
||||
|
|
|
|||
Loading…
Reference in a new issue