So it sounds like you are kinda stuck at the beginning then.
Here are some hints:
You need to write your own HTML code to post the given password to the website. You can then paste that code within the webpage and submit it. After you do this you will get an invalid CSRF error because you also need to submit the token along with the password.
You can look at the POST method already included in the source code for hints.
I’m able to post the password but I keep getting the CSRF error, I include this in my code but i keep getting the error. I’m lost on what i’m doing wrong.
PM me your POST request in full and I’ll see if you’re missing what I think you’re missing. I won’t give you the direct answer, but I can point you in the right direction
The best hint for me was looking at the first challenge (intro 1). Look at how the form is set up in Intro 1 and see what input value(s) you’d need to change for this challenge.
You need to figure out how the playground sends POST requests - the first challenge (Intro 1) has a good example that uses the same token. Look at how the information being ‘sent’ is formatted in the POST requests e.g. name=“name”
Heyy all, I was wondering if this challenge can be solved by doing a script on the browser consolse instead of a HTML code? If this questions sounds silly pardon me I’m new to this stuff.