Signed-off-by: kevin <kevin@dsm.lmve.net>
This commit is contained in:
kevin
2024-01-31 23:09:11 +08:00
commit ab81ca865c
7 changed files with 943 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# 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()