本文链接已迁移到: /posts/HDUACM-OJ-自动-AC-机

HDUACM OJ 自动 AC 机


背景

因为学校政策问题,大二才学习 C 语言课程,老师要求我们刷满 HDUOJ 60 道题目,当然像我这种已经 OI 退役的选手必然不想再碰算法,于是找 vy 要了一百多道 AC 代码,写了个爬虫交了上去。抓包看了下 HDU 的提交逻辑,发现完全没有对爬虫做限制,直接用 postman 生成的代码带上 session 就能正常工作

代码

import os
import urllib
import base64
import requests
import time

path = "C:\\Users\\hahahahaha\\Documents\\Code\\hdu_auto_ac1\\srccode"  # AC代码文件夹目录
files = os.listdir(path)

codepath = []

src = {}

for root, dirs, files in os.walk(path):
    for file in files:
        if os.path.join(root, file).find("cpp") != -1:
            codepath.append(os.path.join(root, file))

for i in codepath:
    f = open(i, mode='r', encoding='UTF-8')
    code = f.read()
    p = os.path.split(i)
    p1 = os.path.split(p[0])
    code = urllib.parse.quote(code)
    code = bytes(code, encoding="utf8")
    code = base64.b64encode(code)
    src[p1[1]] = str(code, encoding="utf-8")

url = "http://acm.hdu.edu.cn/submit.php?action=submit"

headers = {
    'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
    'accept-encoding': 'gzip, deflate',
    'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
    'cache-control': 'max-age=0',
    'content-type': 'application/x-www-form-urlencoded',
    'cookie': 'PHPSESSID=xxxxxxxxxxxxxxxx; exesubmitlang=0',
    'host': 'acm.hdu.edu.cn',
    'origin': 'http://acm.hdu.edu.cn',
    'proxy-connection': 'keep-alive',
    'referer': 'http://acm.hdu.edu.cn/submit.php?action=submit',
    'upgrade-insecure-requests': '1',
    'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 Edg/87.0.664.66'
}

for k in src:
    payload = "check=0&_usercode=" + \
        urllib.parse.quote(src[k])+"&problemid="+k+"&language=0"

    response = requests.request("POST", url, headers=headers, data=payload)
    time.sleep(10)

要注意的是 OJ 的提交编码是先进行一次 urlencode,再 base64 然后再 urlencode,直接带上数据 post 上去就成功了

项目地址

https://github.com/VaalaCat/hdu-auto-ac

- The End -