Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 82b4682

Browse files
committed
Minor update
1 parent f340ce8 commit 82b4682

1 file changed

Lines changed: 24 additions & 24 deletions

File tree

lib/core/enums.py

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -173,39 +173,39 @@ class REDIRECTION:
173173

174174
class PAYLOAD:
175175
SQLINJECTION = {
176-
1: "boolean-based blind",
177-
2: "error-based",
178-
3: "UNION query",
179-
4: "stacked queries",
180-
5: "AND/OR time-based blind",
181-
6: "inline query"
176+
1: "boolean-based blind",
177+
2: "error-based",
178+
3: "UNION query",
179+
4: "stacked queries",
180+
5: "AND/OR time-based blind",
181+
6: "inline query"
182182
}
183183

184184
PARAMETER = {
185-
1: "Unescaped numeric",
186-
2: "Single quoted string",
187-
3: "LIKE single quoted string",
188-
4: "Double quoted string",
189-
5: "LIKE double quoted string"
185+
1: "Unescaped numeric",
186+
2: "Single quoted string",
187+
3: "LIKE single quoted string",
188+
4: "Double quoted string",
189+
5: "LIKE double quoted string"
190190
}
191191

192192
RISK = {
193-
0: "No risk",
194-
1: "Low risk",
195-
2: "Medium risk",
196-
3: "High risk"
193+
0: "No risk",
194+
1: "Low risk",
195+
2: "Medium risk",
196+
3: "High risk"
197197
}
198198

199199
CLAUSE = {
200-
0: "Always",
201-
1: "WHERE",
202-
2: "GROUP BY",
203-
3: "ORDER BY",
204-
4: "LIMIT",
205-
5: "OFFSET",
206-
6: "TOP",
207-
7: "Table name",
208-
8: "Column name"
200+
0: "Always",
201+
1: "WHERE",
202+
2: "GROUP BY",
203+
3: "ORDER BY",
204+
4: "LIMIT",
205+
5: "OFFSET",
206+
6: "TOP",
207+
7: "Table name",
208+
8: "Column name"
209209
}
210210

211211
class METHOD:

0 commit comments

Comments
 (0)