They are giving us a code of java script and we need to find the password from this code!its pretty simple code: ===== var foo = 5 + 6 * 7 var bar = foo % 8 var moo = bar * 2 var rar = moo / 3 function check(x) { if (x.length == moo) { alert("win!"); window.location += "?lvl_password="+x; } else { alert("fail D:"); } } ======== from statement function check(x) , we know that our input is taken into the variable(storage space) 'x'.That means, >> if (x.length == moo) << This condition checks if our input password length is equal to the value of moo.If condition is corre...