Hacking with PowerShell
This guide contains the answer and steps necessary to get to them for the Hacking with PowerShell room.
Table of contents
- What is Powershell?
- Basic Powershell Commands
- Enumeration
- Basic Scripting Challenge
- Intermediate Scripting
What is Powershell?
- What is the command to get a new object?
We will use a verb to describe what we want to do and then a noun describing what we want to do it to.
Click for answer
get-new
Basic Powershell Commands
- What is the location of the file "interesting-file.txt"
For this we can use 'Get-ChildItem' and specify the path and filename we want to look for.
BASIC COMMANDS LOCATION
Click for answer
C:\Program FIles
- Specify the contents of this file
Viewing the contents can be done with the 'Get-Content' command.
BASIC COMMANDS CONTENT
Click for answer
notsointerestingcontent
- How many cmdlets are installed on the system(only cmdlets, not functions and aliases)?
'Get-Command' can be used to view the installed cmdlets. However, we must also filter to only show cmdlets. This can be done by piping the output to 'Where-Object'.
BASIC COMMANDS CMDLETS
Click for answer
6638
- Get the MD5 hash of interesting-file.txt
The file hash can be obtained using 'Get-FileHash'.
BASIC COMMANDS HASH
Click for answer
49A586A2A9456226F8A1B4CEC6FAB329
- What is the command to get the current working directory?
BASIC COMMANDS DIRECTORY
Click for answer
Get-Location
- Does the path "C:\Users\Administrator\Documents\Passwords" Exist (Y/N)?
We can simply try to view the contents of this directory to see if it exists.
BASIC COMMANDS EXIST
Click for answer
N
- What command would you use to make a request to a web server?
Using 'Get-Command' we can look for the correct command.
BASIC COMMANDS REQUEST
Click for answer
Invoke-WebRequest
- Base64 decode the file b64.txt on Windows.
After getting the contents of the file, we can decode the base64 encoded string using CyberChef.
Get-ChildItem -Path C:\ -File -Recurse -Include *b64.txt -ErrorAction SilentlyContinue
Get-Content C:\Users\Administrator\Desktop\b64.txt
BASIC COMMANDS B64
BASIC COMMANDS FLAG
Click for answer
ihopeyoudidthisonwindows
Enumeration
- How many users are there on the machine?
Click for answer
- Which local user does this SID(S-1-5-21-1394777289-3961777894-1791813945-501) belong to?
Click for answer
- How many users have their password required values set to False?
Click for answer
- How many local groups exist?
Click for answer
- What command did you use to get the IP address info?
Click for answer
- How many ports are listed as listening?
Click for answer
- What is the remote address of the local port listening on port 445?
Click for answer
- How many patches have been applied?
Click for answer
- When was the patch with ID KB4023834 installed?
Click for answer
- Find the contents of a backup file.
Click for answer
- Search for all files containing API_KEY
Click for answer
- What command do you do to list all the running processes?
Click for answer
- What is the path of the scheduled task called new-sched-task?
Click for answer
- Who is the owner of the C:\
Click for answer
Basic Scripting Challenge
- What file contains the password?
Click for answer
- What is the password?
Click for answer
- What files contains an HTTPS link?
Click for answer
Intermediate Scripting
- How many open ports did you find between 130 and 140(inclusive of those two)?
Click for answer