https://github.com/thomas-alrek/wt-arg-bootsector-decoder
A decoder I wrote to solve the puzzle for phase2 of the Waking Titan ARG
https://github.com/thomas-alrek/wt-arg-bootsector-decoder
arg atlas caesar-cipher cipher csd puzzle waking-titan
Last synced: 4 months ago
JSON representation
A decoder I wrote to solve the puzzle for phase2 of the Waking Titan ARG
- Host: GitHub
- URL: https://github.com/thomas-alrek/wt-arg-bootsector-decoder
- Owner: thomas-alrek
- License: mit
- Created: 2017-07-22T11:46:18.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-22T12:43:25.000Z (almost 9 years ago)
- Last Synced: 2025-10-07T00:45:15.773Z (8 months ago)
- Topics: arg, atlas, caesar-cipher, cipher, csd, puzzle, waking-titan
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WT-ARG Bootsector Decoder

This module decodes the codewheel puzzle of [Phase2 Bootsector](http://wiki.gamedetectives.net/index.php?title=Waking_Titan#Citizen_Scientist_Emails) for the [Waking Titan ARG](http://wiki.gamedetectives.net/index.php?title=Waking_Titan).
If you have a unique code and a decryption key, you can solve it quickly using this.
Example:
```javascript
const decoder = require('wt-arg-bootsector-decoder')
let myCode = decoder('0a1b2c3', '1L 1L 2L 3R 5L 8R 13L')
// myCode === '1c5c8ae'
```
Try it out at [http://bootsector.wakingtitan.com/](http://bootsector.wakingtitan.com/)