Frontpage服务器扩展是一种方便的远程站点管理功能。简单的说就是你装了frontpage就可以通过它来管理你的站点了。但由于某些网络管理员的疏忽,不设访问密码,这便留下了致命的安全隐患。这种漏洞的攻击方法简单得很,只要你有一台安装了frontpage并能上网的机器便可以修改这个站点的网页了。这个漏洞只是网管的疏忽造成的,没有任何利用价值。也就是改改网页,要进一步控制主机,拿到root,这个漏洞就无能为力了一般的安装方法:
登陆给你提供的空间,找到类似”高级管理功能“里面有“安装FP2000(frontpage2000)在后面的页面里输入密码,好了扩展功能完成----记住设密码
浅妄薄见,望与斟酌

解决方案 »

  1.   

    是不是可以利用文本文件?用php的mail就可以将其传入你的信箱.
      

  2.   

    用mail()函数不是可以直接把数据了到信箱里吗?
    我以前用过的
      

  3.   

    mail函数在大部分服务器上均不能使用.
      

  4.   

    如果想要用mail函数处理邮件 For Windows users, you can likely set the SMTP directive in the php.ini
    configuration file to your isp's SMTP mail server - the same as you use
    for outgoing mail in your email client (Eudora, Outlook, etc.) . However,
    check with your ISP before doing this!eg
    SMTP = mail.your_isp.com
      

  5.   

    如果是自己的机那好办,装SMTP服务器和设php.ini都是easy的事情,但如果是虚拟主机就难办多了.
      

  6.   

    一个最简单的mail发送脚本# mail.php<?php
    mail("[email protected]", $sub, $msg, "From: $mail");
    ?>php# feedback.htm<!-- 蓝色在线——注册表中转站 http://www.blue-online.net/-->
    <HTML><HEAD><TITLE>Send Mail to Me</TITLE>
    <META http-equiv=Content-Type content="text/html; charset=gb2312">
    <META content="MSHTML 5.50.4522.1800" name=GENERATOR><SCRIPT language=javascript>
    function check_input()  
    {  
    if (Frm.sub.value=="")
    {   alert("&Ouml;÷&Igrave;&acirc;&sup2;&raquo;&Auml;&Uuml;&Icirc;&ordf;&iquest;&Otilde;&pound;&not;&Ccedil;&euml;&Ouml;&Oslash;&ETH;&Acirc;&Igrave;&icirc;&ETH;&acute;&pound;&iexcl;");
    return false;
    }
    if (Frm.msg.value=="")
    {   alert("&Aacute;&ocirc;&Ntilde;&Ocirc;&Auml;&Uacute;&Egrave;&Yacute;&sup2;&raquo;&Auml;&Uuml;&Icirc;&ordf;&iquest;&Otilde;&pound;&not;&Ccedil;&euml;&Ouml;&Oslash;&ETH;&Acirc;&Igrave;&icirc;&ETH;&acute;&pound;&iexcl;");
    return false;
    }
            if (Frm.name.value=="" )
    {   alert("&ETH;&Otilde;&Atilde;&ucirc;&sup2;&raquo;&Auml;&Uuml;&Icirc;&ordf;&iquest;&Otilde;&pound;&not;&Ccedil;&euml;&Ouml;&Oslash;&ETH;&Acirc;&Igrave;&icirc;&ETH;&acute;&pound;&iexcl;");
    return false;
    }
         if (Frm.mail.value=="")
    {   alert("E&pound;&shy;mail&micro;&Oslash;&Ouml;·&sup2;&raquo;&Auml;&Uuml;&Icirc;&ordf;&iquest;&Otilde;&pound;&not;&Ccedil;&euml;&Ouml;&Oslash;&ETH;&Acirc;&Igrave;&icirc;&ETH;&acute;&pound;&iexcl;");
    return false;
    }
            return true;
    }
    </SCRIPT></HEAD>
    <BODY text=#000000 bgColor=#ffffff >
    <TABLE cellSpacing=0 cellPadding=0 border=0 width="180" align="center">
      <TBODY> 
      <TR> 
         <TD vAlign=top> 
             <FORM name=Frm onsubmit="return check_input()" action="mail.php"
          method=post><P align="center">&Ouml;÷&Igrave;&acirc;:
                <div align="center">
                  <INPUT  maxLength=256 size=26 name=sub onmouseover=this.focus()>
                </div>
            <div align="center">
             
              &Aacute;&ocirc;&Ntilde;&Ocirc;: </div>
            <div align="center">
                  <TEXTAREA name=sg rows=6 cols=42 onmouseover=this.focus()></TEXTAREA>
                </div>
            <div align="center"> 
              
              &ETH;&Otilde;&Atilde;&ucirc;: 
              <INPUT maxLength=256 size=35 name=name  onmouseover=this.focus()>
                  <br>
              
              E-Mail: 
              <INPUT maxLength=256 size=35 name=email onmouseover=this.focus()>
              </div><div align="center">
                  
              <INPUT type=submit value=Send onfocus=this.blur()>
              <img src="image/none.gif" width="10" height="8"> 
              <INPUT type=reset value=Reset  onfocus=this.blur()>
                </div></FORM></TD>
      </TR>
      </TBODY>
    </TABLE>
    </BODY></HTML>
      

  7.   

    晕,alert的里的中文有乱码,你自己改吧这里怎么编辑自己的帖子?