Under the Wire trains experienced, developing, and novice Information Technologists to use Windows PowerShell in a variety of situations through innovative and fun wargames.
The password for Century3 is the name of the built-in cmdlet that performs the wget like function within PowerShell PLUS the name of the file on the desktop.
NOTE: -- If the name of the cmdlet is "get-web" and the file on the desktop is named "1234", the password would be "get-web123...
The password for Century7 is the number of folders on the desktop.
This should be simple and similar to Century3
PS C:\users\century6\desktop> dir | measure-object
Count : 197 // This is our flag!...
The password for Century6 is the short name of the domain in which this system resides in PLUS the name of the file on the desktop.
NOTE: – If the short name of the domain is “blob” and the file on the desktop is named “1234”, the password would be “blob1234”. – The password will be...
The password for Century5 is the name of the file within a directory on the desktop that has spaces in its name.
NOTE: – The password will be lowercase no matter how it appears on the screen.
A dir command shows us a few folders with spaces in their names as well as a...
The password for Century4 is the number of files on the desktop.
I googled how to count files in Powershell and found the command Measure-Object.
So I tried
PS C:\users\century3\desktop> dir | measure-object
Count : 123 // This is our flag
Average :
Sum...