EXERCISE 1: Verify WUPC (.42) is Reachable
You need: SSH client (Git Bash on Windows), known IP (192.168.1.42), known username (SWu), working network connection
STEP 1: Test basic connectivity
Open Git Bash. Type this exact command:
ping -c 3 192.168.1.42
Reply from 192.168.1.42: bytes=32 time=1ms TTL=128
Reply from 192.168.1.42: bytes=32 time=1ms TTL=128
Reply from 192.168.1.42: bytes=32 time=1ms TTL=128
Ping statistics for 192.168.1.42:
Packets: Sent = 3, Received = 3, Lost = 0 (0% loss)
If "Request timed out": Check ethernet cable is plugged into WUPC. Check WUPC is powered on. Check Windows Firewall on WUPC is OFF (it should be).
STEP 2: SSH into WUPC
Type this exact command. When prompted for password, type the WUPC password (you set this):
ssh SWu@192.168.1.42
Microsoft Windows [Version 10.0.19045.3693]
(c) Microsoft Corporation. All rights reserved.
C:\Users\SWu>
If "Connection refused": SSH server not running on WUPC. Fix: On WUPC, open PowerShell as Admin and run: Add-WindowsCapability -Online -Name OpenSSH.Server
STEP 3: Verify privileges
Once inside WUPC, run these commands one by one:
whoami
desktop-abc123\swu
whoami /groups | findstr /C:"S-1-5-32-544"
BUILTIN\Administrators
whoami /priv | findstr SeImpersonatePrivilege
SeImpersonatePrivilege Impersonate a client after authentication Enabled
VERIFIED 2026-06-29: WUPC .42 — SSH_OK, Admin context, SeImpersonatePrivilege ENABLED.
This means we can use PrintSpoofer/RoguePotato to get SYSTEM.
EXERCISE 2: Verify HOST (.92) is Reachable
You need: Your own machine (192.168.1.92), SSH server enabled, known username (gwu07)
STEP 1: Test from another machine or loopback
ssh gwu07@192.168.1.92
gwu07@192.168.1.92's password:
Microsoft Windows [Version 10.0.22631.xxxx]
If "Connection refused": OpenSSH server not installed. Fix: Settings → Apps → Optional features → OpenSSH Server → Install. Then: Start-Service sshd
VERIFIED 2026-06-29: HOST .92 — SSH_OK, Standard user context, Kaspersky ACTIVE (avp.exe running).
This is the REAL target — test evasion here, not in VM.