mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-09 17:51:33 +00:00
Bug fix for --hex/--technique=B (especially MsSQL)
This commit is contained in:
parent
8617fe0d65
commit
25a5073281
3 changed files with 6 additions and 1 deletions
|
|
@ -1260,7 +1260,9 @@ def getCharset(charsetType=None):
|
|||
asciiTbl.extend([0, 1])
|
||||
asciiTbl.extend(xrange(47, 58))
|
||||
asciiTbl.extend(xrange(64, 71))
|
||||
asciiTbl.extend([87, 88]) # X
|
||||
asciiTbl.extend(xrange(96, 103))
|
||||
asciiTbl.extend([119, 120]) # x
|
||||
|
||||
# Characters
|
||||
elif charsetType == CHARSET_TYPE.ALPHA:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue