You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After a 30 minutes investigation, In SQLite, table and column names cannot be parameterized only the values, so we are forced to use string construction but...
We can query the database first to find if there is a table with that name or not, this means the table name will be used as a value here which can be parameterized
SELECT tbl_name FROM sqlite_master WHERE TYPE = 'table' AND tbl_name = ?
The DAST would still fail, but there will be a very good justification
Describe the bug
I have been asked to perform a DAST to my capacitor application, and I got these risks using immuniweb.com
This 1 High risk is due to these statements in the code
Any chance you might be looking into this?
The text was updated successfully, but these errors were encountered: