sql_error_messages
ORACLE: ORA-01756: quoted string not properly terminated
ORA-00933: SQL command not properly ended
MS-SQL: MSG 170, Level 15, State 1, Line 1
Line 1: Incorrect syntax near 'foo

MSG 105L, Level 15, State 1, Line 1
Unclosed quotation mark before the character string 'foo

MYSQL: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ''foo' at line X
TRANSLATION: For Oracle and MS-SQL, SQL injection is present, and it is almost certainly exploitable! If you entered a single quote and it altered the syntax of the database query, this is the error you'd expect.

For MySQL, SQL injection may well be present, but the same error message can appear in other contexts.


ORACLE: ERROR MESSAGE
MS-SQL: ERROR MESSAGE
MYSQL: ERROR MESSAGE
TRANSLATION: Explanation here.
ORACLE: ERROR MESSAGE
MS-SQL: ERROR MESSAGE
MYSQL: ERROR MESSAGE
TRANSLATION: Explanation here.
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-Share Alike 2.5 License.