-
<Root-me> Javascript - AuthenticationWargame/Root-me = Web - Client 2021. 12. 18. 23:08
관리자 계정으로 로그인하면 되는 것 같다.
개발자 도구의 Elements 탭에서 <head> 태크를 살펴보면 "login.js"를 찾을 수 있다.
"login.js"를 살펴보면
function Login(){ var pseudo=document.login.pseudo.value; var username=pseudo.toLowerCase(); var password=document.login.password.value; password=password.toLowerCase(); if (pseudo=="4dm1n" && password=="sh.org") { alert("Password accepté, vous pouvez valider le challenge avec ce mot de passe.\nYou an validate the challenge using this password."); } else { alert("Mauvais mot de passe / wrong password"); } }
아이디와 비밀번호가 나와있다. 그리고 이 비밀번호로 검증하라고 한다.
문제 페이지에서 "sh.org"를 입력하면 문제를 해결할 수 있다.
'Wargame > Root-me = Web - Client' 카테고리의 다른 글
<Root-me> Javascript - Obfuscation 1 (0) 2021.12.19 <Root-me> Javascript - Webpack (0) 2021.12.19 <Root-me> Javascript - Authentication 2 (0) 2021.12.18 <Root-me> Javascript - Source (0) 2021.12.18 <Root-me> HTML - disabled buttons (0) 2021.12.18