Century 5 -> 10
Century 5 -> 6
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:
Get-ADDomain | select Name; echo "`nFilename`n----"; dirPassword: underthewire3347Century 6 -> 7
The password for Century7 is the number of folders on the desktop.
Get-ChildItem -Directory | Measure-ObjectPassword: 197Century 7 -> 8
The password for Century8 is in a readme file somewhere within the contacts, desktop, documents, downloads, favorites, music, or videos folder in the user’s profile.
List Recursively: dir -Recurse
Read File: type C:\users\century7\Downloads\Readme.txtPassword: 7pointsCentury 8 -> 9
The password for Century9 is the number of unique entries within the file on the desktop.
type unique.txt | Get-Unique | Measure-ObjectPassword: 696Century 9 -> 10
The password for Century10 is the 161st word within the file on the desktop.
Split with whitespace delimiter, save it in a variable and echo 161th word:
$word = (Get-Content .\Word_File.txt) -split ' ' ; $word[160]Password: pieridNeed to look for a better way
Last updated
Was this helpful?