通過禁止使用xp_cmdShell提高SQLServer安全

來源:互聯網
上載者:User

一般的駭客攻擊SQL Server時,首先採用的方法是執行xp_cmdshell命令來破壞資料庫,為了資料庫安全起見,最好禁止使用xp_cmdShell。

xp_cmdshell可以讓系統管理員以作業系統命令列解譯器的方式執行給定的命令字串,並以文本行方式返回任何輸出,是一個功能非常強大的擴充存貯過程。

一般情況下,xp_cmdshell對管理員來說也是不必要的,xp_cmdshell的消除不會對Server造成任何影響。

可以將xp_cmdshell消除:

Use Master

Exec sp_dropextendedproc N’xp_cmdshell’

Go 

如果需要的話,可以把xp_cmdshell恢複回來:

 Use Master

Exec sp_addextendedproc N’xp_cmdshell’, N’xplog70.dll’

Go

最好把Server的xp_cmdShell存貯過程消除。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.