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
3 weeks ago
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.
1 month ago
0
curl -X POST http://165.227.106.113/post.php -d "username=admin&password=71urlkufpsdnlkadsf"
.
very ez
3 months ago
2 months ago
5 years ago
Incorrect difficulty, should be EASY
4 years ago
2 years ago
nerd emoji
3 years ago
curl -X POST -d 'username=<find it>' -d 'password=<find it>' http://165.227.106.113/post.php
Found how to use curl. Nice challenge :)
3 weeks ago
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.