有关去掉xp_cmdshell来保护系统的分析总结: 首先知道一下语句: 1.去掉xp_cmdshell扩展过程的方法是使用如下语句: if exists (select * from dbo.sysobjects where id=object_id(n'[dbo].[xpcmdshell]') and objectproperty(id,n'isextendedproc')=1)exec sp_dropextendedproc n'[dbo].[xp_cmdshell]' 2.添加xp_cmdshell扩展过程的方法是使用如下语句: sp_addextendedproc xp_cmdshell,@dllname='xplog70.dll' 现在看看现象: 我们在取得sa权限后远程用sqlexec执行cmd命令,出现提示sql_error,那么很可能是去掉了xp_cmdshell。