当前位置: 首页 > 图文教程 > 网络编程 > PHP > 如何使用脚本模仿登陆过程

PHP
Web开发人员编程模型:隔离级别
采用.htaccess设置网站的压缩与缓存
PHP教程:PHP编程中的变量生存周期
PHP教程:isset() , unnset(), empty()
国外优秀的PHP开源网站内容管理系统
PHP 页面跳转到另一个页面的多种方法方法总结
php侧拉菜单 漂亮,可以向右或者向左展开,支持FF,IE
php foreach、while性能比较
关于Appserv无法打开localhost问题的解决方法
php 魔术方法使用说明
php实现mysql同步的实现方法
php 3行代码的分页算法(求起始页和结束页)
PHP字符串 ==比较运算符的副作用
Wordpress php 分页代码
PHP 长文章分页函数 带使用方法,不会分割段落,翻页在底部
php self,$this,const,static,->的使用
PHP教程 基本语法
PHP教程 变量定义
PHP 处理图片的类实现代码
PHP教程 预定义变量

PHP 中的 如何使用脚本模仿登陆过程


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 94 ::
收藏到网摘: n/a

查看他的登陆页面的代码, 看他提交到哪个页面, 变量是什么。
复制代码 代码如下:

<form method="post" action="login.jsp">
<table align="center" width="40%" style="FONT-SIZE: 12px" border="0" cellpadding="0" cellspacing="2">
<tr>
<td width="30%" align="right" bgcolor="#0073AA" style="FONT-SIZE: 12px;color:#ffffff">name:</td>
<td width="70%"><input type="text" size="30" name="username"></td>
</tr>
<tr>
<td width="30%" align="right" bgcolor="#0073AA" style="FONT-SIZE: 12px;color:#ffffff">password:</td>
<td width="70%"><input type="password" size="32" name="passwd"></td>
</tr>
<tr>
<td colspan="2" align="right">
<input type="submit" name="submit" value="Login">
<input type="button" name="submit" value="regest" onclick="location.href='regest.jsp'">
</td>
</tr>
</table>
</form>

很明显, 如果你要登陆, 你需要把username, passwd, submit这几个变量post到login.jsp, 而且submit=Login
用以下代码:
复制代码 代码如下:

<?php
$postData = "username=your_name&password=your_password&Submit=Login";
$posturl = "http://......../../login.jsp";
$postUrl = parse_url($posturl);
$host = $postUrl[host] ? $postUrl[host] : "";
$port = $postUrl[port] ? $postUrl[port] : 80;
$path = $postUrl[path] ? $postUrl[path] : "/";

$fsp = fsockopen($host, $port, &$errno, &$errstr, 30);
if(!$fsp){
print "\nopen socket failed\n";
}else{
fwrite($fsp, "POST ".$path." HTTP/1.1\r\n");
fwrite($fsp, "Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*\r\n");
fwrite($fsp, "Accept-Language: zh-cn\r\n");
fwrite($fsp, "Content-Type: application/x-www-form-urlencoded\r\n");
fwrite($fsp, "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Maxthon)\r\n");
fwrite($fsp, "Host:".$host."\r\n");
fwrite($fsp, "Content-Length: ".strlen($postData)."\r\n\r\n");
fwrite($fsp, $postData);
$resp = "";
do{
if(strlen($out=fread($fsp, 1024)) == 0) break;
$resp .= $out;
}while(true);
echo "<br><br>".nl2br($resp);
fclose($fsp);
}
?>