webshell/aspx/nishang/Misc/Speak.ps1
tennc 300ccb3c8d update Antak-WebShell aspx
Antak-WebShell
2014-07-30 17:50:54 +08:00

31 lines
533 B
PowerShell

<#
.SYNOPSIS
Nishang Payload to which "speaks" the given sentence
.DESCRIPTION
This payload uses the Speech API and the given senetence
is spoken in the MS Narrator's voice.
.PARAMETER Sentence
The sentence to be spoken
.EXAMPLE
PS > Speak <senetence>
.LINK
http://labofapenetrationtester.blogspot.com/
https://github.com/samratashok/nishang
#>
function Speak
{
Param(
[Parameter(Position = 0, Mandatory = $True)]
[String]
$Sentence
)
(new-object -com SAPI.SpVoice).speak("$Sentence")
}