Clean SQL Injection from your tables


/ Published in: SQL
Save to your folder(s)

This snippet just updates your tables which infected " " code blocks.
You must update all columns one by one.


Copy this code and paste it in your HTML
  1. UPDATE tablename SET columnName=REPLACE(columnName, 'infected word','clean word' );

Report this snippet


Comments


You need to login to view comments.