[php]discuz论坛登陆信息判断外部调用的用法实例(3)
方法3:直接写个静态的表单就能登陆论坛。
<form action="http://home.ecjtu.net/member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes" method="post" name="form2" onSubmit="return check()" >
<span class="form_tip">用户名</span><input name="username" type="text" id="textfield2" size="13" tabindex="1" style="float:left; width:140px;" value="请输入用户名" onFocus="this.value='';" onBlur="if(this.value==''){this.value='请输入用户名';}"><br /><br />
<span class="form_tip">密码</span><input name="password" type="password" id="password" size="12" style="float:left;width:140px;"><br /><br />
<center>tips:请用论坛号登陆<a href="http://home.ecjtu.net/member.php?mod=logging&action=login&viewlostpw">找回密码</a></center><br />
<input type="hidden" name="referer" value="http://home.ecjtu.net/home.php?mod=spacecp&ac=blog" />
<center>
<input type="submit" name="login" value="登录" />
<a href="http://home.ecjtu.net/member.php?mod=register"> 注册</a>
</center>
</form>
01 <form action="http://home.ecjtu.net/member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes" method="post" name="form2" onSubmit="return check()" >
02 <span class="form_tip">用户名</span><input name="username" type="text" id="textfield2" size="13" tabindex="1" style="float:left; width:140px;" value="请输入用户名" onFocus="this.value='';" onBlur="if(this.value==''){this.value='请输入用户名';}"><br /><br />
03 <span class="form_tip">密码</span><input name="password" type="password" id="password" size="12" style="float:left;width:140px;"><br /><br />
04 <center>tips:请用论坛号登陆<a href="http://home.ecjtu.net/member.php?mod=logging&action=login&viewlostpw">找回密码</a></center><br />
05 <input type="hidden" name="referer" value="http://home.ecjtu.net/home.php?mod=spacecp&ac=blog" />
06 <center>
07 <input type="submit" name="login" value="登录" />
08 <a href="http://home.ecjtu.net/member.php?mod=register"> 注册</a>
09 </center>
10 </form>
这种最简单的方法居然也可以实现登陆并跳转到发帖页面。开始看discuz的登录框表单中的name值都有随机值
这是用来做crsf保护的,以为不能直接提交表单。
热门文章推荐
- [php]优酷真实视频地址解析算法
- [Dz]discuz手机版支持视频播放的方法
- [PHP]php加密js解密的方法实例
- [php]用PHP打印出前一天的时间格式
- [PHP]mpeg,mp3,avi的ffmpeg的php转换类
- [php]php中3DES加密一个非常有用的3des加密
- [PHP]php.ini修改上传文件的大小限制处理方法
- [php]用过的最好用的php分页类源代码