From bc8e4c8691ea0f60b19fea4c221c6c45ca0e3771 Mon Sep 17 00:00:00 2001 From: stamparm Date: Mon, 29 Apr 2013 16:57:35 +0200 Subject: [PATCH] Minor docu fix --- Usage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Usage.md b/Usage.md index fc743d9..d2bcc48 100644 --- a/Usage.md +++ b/Usage.md @@ -810,14 +810,14 @@ This switch can be used to specify which SQL injection type to test for. By defa In certain situations you may want to test only for one or few specific types of SQL injection thought and this is where this switch comes into play. -This switch requires an argument. Such argument is a string composed by any combination of `B`, `E`, `U`, `S` and `T` characters where each letter stands for a different technique: +This switch requires an argument. Such argument is a string composed by any combination of `B`, `E`, `U`, `S`, `T` and `Q` characters where each letter stands for a different technique: * `B`: Boolean-based blind * `E`: Error-based * `U`: Union query-based * `S`: Stacked queries * `T`: Time-based blind -* `Q`: Inline query +* `Q`: Inline queries For instance, you can provide `ES` if you want to test for and exploit error-based and stacked queries SQL injection types only. The default value is `BEUSTQ`.