mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-10 02:01:57 +00:00
Proper fix for #1053
This commit is contained in:
parent
6972020faf
commit
cf3b02ee04
2 changed files with 6 additions and 5 deletions
|
|
@ -1564,8 +1564,8 @@ def safeStringFormat(format_, params):
|
|||
"""
|
||||
Avoids problems with inappropriate string format strings
|
||||
|
||||
>>> safeStringFormat('foobar%d%s', ('1', 2))
|
||||
u'foobar12'
|
||||
>>> safeStringFormat('SELECT foo FROM %s LIMIT %d', ('bar', '1'))
|
||||
u'SELECT foo FROM bar LIMIT 1'
|
||||
"""
|
||||
|
||||
if format_.count(PAYLOAD_DELIMITER) == 2:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue