爬虫逆向实战(20)-某99网站登录(魔改md图片验证码)
import requests
from hashlib import md5
import time
from PIL import Image
import pytesseract
# 配置参数
login_url = 'http://www.99.la/api/user/login'
captcha_url = 'http://www.99.la/api/user/captcha'
username = '你的账号'
password = '你的密码'
# 请求验证码
response = requests.get(captcha_url)
with open('captcha.jpg', 'wb') as f:
f.write(response.content)
# 识别验证码
image = Image.open('captcha.jpg')
captcha = pytesseract.image_to_string(image).strip()
# 魔改md5加密
def md5_encryption(password, captcha):
time_stamp = str(int(time.time()))
md5_handler = md5(f'{captcha}{password}{time_stamp}'.encode('utf-8'))
return md5_handler.hexdigest()
# 登录请求
session = requests.session()
data = {
'username': username,
'password': md5_encryption(password, captcha),
'captcha': captcha,
}
response = session.post(login_url, data=data)
print(response.json())
这段代码首先配置了登录和验证码的URL,以及用户的账号和密码。然后获取验证码图片并使用OCR库识别验证码。接着定义了一个魔改md5加密的函数,该函数将验证码、密码和当前时间戳作为参数进行加密。最后通过session发送一个POST请求进行登录。
评论已关闭