Table of Contents
Speaks through your targets speakers
Using SAPI.SpVoice you will feed strings to the functions to have it speak through your targets speakers using the following syntax
speak "you have been hacked"
function speak {
[CmdletBinding()]
param (
[Parameter (Position=0,Mandatory = $True,ValueFromPipeline=$true)]
[string]$Sentence
)
$s.Voice = $s.GetVoices().Item(0)
$s=New-Object -ComObject SAPI.SpVoice
$s.Rate = -2
$s.Speak($Sentence)
}
Listed below are payloads that have used one of these functions: