POST Practice
40 points Medium

This website requires authentication, via POST. However, it seems as if someone has defaced our site. Maybe there is still some way to authenticate? http://165.227.106.113/post.php

Flag
Rating 4.44
5
4
3
2
1

Discussion

C:\Users\User>curl -d "username=admin&password=71urlkufpsdnlkadsf" http://165.227.106.113/post.php

0
Protected
0
Protected
0
Protected
0
Protected
0

I could not able to connect with this site. The destionation is unreachable. Can anyone help me out on this

0
Protected
0
Protected
0
Protected
0
Protected
0

Anyone can give me some hints

0

import requests as req url = "http://165.227.106.113/post.php" data = {"username":"<censored>","password":"<censored>"} res = req.post(url , data=data) print(res.status_code) print(res.text) python

0