mirror of
https://github.com/tennc/webshell
synced 2024-11-29 22:50:18 +00:00
300ccb3c8d
Antak-WebShell
31 lines
533 B
PowerShell
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")
|
|
}
|