THE BROWSER DETECTIVE // case 04

CASE 04 THE CONSOLE CIPHER Inside the vault.

// case notes

You reach Veyra's private vault. Reading the source isn't enough this time it's a function, and you have to run it. Open the browser's Console tab (inside devtools), type the command below, and hit Enter. Whatever it returns, enter as your token.

Run: decryptVault()

(Two other functions are defined too hint() if you're stuck, and caseFile() for flavor. Only one unlocks the vault.)

// vault source preview
function decryptVault() {
  const parts = ["AC", "CE", "SS_", "---", "--"];
  return parts.join("");
}
// evidence log, enter returned token
>
hint: press F12, click Console, type decryptVault(), press Enter. The return value is the token.