HTTP 19
This challenge covers how to send specific HTTP requests
In this challenge, you need to send a GET request to the endpoint /pentesterlab. The key part of the challenge involves sending a GET parameter named 'key' as an array. This array should have 'key' as its first element and 'please' as its second element. You can achieve this by using the syntax name[0]=value1&name[1]=value2.
We recommend starting with the curl command to solve this challenge. Once you have successfully completed it using curl, you can create a script in your favorite programming language for future use. This will help you build a collection of reusable scripts for similar tasks.