安装IIS 5.0 DIY
2024-08-29 03:13:56
供稿:网友
作者:adam < [email protected] >
主页:http://www.nsfocus.com
日期:2000-12-14
在安装windows2000的时候,如果你选择了安装iis,那么在安装的时候系统将会你的%systemdrive%里创建一个inetpub目录,而且还会在inetpub目录下创建一个scripts目录,iis还会创建一个虚拟目录scipts指向该目录,并且给这
个目录执行权限。前段时间nsfocus安全小组研究发现的“unicode解码目录遍历漏洞”大部分问题就是针对web站点的可执行目录而言的,所以我们建议把该目录移到非系统盘在一定程度上可以保证一定的安全。
然而在我们选择安装系统组件的时候,无法自己定义iis的安装盘符,所以才有了今天的这篇文章。:)
我们在安装系统的时候不选择安装iis,等系统安装完成后手动来做,我们可以使用无人值守的方式自定义安装iis 5.0。首先确认你的 windows 2000的安装介质是可用的,本例中的安装介质是光盘,因此只要将安装光盘插入光驱即可,然后在你的硬盘或者软盘上创建一个无人值守安装文件,本例中我们将在d盘创建一个 iis5install.txt 作为无人值守安装文件,下面我们看看该文件的内容:
[components] '所安装的组件
iis_common = on '公用文件
iis_inetmgr = on 'iis管理器
iis_www = on 'www服务
iis_ftp = on 'ftp服务
iis_htmla = on 'web方式的iis管理器
[internetserver]
path="d:/inetsrv" 'common文件放置位置(如果你是卸载了iis再手动装,公用文件还是会位置保持不变)
pathftproot="d:/inetpub/ftproot" 'ftp的根路径
pathwwwroot="d:/inetpub/wwwroot" 'www的根路径
将该文件存盘后,运行“sysocmgr /i:%windir%/inf/sysoc.inf /u:d:/iis5install.txt”,
不会有提示框出现,系统将自动的为你安装好iis,而且scripts目录将会在d盘,使用“unicode解码目录遍历漏洞”也就
失效了。
如果你需要安装更多的iis组件,以下是一个比较详细的无人值守安装文件:
=========================================begin============================
;this is an example unattended installation file
;iis, mts, and index server are on
;target path should be new directory
;adminpassword is blank.
[unattended]
unattendmode = fullunattended
oempreinstall = no
targetpath = *
filesystem = leavealone
[userdata]
fullname = "your user name"
orgname = "your organization name"
computername = "computername"
[guiunattended]
timezone = "004"
adminpassword = *
autologon = yes
[licensefileprintdata]
automode = "perserver"
autousers = "0"
[display]
bitsperpel = 4
xresolution = 800
yresolution = 600
vrefresh = 70
[networking]
installdefaultcomponents = yes
[identification]
joinworkgroup = workgroup
;turns nt components (and their respective sections) on or off
[components]
iis_common = on
iis_inetmgr = on
iis_www = on
iis_ftp = on
iis_htmla = on
iis_doc = on
iis_pwmgr = on
iis_smtp = on
iis_smtp_docs = on
mts_core = on
msmq = off
terminalservices = off
reminst = off
certsrv = off
rstorage = off
indexsrv_system = on
certsrv_client = off
certsrv_server = off
certsrv_doc = off
[internetserver]
;without these keys specified iis will use the default settings
; note that the path is location for inetsrv, the core iis programs and files.
path=d:/securelocation
pathftproot=e:/inetpub/ftproot pathwwwroot=e:/inetpub/wwwroot