-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInternet_Hackercat.ps1
More file actions
33 lines (26 loc) · 834 Bytes
/
Copy pathInternet_Hackercat.ps1
File metadata and controls
33 lines (26 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#Hackercat for if you have an active internet connection.
Function Hackercat
{
Add-type -AssemblyName System.Windows.Forms
Start-Process "http://giphy.com/gifs/cat-hacker-webs-o0vwzuFwCGAFO/fullscreen" -WindowStyle Maximized
Start-Sleep 1
[System.Windows.Forms.SendKeys]::SendWait("{F11}")
$voice = New-Object -ComObject SAPI.SPVoice
$voice.Rate =0
Function Invoke-Speech
{
param([Parameter(ValueFromPipeline=$true)][string] $say)
process
{
$voice.Speak($say) | out-null;
}
}
new-alias -name out-voice -value invoke-speech;
start-sleep 2
for ($i=1; $i -le 10; $i++ ) {
"You have been hacked! Please call your I A M!" | out-voice #Change this to whatever you want
"Hacker Cat Strikes Again!!!!!" | out-voice #Change this to whatever you want
}
}
Write-Host "Deploying Hackercat!"
Hackercat