Files
kevin ab81ca865c init
Signed-off-by: kevin <kevin@dsm.lmve.net>
2024-01-31 23:09:11 +08:00

19 lines
431 B
Python

# encoding:utf-8
import requests
def main():
post_url="https://lmve.net/php/reptile.php"
headers = {
'user-agent': 'my-app/0.0.1',
'Content-Type': 'text/html; charset=utf-8'
}
data={}
data['password']="adswewd"
r = requests.post(post_url,data=data)
if r.status_code!=200:
return r.status_code
html_byt=r.content
html=str(html_byt,'utf-8')
print(html)
main()