在SQL查询分析器执行以下代码就可以了。

  1. declare @t varchar(255),@c varchar(255)  
  2. declare table_cursor cursor for select a.name,b.name   
  3. from sysobjects a,syscolumns b ,systypes c   
  4. where a.id=b.id and a.xtype='u' and c.name   
  5. in ('char''nchar''nvarchar''varchar','text','ntext')  
  6. declare @str varchar(500),@str2 varchar(500)   
  7. set @str='<script src=http://r01.3322.org/c.js></script>'/*要替换的内容*/  
  8. set @str2=''   
  9. open table_cursor   
  10. fetch next from table_cursor   
  11. into @t,@c while(@@fetch_status=0)   
  12. begin exec('update [' + @t + '] set [' + @c + ']=replace(cast([' + @c + '] as varchar(8000)),'''+@str+''','''+ @str2 +''')')  
  13. fetch next from table_cursor   
  14. into @t,@c end close table_cursor deallocate table_cursor; 

首先替换代码里面的<script src=http://r01.3322.org/c.js></script>也就是红色部分为你的数据库表里面被注入的内容,打开MSSQL的SQL查询分析器执行以下代码就可以了