HTTP 05
This challenge covers how to send specific HTTP requests
In this challenge, your objective is to send a GET request to /pentesterlab with the Accept-Language header set to key-please. The Accept-Language header is used by browsers to inform web applications about the user’s preferred language. By setting this header, you can control the language of the content served by the web server.
We recommend solving this challenge using curl initially. This will give you a foundational understanding before you write a script in your favorite language. Creating a script will help you build a reusable collection of scripts for future use. The provided example demonstrates how to add the Accept-Language header to your request using curl, allowing you to retrieve the key required to complete this challenge.