mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Major bug fix to make it work properly with MSSQL custom limited (SELECT
TOP ...) queries with both inferential blind and Full UNION query injection
This commit is contained in:
parent
2cc3bb2f6a
commit
9c42a883be
5 changed files with 60 additions and 20 deletions
|
|
@ -30,7 +30,7 @@ import sys
|
|||
|
||||
|
||||
# sqlmap version and site
|
||||
VERSION = "0.6.4-rc3"
|
||||
VERSION = "0.6.4-rc4"
|
||||
VERSION_STRING = "sqlmap/%s" % VERSION
|
||||
SITE = "http://sqlmap.sourceforge.net"
|
||||
|
||||
|
|
@ -73,6 +73,7 @@ MATCH_RATIO = 0.9
|
|||
SQL_STATEMENTS = {
|
||||
"SQL SELECT statement": (
|
||||
"select ",
|
||||
"select top ",
|
||||
" from ",
|
||||
" from dual",
|
||||
" where ",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue