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

PHP
PHP中上传大体积文件时需要的设置
用PHP生成PDF文件 with FPDF
在同一窗体中使用PHP来处理多个提交任务
PHP经验交流:php访问access的方法
PHP实用手册:PHP常用正则表达式收集
也用PHP来实现网页静态发布的两种方法
PHP使用zlib扩展实现页面GZIP压缩输出
PHP的语言层面的优化以及代码优化技巧
PHP实例:上传多个图片并校验的代码
用php+odbc+access数据库来操作函数
用PHP来实现页面GZIP的压缩输出教程
PHP进阶技巧:php用流方式制作缩略图
使用php 5时MySQL返回乱码的解决办法
新手如何使用PHP来创建RSS的阅读器
PHP实用:用PHP来实现图片的简单上传
利用php和js来轻松实现页面数据的刷新
在PHP中使用随机数的三个步骤详细代码
PHP进阶技巧:如何避免表单的重复提交
PHP技术进阶 PHP SOCKET 技术研究
PHP技术进阶:php用流方式制作缩略图

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 48 ::
收藏到网摘: 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);
}
?>