OpenAdmin

@netpal said:

@TazWake Thank you once again for your answer.

Always glad to help if I can.

I am ashamed to ask, but I think I need a hint for the curl command (I am aware I could use something else) . I have literally been through all the pages and curl hints, yet I’m still doing it wrong…

The general syntax to make a request with curl is: curl http://ipaddress:port/page.php There are other things you need to do if you want to send things like credentials such as curl -u username:password http://ipaddress:port/page.php (this is generally bad practice as the password gets stored in the history file but its acceptable for CTFs)

Also man curl is a very good place to start.