đź“”
UnderTheWire
  • Introduction
  • Century
    • Century 0 -> 5
    • Century 5 -> 10
    • Century 10 -> 15
  • Cyborg
    • Cyborg 0 -> 5
    • Cyborg 5 -> 10
    • Cyborg 10 -> 15
  • Groot
    • Groot 0 -> 5
    • Groot 5 -> 10
    • Groot 10 ->15
  • Oracle
    • Oracle 0 -> 5
    • Oracle 5 -> 10
    • Oracle 10 -> 15
  • Trebek
    • Trebek 0 -> 5
    • Trebek 5 -> 10
    • Trebek 10 -> 15
Powered by GitBook
On this page
  • Century 10 -> 11
  • Century 11 -> 12
  • Century 12 -> 13
  • Century 13 -> 14
  • Century 14 -> 15

Was this helpful?

  1. Century

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
PreviousCentury 5 -> 10NextCyborg 0 -> 5

Last updated 4 years ago

Was this helpful?