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

it was fun

0

Use this command curl "http://165.227.106.x/post.php" -d "username=admin&password=71urlkufpsdnlkadsf"

-1
Protected
0

Glad I came across this fresh off learning handling web requests with CURL

0

nice challenge

0

Quite technical but very easy when you calm down and go through it

0

kinda easy just relax and follow due process

0

it's simple

0

Seems like your credentials are wrong! <-- this is wrong, so what's the flag?

0
Protected
0

curl -X POST -d "username=myUsername&password=myPassword" https://example.com/login

0