任务描述:
任务分析:
使用工具:Python
通过修改请求包的内容,完成每一项的要求
解题代码:
import requests as rq
URL = "http://train2024.hitctf.cn:26489/?spell=viwo50"
header = {
'To': "Doraemon"
}
cookie = {
"icecream": "good",
"friedchicken": "nice"
}
response = rq.post(url=URL, cookies=cookie, headers=header, data="\xaa\xbb\xcc\xdd")
print(response.text)
任务总结:
对HTTP请求数据形式还不是很清楚,需要不断学习!