```plaintext The password for cyborg2 is the state that the user Chris Rogers is from as stated within Active Directory. **NOTE:** – The password will be lowercase no matter how it appears on the screen. – “State” refers to the location within the country and NOT the “state” of the account (enabled/ disabled). **IMPORTANT:** Once you feel you have completed the Cyborg1 challenge, start a new connection to the server, and log in with the username of Cyborg2 and this password will be the answer from Cyborg1. If successful, close out the Cyborg1 connection and begin to solve the Cyborg2 challenge. This concept is repeated over and over until you reach the end of the game. ``` --- `Get-ADUser -Filter * -Property * | Select-Object -First 1` returns all of the properties of the first user in AD. ```powershell PS C:\users\cyborg1\desktop> Get-ADUser -Filter * -Property * | Select-Object -First 1 AccountExpirationDate : accountExpires : 0 AccountLockoutTime : AccountNotDelegated : False ... <SNIP> State : <SNIP> ``` ```powershell PS C:\users\cyborg1\desktop> Get-ADUser -Filter "Name -like '*chris*'" -Property state DistinguishedName : CN=Rogers\, Chris\ ,OU=T-65,OU=X-Wing,DC=underthewire,DC=tech Enabled : False GivenName : Chris Name : Rogers, Chris ObjectClass : user ObjectGUID : ee6450f8-cf70-4b1d-b902-a837839632bd SamAccountName : chris.rogers SID : S-1-5-21-758131494-606461608-3556270690-2177 State : kansas Surname : Rogers UserPrincipalName : chris.rogers ```