Start the machine, hack the system, and find the hidden flags to complete this challenge and earn points!
Launch your dedicated machine to begin hacking
Every webpage loads resources. Press F12 to open DevTools and look at the HTML source.
Near the bottom of the HTML, find the <script> tag. It loads a JavaScript file - that's your answer.
Look through the JavaScript code for an if statement that checks credentials.
You'll find something like: if (username === "..." - the value in quotes is the expected username.
if statement you found in the previous step.The authentication check compares both username AND password. You already found the username.
Look for: && password === "..." - the value after the === is the password.
You have the credentials. Time to use them.
Choose how you want to get started
Sign in to your account