Skip to content

Latest commit

 

History

History
118 lines (87 loc) · 3 KB

Speak.md

File metadata and controls

118 lines (87 loc) · 3 KB

Logo

Table of Contents
  1. Description
  2. The Function
  3. Examples
  4. Contact
  5. Acknowledgments

Speak

Python
YouTube Tutorial

Description

Speaks through your targets speakers

The Function

[Speak]

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)
}

(back to top)

Examples

Listed below are payloads that have used one of these functions:

Acid Burn

We-Found-You

(back to top)

Contact

📱 My Socials 📱

C#
YouTube
Python
Twitter
Golang
Instagram
Jsonnet
Discord

(back to top)

Acknowledgments


HOME-PAGE

(back to top)