Skip to content

Commit

Permalink
additional sqli error strings
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidsec committed Oct 15, 2024
1 parent eef8adf commit f1f8a66
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bbot/modules/lightfuzz_submodules/sqli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,17 @@

class SQLiLightfuzz(BaseLightfuzz):
expected_delay = 5

sqli_error_strings = [
"Unterminated string literal",
"Failed to parse string literal",
"error in your SQL syntax",
"syntax error at or near",
"Unknown column",
"unterminated quoted string",
"Unclosed quotation mark",
"Incorrect syntax near",
"SQL command not properly ended",
"string not properly terminated"
]

def evaluate_delay(self, mean_baseline, measured_delay):
Expand Down

0 comments on commit f1f8a66

Please sign in to comment.