📔
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
  • Cyborg 0 -> 1
  • Cyborg 1 -> 2
  • Cyborg 2 -> 3
  • Cyborg 3 -> 4
  • Cyborg 4 -> 5

Was this helpful?

  1. Cyborg

Cyborg 0 -> 5

PreviousCentury 10 -> 15NextCyborg 5 -> 10

Last updated 4 years ago

Was this helpful?

Cyborg 0 -> 1

Grab creds from the slack and login via SSH:

ssh cyborg1@cyborg.underthewire.tech
Password: cyborg1

Cyborg 1 -> 2

The password for cyborg2 is the state that the user Chris Rogers is from as stated within Active Directory.

Get-AdUser -Filter "givenName -eq 'Chris'" -Property *
Password: kansas

Reference:

Cyborg 2 -> 3

The password for cyborg3 is the host A record IP address for CYBORG718W100N PLUS the name of the file on the desktop.

Get-DnsServerResourceRecord -ZoneName "underthewire.tech" -Name "CYBORG718W100N" -RRType "A"
Password: 172.31.45.167_ipv4

To do: Complete the challenge with WMI

Cyborg 3 -> 4

The password for cyborg4 is the number of users in the Cyborg group within Active Directory PLUS the name of the file on the desktop.

Get-ADGroupMember -identity "cyborg" | Measure-Object
Password: 88_objects

Cyborg 4 -> 5

The password for cyborg5 is the PowerShell module name with a version number of 8.9.8.9 PLUS the name of the file on the desktop.

Get-Module -ListAvailable | ?{$_.Version -like '8.9.8.9'}
Password: bacon_eggs
https://adamtheautomator.com/get-aduser/
https://docs.microsoft.com/en-us/powershell/module/dnsserver/get-dnsserverresourcerecord?view=windowsserver2019-ps