通过curl模拟带cookie的请求,常用于需要登录才能访问的页面。
cd /home
touch cookie.txt
curl -c ./cookie.txt http://www.test.com
访问后,将会把cookie记录到当前目录下的cookie.txt文件中。
修改cookie.txt,将其中的phpsessionID改成你已登录的信息。然后请求时使用cookie带过去,就可以登录了:
curl -b ./cookie.txt http://www.test.com
通过curl模拟带cookie的请求,常用于需要登录才能访问的页面。
cd /home
touch cookie.txt
curl -c ./cookie.txt http://www.test.com
访问后,将会把cookie记录到当前目录下的cookie.txt文件中。
修改cookie.txt,将其中的phpsessionID改成你已登录的信息。然后请求时使用cookie带过去,就可以登录了:
curl -b ./cookie.txt http://www.test.com