首先,我们需要打开你想登陆的网站,输入账号密码,用fiddler抓包,看看他的post请求都有什么内容。
看到它有post里面带着4个参数,好,接下来我们就用Python 模拟这4个参数。
原理是:模拟发送post请求,得到post的结果。
import requests
def LoginByPost():
loginUrl='http://xxx.xxx/xxx/xxx.xxx?s=xxxxxx'
postData={'user_name':'xxxx','user_pwd':'xxxxx','submit':'登录','__hash__':'xxxxx'}
s=requests.session()
rs=s.post(loginUrl,postData)
rs.encoding='utf-8'
print(rs.text)
LoginByPost()
这里我用到了requests库,登录的地址是你抓包后它自己跳转的地址(有的网站输入登陆的后台他会跳转的)。
Python3 test.py 之后,为什么没有效果呢?
仔细观察才发现,你模拟的post只是一个,你需要模拟人家所有的post才可以被认为是一个完整的登录请求。
如下图:
蓝色的还有四个,你必须都得写上,然后才能被认为是正常登陆,每个url是不同的,请注意一下。
requests.exceptions.ConnectionError: HTTPConnectionPool(host='xxx.xxx.xxx', port=80): Max retries exceeded with url: /xxx/xxx.xxx?s=xxx (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known'))
加上
@retry(需要捕获的异常,延迟几秒)
from retry import retry
@retry(requests.exceptions.ConnectionError,delay=2)
用这样的方法可以让他在遇到这个异常不成功的时候一直发送请求,直到得到正确结果为止。
后面自动更新的参数就不放出来了,它是通过访问特定形式的长url来达到更新的。
这个坑饶了我很长时间,网上的办法试了都没成效,这个就当是暴力请求吧,hahahahahaha~