HTTP 33
This challenge covers how to send specific HTTP requests
In this challenge, you are tasked with sending a POST request to the endpoint /pentesterlab. The body of this request should contain XML data formatted as
. Additionally, you need to set the Content-Type header to application/xml. This ensures that the server correctly interprets the data.
We recommend starting with curl to make this request. Once you successfully execute it using curl, consider writing a script in your preferred programming language. This approach allows you to build a collection of reusable scripts for future challenges. It's crucial to ensure that the XML is properly encoded, especially for characters like the greater-than symbol (>), which can otherwise break the syntax.