本文目录一览:
- 1、IIS7.0伪静态怎么设置
- 2、IIS 伪静态规则问题
- 3、IIS下伪静态问题(301 泛域名伪静态 如何区分2个站伪静态),急需解决
- 4、如何防止xss攻击,需要过滤什么
- 5、iis 伪静态 xp系统 asp网站
- 6、asp.net下如何配置IIS做伪静态
IIS7.0伪静态怎么设置
安装iis,这个就不多说了。使用系统自带的启动或关闭windows功能来安装。
,下载并安装“web 平台安装程序”,目前最新版本为5.0,双击,下一步到底即可。
打开Internet Information Services(IIS)管理器,在管理中已经多了一个“Web 平台安装程序”,双击打开。
搜索“url”,搜索结果第一个"URL 重写工具2.0",点击该记录后面的添加,再点击下方的安装按钮,还是一步到底,完成之后,重启下iis管理器。
iis管理器下发现多了一个“url重写”即安装成功了。接下来就是如何使用.htaccess文件了。找一个需要伪静态的项目,例如888,然后再双击“url重写”。
找到右侧菜单中的导入规则。
点击浏览,找到要使用的.htaccess文件,单击导入
步骤阅读
点击右侧的“应用”,重新项目888或者是iis,查看下伪静态规则是否生效。
IIS 伪静态规则问题
网站无法搬到根目录下么,还是有其他原因,如果可以,建议直接搬过去,写规则,页面不一样,多的话麻烦,写漏了就404了,没那个条件就写伪静态吧,具体咋样的,得看你网站还有没有做其他设置,譬如已经做了一次伪静态了,有的程序就有,没有做过得话,直接public文件夹指向你得网址就可以了,其他网页网址如果带有public的,直接也可写函数替换掉,没处理好可以找额代弄,ok
IIS下伪静态问题(301 泛域名伪静态 如何区分2个站伪静态),急需解决
ISAPI_Rewrite 这个是独立站点的呀, 你只要在每个网站的根目录下放一个httpd.inin文件, 这个写好规则就好了。
如wp 的规则
RewriteRule /wpblog/feed/ /wpblog/index\.php/\?feed=rss2
如何防止xss攻击,需要过滤什么
XSS攻击通常是指黑客通过"HTML注入"篡改了网页,插入了恶意的脚本,从而在用户浏览网页时,控制用户浏览器的一种攻击。
一、HttpOnly防止劫取Cookie
HttpOnly最早由微软提出,至今已经成为一个标准。浏览器将禁止页面的Javascript访问带有HttpOnly属性的Cookie。目前主流浏览器都支持,HttpOnly解决是XSS后的Cookie支持攻击。
我们来看下百度有没有使用。
未登录时的Cookie信息
可以看到,所有Cookie都没有设置HttpOnly,现在我登录下
发现在个叫BDUSS的Cookie设置了HttpOnly。可以猜测此Cookie用于认证。
下面我用PHP来实现下:
?php
header("Set-Cookie: cookie1=test1;");
header("Set-Cookie: cookie2=test2;httponly",false);
setcookie('cookie3','test3',NULL,NULL,NULL,NULL,false);
setcookie('cookie4','test4',NULL,NULL,NULL,NULL,true);
?
script
alert(document.cookie);
/script
js只能读到没有HttpOnly标识的Cookie
二、输入检查
输入检查一般是检查用户输入的数据中是否包含一些特殊字符,如、、'、"等,如果发现存在特殊字符,则将这些字符过滤或者编码。
例如网站注册经常用户名只允许字母和数字的组合,或者邮箱电话,我们会在前端用js进行检查,但在服务器端代码必须再次检查一次,因为客户端的检查很容易绕过。
网上有许多开源的“XSS Filter”的实现,但是它们应该选择性的使用,因为它们对特殊字符的过滤可能并非数据的本意。比如一款php的lib_filter类:
$filter = new lib_filter();
echo $filter-go('1+11');
它输出的是1,这大大歪曲了数据的语义,因此什么情况应该对哪些字符进行过滤应该适情况而定。
三、输出检查
大多人都知道输入需要做检查,但却忽略了输出检查。
1、在HTML标签中输出
如代码:
?php
$a = "scriptalert(1);/script";
$b = "img src=# onerror=alert(2) /";
?
div?=$b?/div
a href="#"?=$a?/a
这样客户端受到xss攻击,解决方法就是对变量使用htmlEncode,php中的函数是htmlentities
?php
$a = "scriptalert(1);/script";
$b = "img src=# onerror=alert(2) /";
?
div?=htmlentities($b)?/div
a href="#"?=htmlentities($a)?/a
2、在HTML属性中输出
div id="div" name ="$var"/div
这种情况防御也是使用htmlEncode
在owasp-php中实现:
$immune_htmlattr = array(',', '.', '-', '_');
$this-htmlEntityCodec-encode($this-immune_htmlattr, "\"script123123;/script\"");
3、在script标签中输出
如代码:
?php
$c = "1;alert(3)";
?
script type="text/javascript"
var c = ?=$c?;
/script
这样xss又生效了。首先js变量输出一定要在引号内,但是如果我$c = "\"abc;alert(123);//",你会发现放引号中都没用,自带的函数都不能很好的满足。这时只能使用一个更加严格的JavascriptEncode函数来保证安全——除数字、字母外的所有字符,都使用十六进制"\xHH"的方式进行编码。这里我采用开源的owasp-php方法来实现
$immune = array("");
echo $this-javascriptCodec-encode($immune, "\"abc;alert(123);//");
最后输出\x22abc\x3Balert\x28123\x29\x3B\x2F\x2F
4、在事件中输出
a href="#" onclick="funcA('$var')" test/a
可能攻击方法
a href="#" onclick="funcA('');alter(/xss/;//')"test/a
这个其实就是写在script中,所以跟3防御相同
5、在css中输出
在owasp-php中实现:
$immune = array("");
$this-cssCodec-encode($immune, 'background:expression(window.x?0:(alert(/XSS/),window.x=1));');
6、在地址中输出
先确保变量是否是"http"开头,然后再使用js的encodeURI或encodeURIComponent方法。
在owasp-php中实现:
$instance = ESAPI::getEncoder();
$instance-encodeForURL(‘url’);
四、处理富文体
就像我写这篇博客,我几乎可以随意输入任意字符,插入图片,插入代码,还可以设置样式。这个时要做的就是设置好白名单,严格控制标签。能自定义 css件麻烦事,因此最好使用成熟的开源框架来检查。php可以使用htmlpurify
五、防御DOM Based XSS
DOM Based XSS是从javascript中输出数据到HTML页面里。
script
var x = "$var";
document.write("a href='"+x+"'test/a");
/script
按照三中输出检查用到的防御方法,在x赋值时进行编码,但是当document.write输出数据到HTML时,浏览器重新渲染了页面,会将x进行解码,因此这么一来,相当于没有编码,而产生xss。
防御方法:首先,还是应该做输出防御编码的,但后面如果是输出到事件或脚本,则要再做一次javascriptEncode编码,如果是输出到HTML内容或属性,则要做一次HTMLEncode。
会触发DOM Based XSS的地方有很多:
document.write()、document.writeln()、xxx.innerHTML=、xxx.outerHTML=、innerHTML.replace、document.attachEvent()、window.attachEvent()、document.location.replace()、document.location.assign()
iis 伪静态 xp系统 asp网站
最近陆续有很多站长过来询问伪静态的问题,现就分享下目前网上流行的各种程序在iis下的规则和设置方法:
shopex4.8
下载3.0的免费Rewrite组件
按照默认路径安装后,打开C:\Program
Files\Helicon\ISAPI_Rewrite3\httpd.conf
加入以下规则:
#
Helicon
ISAPI_Rewrite
configuration
file
#
Version
3.1.0.56
RewriteBase
/
RewriteCond
%{REQUEST_FILENAME}
\.(html|htm|php|php2|php3|php4|php5|phtml|pwml|inc|asp|aspx|ascx|jsp|cfm|cfc|pl|cgi|shtml|shtm|phtm|xml)$
RewriteCond
%{REQUEST_FILENAME}
!-f
RewriteCond
%{REQUEST_FILENAME}
!-d
RewriteRule
^(.*)$
index.php?$1
[L]
[ISAPI_Rewrite]
#
3600
=
1
hour
CacheClockRate
3600
RepeatLimit
32
#
Protect
httpd.ini
and
httpd.parse.errors
files
#
from
accessing
through
HTTP
RewriteRule
^(.*)/archiver/((fid|tid)-[0-9]+\.html)\?*(.*)$
$1/archiver/index\.php\?$2$4
RewriteRule
^(.*)/forum-([0-9]+)-([0-9]+)\.html\?*(.*)$
$1/forumdisplay\.php\?fid=$2page=$3$4
RewriteRule
^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html\?*(.*)$
$1/viewthread\.php\?tid=$2extra=page\%3D$4page=$3$4
RewriteRule
^(.*)/space-(username|uid)-(.+)\.html\?*(.*)$
$1/space\.php\?$2=$3$4
RewriteRule
^(.*)/tag-(.+)\.html\?*(.*)$
$1/tag\.php\?name=$2$3
下面就需要配置iis为shopex4.8加载组件了:
打开iis,右键你的站点属性--ISAPI
筛选器--添加--筛选器名称是ISAPI_Rewrite3
--可执行文件就是ISAPI_Rewrite.dll的路径,比如C:\Program
Files\Helicon\ISAPI_Rewrite3\ISAPI_Rewrite.dll
最后重启iis
当然你可以把ISAPI_Rewrite3目录放入站点根目录下,但记得要给一个users和"network
service"的读权限。
注意:有些服务器或者vps有做权限的,安装后httpd.conf可能只有everyone和system的权限,如果修改不了文件就添加一个administrator的权限。
shopex4.7
免费的rewrite2.0组件下载地址
安装后添加如下规则
规则如下:
[ISAPI_Rewrite]
#
3600
=
1
hour
CacheClockRate
3600
RepeatLimit
32
#首页
RewriteRule
/index.html
/index.php
RewriteRule
/default.html
/index.php
#商店公告
RewriteRule
/bulletin.html
/index.php\?gOo=article_list.dwtacat=1
RewriteRule
/bulletin_([0-9]+).html
/index.php\?gOo=article_list.dwtacat=1p=$1
#商品分类
RewriteRule
/catalog.html
/index.php\?gOo=goods_category.dwt
#全部商品
RewriteRule
/list.html
/index.php\?gOo=goods_search_list.dwt
RewriteRule
/list_([0-9]+).html
/index.php\?gOo=goods_search_list.dwtp=$1
#会员中心
RewriteRule
/member.html
/index.php\?gOo=member_home.dwt
#帮助中心与常见问题
RewriteRule
/faq.html
/index.php\?gOo=help.dwtacat=2
RewriteRule
/faq_([0-9]+).html
/index.php\?gOo=help.dwtacat=2p=$1
#安全交易
RewriteRule
/safe.html
/index.php\?gOo=help_safe.dwt
#购买流程
RewriteRule
/howtobuy.html
/index.php\?gOo=help_buystep.dwt
#如何付款
RewriteRule
/howtopay.html
/index.php\?gOo=help_send.dwt
#联系我们
RewriteRule
/contactus.html
/index.php\?gOo=help_contact.dwt
#关于我们
RewriteRule
/aboutus.html
/index.php\?gOo=help_copyright.dwt
#顾客留言
RewriteRule
/feedback.html
/index.php\?gOo=shopbbs.dwt
#友情链接
RewriteRule
/friendlink.html
/index.php\?gOo=linkmore.dwt
#用户注册
RewriteRule
/register.html
/index.php\?gOo=register_1.dwt
#忘记密码
RewriteRule
/lostpass.html
/index.php\?gOo=forget.dwt
#商品详细页
RewriteRule
/product/([0-9]+).html
/index.php\?gOo=goods_details.dwtgoodsid=$1
RewriteRule
/product_([0-9]+).html
/index.php\?gOo=goods_details.dwtgoodsid=$1
RewriteRule
/([0-9]+)_([^.]*).html
/index.php\?gOo=goods_details.dwtgoodsid=$1
#新闻详细页
RewriteRule
/article_([0-9]+).html
/index.php\?gOo=help_details.dwtarticleid=$1
RewriteRule
/message_([0-9]+).html
/index.php\?gOo=article_details.dwtarticleid=$1
#分类详细列表
RewriteRule
/catalog_([0-9]+).html
/index.php\?gOo=goods_search_list.dwtgcat=$1
RewriteRule
/catalog_([0-9]+)_([0-9]+).html
/index.php\?gOo=goods_search_list.dwtgcat=$1p=$2
#收藏商品
RewriteRule
/addtofavorites_([0-9]+).html
/index.php\?gOo=addmembergoods.dogoodsid=$1
#首页上的最新,推荐,特价商品
RewriteRule
/list_([a-zA-Z]+).html
/index.php\?gOo=goods_search_list.dwtgtype=$1
RewriteRule
/list_([a-zA-Z]+)_([0-9]+).html
/index.php\?gOo=goods_search_list.dwtgtype=$1p=$2
下面就需要配置iis为shopex4.7加载组件了,方法类似shopex4.8:
打开iis,右键你的站点属性--ISAPI
筛选器--添加--筛选器名称是Rewrite
--可执行文件就是Rewrite.dll的路径,比如E:\home\LocalUser\rewrite\Rewrite.dll
最后重启iis
rewrite.dll以及规则可以放入任何一个目录,但记得要给该目录一个users的读权限。
以上就是shopex4.8和shopex4.7的规则以及配置方法。如果iis内有其它程序比如discuz、phpwind之类的,就可能会相互有影响,那么就打开iis,
右键网站属性--ISAPI
筛选器--删除isapi_rewrite这项,因为这里是对整个iis进行设置的,会造成其它程序的冲突。
注意isapi_rewrite3.0和isapi_rewrite2.0不能混用。
因为篇幅问题,现在再把shopex4.7/4.8、discuz6/NT2.5、ecshop、dvbbs、phpwind、wordpress、Discuz6+ecshop等伪静态规则和组件打包进行下载。
以上设置都是针对租用了独立服务器和vps的,在使用虚拟主机的就不用看了,因为作为服务商是应该做好了的,但目前还没有出现对所有流行程序都支持的吧。
asp.net下如何配置IIS做伪静态
以iis5.1为例点击虚拟目录,右键-》属性》。点击配置,在影射选项卡中点添加,可执行文件路径一般为C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll。最后把检查文件是否存在去掉,确定就可以了