Skip to content

Commit

Permalink
Merge pull request #16 from NexusWannaBe/NexusWannaBe-NewPayloads
Browse files Browse the repository at this point in the history
Shutdown Files by NexusWannaBe
  • Loading branch information
aleff-github authored Oct 5, 2024
2 parents 2aaed62 + 7cbb9da commit 35b43c6
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
|Type|Count|
|--|--|
|![Linux](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge&logo=linux&logoColor=black)|30|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|48|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|50|
|![iOS](https://img.shields.io/badge/iOS-000000?style=for-the-badge&logo=ios&logoColor=white)|4|
|![macOS](https://img.shields.io/badge/mac%20os-000000?style=for-the-badge&logo=macos&logoColor=F0F0F0)|0 (*Buy me a Mac ^^*)|
|**Tot**|82|
|**Tot**|84|
|**Hak5** Payload accepted|115|
|**Hak5** Payload Awarded|2|

Expand Down Expand Up @@ -106,6 +106,8 @@
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Execution|[Send Messages In Discord Channel-Server](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Execution/Send_Messages_In_Discord_Channel-Server)|🟡|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Execution|[Install And Run Any Arbitrary Executable - No Internet And Root Needed](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Execution/Install_And_Run_Any_Arbitrary_Executable-No_Internet_And_Root_Needed)|🟡|
|![Linux](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge&logo=linux&logoColor=black)|Execution|[Defend yourself against AtlasVPN bugdoor](https://github.com/aleff-github/my-flipper-shits/tree/main/GNU-Linux/Execution/Defend_yourself_against_AtlasVPN_bugdoor)|🟡|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Execution|[Shutdown After 1 Minute - By NexusWannaBe](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Execution/Shutdown_After_1_Minute-By_NexusWannaBe)|🟢|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Execution|[Shutdown - By NexusWannaBe](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Execution/Shutdown-By_NexusWannaBe)|🟢|
|![Linux](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge&logo=linux&logoColor=black)**KDE**|Prank|[Change Desktop Wallpaper](https://github.com/aleff-github/my-flipper-shits/tree/main/GNU-Linux/Prank/ChangeDesktopWallpaper_LinuxKDE)|🟡|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Prank|[Send Signal Messages](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Prank/SendSignalMessages_Windows)|🟡|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Prank|[Send Microsoft Teams Messages](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Prank/SendMessagesInTeams)|🟡|
Expand Down
24 changes: 24 additions & 0 deletions Windows/Execution/Immediate_Shutdown-By_NexusWannaBe/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Immediate Shutdown - By NexusWannaBe

This DuckyScript, created by [NexusWannaBe](https://github.com/NexusWannaBe), is designed to **immediately shut down** a Windows system upon inserting a Rubber Ducky or any compatible DuckyScript device. The script opens the **cmd** terminal and issues a shutdown command with no delay, causing the system to shut down immediately.

## How it works

The script follows these steps:
1. Waits for 1 second (`DELAY 1000`).
2. Uses the **Windows + R** shortcut to open the "Run" dialog.
3. Types `cmd` to open the command prompt.
4. Waits half a second and presses **Enter**.
5. Once the terminal is open, it types `shutdown /s /f /t 0`, which forces an immediate shutdown with zero delay.
6. The system shuts down immediately without further input.

### Shutdown command:
- `shutdown /s /f /t 0`: forces an immediate shutdown of Windows, closing all running applications without warning or delay.
- `/s`: initiates the shutdown.
- `/f`: forces running applications to close.
- `/t 0`: sets the shutdown timer to zero, making it instantaneous.

## Warnings

- **Use with caution!** This script shuts down the system instantly, with no chance to save open files or processes.
- This script is for educational purposes and should only be used legally and with permission from the system owner.
11 changes: 11 additions & 0 deletions Windows/Execution/Immediate_Shutdown-By_NexusWannaBe/payload.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
REM Title: Immediate Shutdown
REM Developer: NexusWannaBe

DELAY 1000
GUI r
DELAY 500
STRING cmd
ENTER
DELAY 1000
STRING shutdown /s /f /t 0
ENTER
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Shutdown After 1 Minute - By NexusWannaBe

This DuckyScript, created by [NexusWannaBe](https://github.com/NexusWannaBe), is designed to force a Windows system shutdown after one minute from the insertion of your Flipper Zero or any compatible DuckyScript device. The script opens the **cmd** terminal and sends the shutdown command to the system.

## How it works

The script performs the following steps:
1. Waits for 1 second (`DELAY 1000`).
2. Uses the **Windows + R** combination to open the "Run" dialog.
3. Types `cmd` to open the command prompt.
4. Waits for half a second and then presses **Enter**.
5. Once the terminal is open, it types the command `shutdown /s /f && exit`, which forces the computer to shut down and closes the terminal.
6. Confirms the shutdown by pressing **Enter**. The system will shut down within 60 seconds.

### Shutdown command:
- `shutdown /s /f`: forces an immediate shutdown of Windows, closing all running applications without warning.
- `&& exit`: closes the terminal after issuing the shutdown command.

## Warnings

- **Use this script responsibly!** Forcing a shutdown can result in data loss if files are not saved.
- This script is intended for educational purposes only and should only be used with permission from the owner of the device and in compliance with the law.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
REM Title: Shutdown After 1 Minute
REM Developer: NexusWannaBe

DELAY 1000
GUI r
DELAY 500
STRING cmd
ENTER
DELAY 1000
STRING shutdown /s /f && exit
ENTER
DELAY 1000
ENTER
2 changes: 2 additions & 0 deletions Windows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Execution|[Change Git Remote Link](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Execution/ChangeGitRemoteLink)|🟡|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Execution|[Send Messages In Discord Channel-Server](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Execution/Send_Messages_In_Discord_Channel-Server)|🟡|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Execution|[Install And Run Any Arbitrary Executable - No Internet And Root Needed](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Execution/Install_And_Run_Any_Arbitrary_Executable-No_Internet_And_Root_Needed)|🟡|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Execution|[Shutdown After 1 Minute - By NexusWannaBe](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Execution/Shutdown_After_1_Minute-By_NexusWannaBe)|🟢|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Execution|[Shutdown - By NexusWannaBe](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Execution/Shutdown-By_NexusWannaBe)|🟢|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Prank|[Send Signal Messages](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Prank/SendSignalMessages_Windows)|🟡|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Prank|[Send Microsoft Teams Messages](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Prank/SendMessagesInTeams)|🟡|
|![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)|Prank|[Never Gonna Give You Up](https://github.com/aleff-github/my-flipper-shits/tree/main/Windows/Prank/NeverGonnaGiveYouUp_Windows)|🟢|
Expand Down

0 comments on commit 35b43c6

Please sign in to comment.