19 lines
431 B
Python
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() |