php curl 模拟登陆 账户密码如何上传!

查看:119
本文介绍了php curl 模拟登陆 账户密码如何上传!的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

网页代码

<META http-equiv=Content-Type content="text/html; charset=gb2312">
<META NAME="Author" CONTENT="wsp">
<META NAME="Keywords" CONTENT="cmts">
<META NAME="Description" CONTENT="cmts manage">
<SCRIPT language=JavaScript type=text/javascript>
function login_click(formm)  //输入用户名称密码函数
{
 if(formm.operator_id.value == "") 
  {
   alert("请输入用户号码");
   formm.operator_id.focus();
   return false;
  }
 if(formm.operator_password.value == "") 
  {
   alert("请输入用户密码");
   formm.operator_password.focus(); 
   return false;
  }

 formm.submit();
 return false;
}
</SCRIPT>

</HEAD>

<BODY onkeydown="if (event.keyCode == 13){login_click(document.all.form1);}" style="OVERFLOW:hidden" bgColor='#eeeeee'>

 <TABLE height="100%" cellSpacing=0 cellPadding=0 width="100%" border='0'>

  <TBODY>

   <TR>

    <TD>

     <FORM name="form1" action='/login_check.php' method=post>

      <TABLE  width="100%" height=180 cellSpacing=0 cellPadding=0 bgColor='#0B4199' border='0' borderColor='#000000'>

       <TBODY>

        <TR>

          <TD vAlign=top align=middle width="62.7%"><IMG src="/images/cmlogo.jpg" width=650 height=180></TD>

          <TD vAlign=top>

            <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>

             <TBODY>              

              <TR><TD colSpan=3 height=60><BR></TD></TR>

              <TR>           
                <TD noWrap width="1%">工号(U)</TD>
                <TD><INPUT accessKey=U maxLength=16 type='text' style='width:100px;height:20px' name="operator_id" id="manager_id"></TD>
          </TR>

              <TR>        
                <TD noWrap width="1%">密码(P)</TD>
                <TD><INPUT accessKey=P maxLength=16 type='password' style='width:100px;height:20px' name='operator_password'></TD>
          </TR>

              <TR>
               <TD colSpan=1 height=2><BR></TD>
               <TD height=2>
        <INPUT  type='button' value=登录  onclick=login_click(this.form) name='Login'> 
                <INPUT  type='reset' value=重置 name='reset'>
          </TD>
         </TR>

           </TBODY>

       </TABLE>

      </TD>
              
     </TR>

    </TBODY>

       </TABLE>

      </FORM>

     </TD>

    </TR>

   </TBODY>

  </TABLE>
        
 </BODY>

POST http://10.30.68.11/login_check.php HTTP/1.1
Host: 10.30.68.11
Connection: keep-alive
Content-Length: 36
Cache-Control: max-age=0
Origin: http://10.30.68.11
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36
Content-Type: application/x-www-form-urlencoded
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
Referer: http://10.30.68.11/login.php
Accept-Encoding: gzip, deflate
Accept-Language: zh-CN,zh;q=0.8
Cookie: PHPSESSID=2e764e6bf96979b430ad231ce2198a4a

operator_id=86&operator_password=951

自己的做法:

     $cookie_jar = dirname(__FILE__)."/pic.cookie";
     $post = "operator_id=86&operator_password=951";    
     $ch = curl_init();
     curl_setopt($ch, CURLOPT_URL, "http://10.30.68.11/login_check.php");
     curl_setopt($ch, CURLOPT_HEADER, 0);
     curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
     curl_setopt($curl, CURLOPT_POST, 1);
     curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
     curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_jar);
     $result=curl_exec($ch);
     var_dump($result);
     curl_close($ch);

解决方案

curl_setopt($curl, CURLOPT_USERPWD, $username . ':' . $password);

这篇关于php curl 模拟登陆 账户密码如何上传!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆