Century 10 -> 15

Century 10 -> 11

The password for Century11 is the 10th and 8th word of the Windows Update service description combined PLUS the name of the file on the desktop.

Look for windows update service:
    Get-Service -Displayname "*update*"
Service name: wuauserv
Service Description-
    Get-WmiObject win32_service | ?{$_.Name -like 'wuauserv'} | select Description
Password: windowsupdates110

To-do: Do the above with Get-CimInstance

Century 11 -> 12

The password for Century12 is the name of the hidden file within the contacts, desktop, documents, downloads, favorites, music, or videos folder in the user’s profile.

dir -Force -Recurse
File: Downloads\secret_sauce
Password: secret_sauce

Century 12 -> 13

The password for Century13 is the description of the computer designated as a Domain Controller within this domain PLUS the name of the file on the desktop.

Find Domain Controller:
    Get-ADDomainController | Select Name
Domain Controller Name: "UTW"
Description:
    Get-ADComputer "UTW" -Properties *
Password: i_authenticate_things

Century 13 -> 14

The password for Century14 is the number of words within the file on the desktop.

(Get-Content .\countmywords) -split ' '| Measure-Object
Password: 755

Century 14 -> 15

The password for Century15 is the number of times the word “polo” appears within the file on the desktop.

(Get-Content .\countpolos) -split ' '| ?{$_ -like 'polo'} | Measure-Object
Password: 153

Last updated