Merge pull request #143 from LyQuid12/master

New Payload - Minimize all window
pull/149/head
Darren Kitchen 2022-09-18 17:56:41 -05:00 committed by GitHub
commit 767e831ea7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 67 additions and 0 deletions

View File

@ -0,0 +1,32 @@
# Always Minimize
Minimizing all opened window within specific time/delay. It's a **loop** process, that means this script won't end until you stop it.
## Config
If you want to change the delay, you can change here :
![Delay](https://raw.githubusercontent.com/LyQuid12/usbrubberducky-payloads/master/payloads/library/prank/Always-Minimize/images/delay.PNG)
Default is 2 seconds. 1 Second = 1000 Miliseconds.
If you set a delay less than 1 second, you literally a bastard :]
## How to stop this?
It's simple but hard to do. There's 2 ways to stop/kill this process.
> First way
- Open task manager using <kbd>CTRL</kbd>+<kbd>SHIFT</kbd>+<kbd>ESC</kbd>
- Find `Microsoft (r) Windows Based Script`
![wscript](https://raw.githubusercontent.com/LyQuid12/usbrubberducky-payloads/master/payloads/library/prank/Always-Minimize/images/taskmngr.PNG)
- End the process
> Second way
- Open Command Prompt using <kbd></kbd>+<kbd>r</kbd> (Windows+r)
- Type `cmd`
- Run this command
```
taskkill /F /IM wscript.exe /T
```
- Enter

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,35 @@
REM =============================================================================================================
REM Title: Always Minimize
REM Author: LyQuid
REM Description: Minimizing all windows within specific time
REM Target: Windows 10
REM Category: Prank
REM You can change the delay when the windows to minimize, 1 Second = 1000 Milliseconds. Change on "WScript.Sleep"
REM ==============================================================================================================
DELAY 2000
GUI r
DELAY 200
STRING cmd
ENTER
DELAY 500
REM = Make sure there is no file named minimize.vbs =
STRING del %tmp%\minimze.vbs
ENTER
REM = Creating script =
STRING cd %tmp% && copy con minimze.vbs
ENTER
STRING do
ENTER
STRING set oShellApp = CreateObject("Shell.Application")
ENTER
STRING oShellApp.MinimizeAll
ENTER
STRING WScript.Sleep 2000
ENTER
STRING loop
ENTER
CTRL z
ENTER
REM = Run Script & exit cmd =
STRING start minimze.vbs && exit
ENTER