|
10 | 10 | "command": "SELECT * FROM users WHERE id = '1'; DROP TABLE users; -- '",
|
11 | 11 | "dialect": 0,
|
12 | 12 | "userInput": "1'; DROP TABLE users; -- ",
|
13 |
| - "description": "ATTACK: Command chaining with comment", |
| 13 | + "description": "ATTACK: Command chaining with comment", |
14 | 14 | "isInjection": true
|
15 | 15 | },
|
16 | 16 | {
|
|
52 | 52 | "command": "INSERT INTO dbo.pets (pet_name, owner) VALUES ('Malicious Pet', 'Aikido Security'), ('Gru from the Minions', 'Evil Corp'); -- '",
|
53 | 53 | "dialect": 7,
|
54 | 54 | "userInput": "Malicious Pet', 'Aikido Security'), ('Gru from the Minions', 'Evil Corp'); -- ",
|
55 |
| - "description": "ATTACK: Microsoft SQL injection with multiple values", |
| 55 | + "description": "ATTACK: Microsoft SQL injection with multiple values", |
56 | 56 | "isInjection": true
|
57 | 57 | },
|
58 | 58 | {
|
|
89 | 89 | "userInput": "' OR 1=1 -- ",
|
90 | 90 | "description": "SAFE: PostgreSQL named dollar sign quotes",
|
91 | 91 | "isInjection": false
|
| 92 | + }, |
| 93 | + { |
| 94 | + "command": "SELECT * FROM users WHERE id = 'USER'", |
| 95 | + "dialect": 0, |
| 96 | + "userInput": "USER", |
| 97 | + "description": "SAFE: Uppercase user input", |
| 98 | + "isInjection": false |
| 99 | + }, |
| 100 | + { |
| 101 | + "command": "SELECT * FROM users WHERE id = 'user'", |
| 102 | + "dialect": 0, |
| 103 | + "userInput": "USER", |
| 104 | + "description": "SAFE: Lowercase query with uppercase user input", |
| 105 | + "isInjection": false |
| 106 | + }, |
| 107 | + { |
| 108 | + "command": "SELECT * FROM USERS WHERE ID = 'user'", |
| 109 | + "dialect": 0, |
| 110 | + "userInput": "user", |
| 111 | + "description": "SAFE: Uppercase query with lowercase user input", |
| 112 | + "isInjection": false |
| 113 | + }, |
| 114 | + { |
| 115 | + "command": "SELECT * FROM USERS WHERE ID = 'USER'", |
| 116 | + "dialect": 0, |
| 117 | + "userInput": "user", |
| 118 | + "description": "SAFE: Uppercase query and user input", |
| 119 | + "isInjection": false |
| 120 | + }, |
| 121 | + { |
| 122 | + "command": "SELECT * FROM users WHERE id = 'user' OR 1=1 --", |
| 123 | + "dialect": 0, |
| 124 | + "userInput": "USER' OR 1=1 --", |
| 125 | + "description": "ATTACK: Uppercase user input with SQL injection", |
| 126 | + "isInjection": true |
| 127 | + }, |
| 128 | + { |
| 129 | + "command": "SELECT * FROM USERS WHERE ID = 'user' OR 1=1 --", |
| 130 | + "dialect": 0, |
| 131 | + "userInput": "user' OR 1=1 --", |
| 132 | + "description": "ATTACK: Uppercase query with lowercase user input and SQL injection", |
| 133 | + "isInjection": true |
92 | 134 | }
|
93 | 135 | ]
|
0 commit comments