Skip to content

Objective 10 - Defeat Fingerprint Sensor

Objective

Objective 10


The fingerprint sensor is inside Santavator. Santa's fingerprint is required to enter Santa's Office.


Objective 10


Walk-through

To start this objective go to the Santavator and click on the Santavator panel.

Open Chrome Developer Mode (Shift-CTRL-F11). Use the "Inspect element" tool to Inspect the fingerprint sensor.


Objective 10


The fingerprint sensor has an element called print-cover, which is likely the cover for the sensor. Review the Sources for elevator.kringlecastle.com.


Objective 10


Search for print-cover in app.js.


Objective 10


Line 354 in app.js is looking for hastoken('besanta'). Change && to ||, and press CTRL-S to save the file.


Objective 10


Now press the fingerprint sensor, and it will take you to Santa's Office.

Answer

Find and replace&& hastoken('besanta') with || hastoken('besanta') in app.js for elevator.kringlecastle.com. Save the file by pressing "CTRL-S" and click the fingerprint sensor.