mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Adding inference support for DM8 (#5894)
This commit is contained in:
parent
45d5a88150
commit
aa1eef9fa5
3 changed files with 5 additions and 3 deletions
|
|
@ -424,6 +424,8 @@ class Agent(object):
|
|||
payload = re.sub(r"(?i)\bORD\(", "ASCII(", payload)
|
||||
payload = re.sub(r"(?i)\bMID\(", "SUBSTR(", payload)
|
||||
payload = re.sub(r"(?i)\bNCHAR\b", "CHAR", payload)
|
||||
elif hashDBRetrieve(HASHDB_KEYS.DBMS_FORK) in (FORK.DM8,):
|
||||
payload = re.sub(r"(?i)\bSUBSTRC\(", "SUBSTR(", payload)
|
||||
|
||||
# NOTE: https://github.com/sqlmapproject/sqlmap/issues/5057
|
||||
match = re.search(r"(=0x)(303a303a)3(\d{2,})", payload)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue