Objective 10 - Defeat Fingerprint Sensor¶
Objective¶
The fingerprint sensor is inside Santavator. Santa's fingerprint is required to enter Santa's Office.
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.
The fingerprint sensor has an element called print-cover, which is likely the cover for the sensor. Review the Sources for elevator.kringlecastle.com.
Search for print-cover in app.js.
Line 354 in app.js is looking for hastoken('besanta'). Change && to ||, and press CTRL-S to save the file.
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 forelevator.kringlecastle.com. Save the file by pressing "CTRL-S" and click the fingerprint sensor.





