UnderTheWire Groot Guide

here's how to solve the Groot level 12 → 13

Back to the Groot Guides

Previous Level Guide: Groot Level 11 → 12


Access

SSH: ssh groot12@groot.underthewire.tech -p 22

Password: spaceships

Info

The password for groot13 is the owner of the Nine Realms folder on the desktop.

NOTE:
– Exclude the Administrator, the Administrators group, and System.
– The password will be lowercase with no punctuation no matter how it appears on the screen. For example, if the owner is “john.doe”, it would be “johndoe”.

Theory

To get the password, as the description says, we're told to find the owner of the folder in the desktop. That's really easy, we just need this command Get-Acl, which just stands for access control lists of a file or folder, or whatever resource. Basically it just gives you access information about some thing in the directory, like maybe the owner, yeah. So the commands are that, and dir to get the name of the folder:

dir
Get-Acl foldername.ext

Solution

Now that we are inside the shell, we can get the folder's name with dir:

PS C:\users\Groot12\desktop> dir


    Directory: C:\users\Groot12\desktop


Mode                LastWriteTime         Length Name
----                -------------         ------ ----
d-----        8/30/2018  10:51 AM                Nine Realms

Now that we know the name of the folder, we can put it in the get-acl command to get the password:

PS C:\users\Groot12\desktop> Get-Acl "Nine Realms"


    Directory: C:\users\Groot12\desktop


Path        Owner                Access
----        -----                ------
Nine Realms underthewire\Airwolf NT AUTHORITY\SYSTEM Allow  FullControl...

Now just grab the owner, which is just that but removing the underthewire part along with the backslash. And as always, making it lowercase, so the password comes out to be:

airwolf

And that's the password! Now we should be good to go to the next level.

https://underthewire.tech/groot-12
Next Level Guide: Groot Level 13 → Level 14