mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
minor bug fix for mysql -d --file-read
This commit is contained in:
parent
0f5d48ff20
commit
8fe72d87a8
|
@ -205,34 +205,35 @@ SQL_STATEMENTS = {
|
|||
" offset ",
|
||||
" union all ",
|
||||
" rownum as ",
|
||||
"(case ", ),
|
||||
"(case ", ),
|
||||
|
||||
"SQL data definition": (
|
||||
"create ",
|
||||
"declare ",
|
||||
"drop ",
|
||||
"truncate ",
|
||||
"alter ", ),
|
||||
"alter ", ),
|
||||
|
||||
"SQL data manipulation": (
|
||||
"insert ",
|
||||
"update ",
|
||||
"delete ",
|
||||
"merge ", ),
|
||||
"merge ",
|
||||
"load ", ),
|
||||
|
||||
"SQL data control": (
|
||||
"grant ", ),
|
||||
"grant ", ),
|
||||
|
||||
"SQL data execution": (
|
||||
" exec ",
|
||||
"execute ", ),
|
||||
"execute ", ),
|
||||
|
||||
"SQL transaction": (
|
||||
"start transaction ",
|
||||
"begin work ",
|
||||
"begin transaction ",
|
||||
"commit ",
|
||||
"rollback ", ),
|
||||
"rollback ", ),
|
||||
}
|
||||
|
||||
# Regular expressions used for parsing error messages (--parse-errors)
|
||||
|
|
Loading…
Reference in New Issue
Block a user