学习了php不久,想要登陆我们学校的教务管理系统抓取下信息,可是验证码那关实在不知道怎么过
210.44.176.133/(0qus0s55gb1ojp45n2h0sr55)/Default2.aspx
///
还请论坛的牛人们指点指点
回复讨论(解决方案)
验证码 要么人肉要么机器识别,机器识别要根据验证码的特征做处理,没那么简单.人肉嘛做个输入提交,带上cookie.
有验证码的做模拟登入太麻烦,要识别验证码。只要对方改个复杂的,就没办法了。
验证码 要么人肉要么机器识别,机器识别要根据验证码的特征做处理,没那么简单.人肉嘛做个输入提交,带上cookie.
我是要人肉输入,验证码已经取到,现在在post的时候返回一个Object moved to here.
百度了下说是陷入了重定向,不懂爱这里犯迷糊了,不知该如何处理呢?
有验证码的做模拟登入太麻烦,要识别验证码。只要对方改个复杂的,就没办法了。
我是要人肉输入,验证码已经取到,现在在post的时候返回一个Object moved to here.
百度了下说是陷入了重定向,不懂爱这里犯迷糊了,不知该如何处理呢?
CURLOPT_FOLLOWLOCATION 有设置这个为1吗?
CURLOPT_FOLLOWLOCATION 有设置这个为1吗?
设上果真没了,现在是 Bad Request (Invalid Number),这又是什么问题啊
你传入的数字不合法,看看是不是人家让输入数字,你输入其他内容了。
最好贴出你代码分析下。
最好贴出你代码分析下。
经过分析发现,实际登陆地址应该是210.44.176.133,然后被重定向到这样的地址210.44.176.133/(0qus0s55gb1ojp45n2h0sr55)/Default2.aspx,中间括号里的是随机的每次都不同,现在那我应该怎么样去得到这重定向后的地址呢?
这是我写的方法
function curl_get_url(){ $cookie_file=tempnam('./ck','cookie'); $ch = curl_init("http://210.44.176.133"); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch,CURLOPT_FOLLOWLOCATION,true); curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file); curl_setopt($ch, CURLOPT_MAXREDIRS, 10); $data = curl_exec($ch);//运行curl curl_close($ch); return $data; }
你传入的数字不合法,看看是不是人家让输入数字,你输入其他内容了。
经过分析发现,实际登陆地址应该是210.44.176.133,然后被重定向到这样的地址210.44.176.133/(0qus0s55gb1ojp45n2h0sr55)/Default2.aspx,中间括号里的是随机的每次都不同,现在那我应该怎么样去得到这重定向后的地址呢?
这是我写的方法
function curl_get_url(){ $cookie_file=tempnam('./ck','cookie'); $ch = curl_init("http://210.44.176.133"); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch,CURLOPT_FOLLOWLOCATION,true); curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file); curl_setopt($ch, CURLOPT_MAXREDIRS, 10); $data = curl_exec($ch);//运行curl curl_close($ch); return $data; }
Request URL:http://210.44.176.133/
Request Method:GET
Status Code:302 Found
Request Headersview source
Accept:text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
Accept-Encoding:gzip,deflate,sdch
Accept-Language:zh-CN,zh;q=0.8
Cache-Control:max-age=0
Connection:keep-alive
Cookie:TTKlinkFirst=1; Hm_lvt_f5127c6793d40d199f68042b8a63e725=1390729405,1390740179,1390790720,1390790808; Hm_lpvt_f5127c6793d40d199f68042b8a63e725=1390791234
Host:210.44.176.133
User-Agent:Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36
Response Headersview source
Cache-Control:private
Connection:close
Content-Length:158
Content-Type:text/html; charset=gb2312
Date:Mon, 27 Jan 2014 02:54:29 GMT
Location:/(di3bfgq4zqk5c23n2ofovr45)/Default2.aspx
Server:Microsoft-IIS/6.0
X-AspNet-Version:1.1.4322
X-Powered-By:ASP.NET
在 curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file); 前面加上
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file);
你用的是 get 方式,一般登录应该是 post 方式吧
你的地址是内网地址,无法测试
只能你自己慢慢调试了
在 curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file); 前面加上
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file);
你用的是 get 方式,一般登录应该是 post 方式吧
你的地址是内网地址,无法测试
只能你自己慢慢调试了
这不是post的地方,是post之前的访问地址,post的时候没有提交cookie,学校是是通过记录那段随机地址来判断用户的应该是,现在就是想得到那个随机地址,这是你登陆页面,登陆后会跳转
210.44.176.133 --跳转--> 210.44.176.133 /(0qus0s55gb1ojp45n2h0sr55)/Default2.aspx
,然后在跳转之后的页面提交表单,可是不知道怎样得到这个地址唉。。。
用正则提取地址

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1
Easy-to-use and free code editor
