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

curl -d "username=admin&password=71urlkufpsdnlkadsf" http://165.227.106.113/post.php

You don't need to explicitly add "-X POST", because "-d" option posts data by itself.

0
Protected
0
Protected
0

curl -X POST http://165.227.106.113/post.php -d "username=admin&password=71urlkufpsdnlkadsf"

0
Protected
0

very ez

0

very ez

0
Protected
0
Protected
0

Just use -X and -d flags in curl, its rather easy took 10 sec

0