Previous Level Guide: Century Level 12 → 13
Access
SSH: ssh century13@century.underthewire.tech -p 22
Password: i_authenticate_things
Info
The password for Century14 is the number of words within the file on the desktop.
Theory
To get the password, we have two options: we could probably do it the hard way, and create a command that does exactly count the words of the file in the desktop. Or, we could download the file or just get the content, and paste it to an online word counter. I think you know what's going to happen... yeah. So for this level, we're going to use the scp command, don't worry it won't spawn any creature, the command is short for Secure File Copy, which does exactly what it says, it can transfer a copy of a file from one machine to another, this even works in linux to windows and viceversa. So now we'll just go to the level, use dir for the file name, and copy it to my documents folder for example:
dir scp century13@century.underthewire.tech:C:\path\to\file.txt C:\Users\shukularuni\Documents
Solution
Now that we are in machine, let's get the words file:
PS C:\users\century13\desktop> dir Directory: C:\users\century13\desktop Mode LastWriteTime Length Name ---- ------------- ------ ---- -a---- 8/30/2018 3:38 AM 7894 countmywords
Now that we know it's located in the desktop and what the file's name is, we can run the scp command with it:
PS C:\users\century13\desktop> exit Connection to century.underthewire.tech closed. C:\Users\shukularuni>scp century13@century.underthewire.tech:C:\users\century13\desktop\countmywords C:\Users\shukularuni\Documents century13@century.underthewire.tech's password: i_authenticate_things countmywords 100% 7894 53.9KB/s 00:00
Now that we have the file, we can paste the entire thing in a website that counts words, and we get:
Text: spudders escudero hemitype unremittent rhinaria afflation emforth badgeringly bristler oxtongues roosed wittichenite faussebraye backwaters ... Result: 755 words 7894 characters.
And that's the password! Now we should be good to go to the next level.
https://underthewire.tech/century-13Next Level Guide: Century Level 14 → Level 15