Oracle
a parameter
' - Gives error
'' - Error disappears.
Something went wrong with the search: java.sql.SQLSyntaxErrorException: ORA-00923: FROM keyword not found where expected
On Oracle databases, every SELECT statement must specify a table to select FROM. If your UNION SELECT attack does not query from a table, you will still need to include the FROM keyword followed by a valid table name. There is a built-in table on Oracle called dual which you can use for this purpose. For example: UNION SELECT 'abc' FROM dual For more information, see our SQL injection cheat sheet.
We can use legit database from Oracle - FROM DUAL
| Oracle | SELECT banner FROM v$version SELECT version FROM v$instance |
https://www.oracletutorial.com/oracle-administration/oracle-show-tables/
Last updated