Login, login, and login!
Beginner Hint 1 (AI-translated)
-
In
index.js, a simple login feature is implemented. -
It appears to check that
users[username]exists and thatusers[username].passwordmatches the provided password. -
It doesn’t seem possible to create your own user. Also, a user called
adminis registered, but guessing that password would be impossible.
Beginner Hint 2 (AI-translated)
- In JavaScript,
users["foobar"]andusers.foobarare almost equivalent. Could this be used somehow? - The login form alone might not allow you to send the intended data. For methods of sending data without using a browser, refer to my writeup for I wanna be the Admin.