From d7a6f6a1d1b3b3750b208a31a48231158312138f Mon Sep 17 00:00:00 2001 From: Aleff Date: Mon, 12 Jun 2023 10:59:37 +0200 Subject: [PATCH 1/6] Stop A Single Process In Windows --- .../payload.txt | 62 +++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt diff --git a/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt b/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt new file mode 100644 index 000000000..a02f2cd51 --- /dev/null +++ b/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt @@ -0,0 +1,62 @@ +REM ##################################################### +REM # | +REM # Title : Stop A Single Process In Windows | +REM # Author : Aleff | +REM # Version : 1.0 | +REM # Category : Execution | +REM # Target : Windows 10/11 | +REM # | +REM ##################################################### + + +REM Requirements: +REM - Nothing + + +REM Write the name of the process that you want to stop +DEFINE PROCESS_NAME example + + +REM Open Task Manager +GUI +DELAY 1000 +STRING Task Manager +ENTER +DELAY 1000 + +REM Goto search bar +TAB +DELAY 500 +TAB +DELAY 500 +TAB +DELAY 500 +TAB +DELAY 500 + +REM Write the process name +STRING PROCESS_NAME +DELAY 500 +ENTER +DELAY 500 +TAB +DELAY 500 +TAB +DELAY 500 +TAB +DELAY 500 +TAB +DELAY 500 + +REM Open the menu and close it ending the task +SHIFT F10 +DELAY 500 +DOWN_ARROW +DELAY 500 +DOWN_ARROW +DELAY 500 +ENTER +DELAY 2000 + +REM Close the task manager +ALT F4 From ff33628f54c1b0f6289806974288f7399fc2d234 Mon Sep 17 00:00:00 2001 From: aleff-github Date: Mon, 12 Jun 2023 11:00:50 +0200 Subject: [PATCH 2/6] Create README.md --- .../README.md | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md diff --git a/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md b/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md new file mode 100644 index 000000000..b514ca02d --- /dev/null +++ b/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md @@ -0,0 +1,21 @@ +# Stop A Single Process In Windows + +This script can be used to quickly stop an active process on a windows machine. + +**Category**: Execution + +## Description + +This script can be used to quickly stop an active process on a windows machine. + +This script open the Task Manager app, then go to search bar, then write the process name that want to be stopped, open the right click mouse menu and click the end task option, then close the task manager app. + +## Dependencies + +* Nothing + +## Settings + +- Write the name of the process that you want to stop + + `DEFINE PROCESS_NAME example` From e82cb19469b3bb7494e63cf1fa92a7ea434994ab Mon Sep 17 00:00:00 2001 From: aleff-github Date: Wed, 14 Jun 2023 13:45:58 +0200 Subject: [PATCH 3/6] UPDATE TO DS1 --- .../payload.txt | 37 ++++++++----------- 1 file changed, 16 insertions(+), 21 deletions(-) diff --git a/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt b/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt index a02f2cd51..7d48f827b 100644 --- a/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt +++ b/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt @@ -1,30 +1,25 @@ -REM ##################################################### -REM # | -REM # Title : Stop A Single Process In Windows | -REM # Author : Aleff | -REM # Version : 1.0 | -REM # Category : Execution | -REM # Target : Windows 10/11 | -REM # | -REM ##################################################### +* ##################################################### +* # | +* # Title : Stop A Single Process In Windows | +* # Author : Aleff | +* # Version : 1.0 | +* # Category : Execution | +* # Target : Windows 10/11 | +* # | +* ##################################################### -REM Requirements: -REM - Nothing +* Requirements: +* - Nothing - -REM Write the name of the process that you want to stop -DEFINE PROCESS_NAME example - - -REM Open Task Manager +* Open Task Manager GUI DELAY 1000 STRING Task Manager ENTER DELAY 1000 -REM Goto search bar +* Goto search bar TAB DELAY 500 TAB @@ -34,7 +29,7 @@ DELAY 500 TAB DELAY 500 -REM Write the process name +* Write the name of the process that you want to stop STRING PROCESS_NAME DELAY 500 ENTER @@ -48,7 +43,7 @@ DELAY 500 TAB DELAY 500 -REM Open the menu and close it ending the task +* Open the menu and close it ending the task SHIFT F10 DELAY 500 DOWN_ARROW @@ -58,5 +53,5 @@ DELAY 500 ENTER DELAY 2000 -REM Close the task manager +* Close the task manager ALT F4 From 9d5eaf807275961ec83505c5683798f731012e15 Mon Sep 17 00:00:00 2001 From: Aleff Date: Fri, 16 Jun 2023 23:40:03 +0200 Subject: [PATCH 4/6] Update README.md --- .../README.md | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md b/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md index b514ca02d..f71604b6a 100644 --- a/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md +++ b/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md @@ -19,3 +19,31 @@ This script open the Task Manager app, then go to search bar, then write the pro - Write the name of the process that you want to stop `DEFINE PROCESS_NAME example` + +## Credits + +

Aleff :octocat:

+
+ + + + + + +
+ + + +
Github +
+ + + +
Instagram +
+ + + +
Discord +
+
From c51381436acc60324aa4a9e8295eaba7bab90d5b Mon Sep 17 00:00:00 2001 From: Aleff Date: Sat, 22 Jul 2023 10:56:49 +0200 Subject: [PATCH 5/6] QUACKed --- .../payload.txt | 68 +++++++++---------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt b/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt index 7d48f827b..e112a472e 100644 --- a/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt +++ b/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt @@ -13,45 +13,45 @@ * - Nothing * Open Task Manager -GUI -DELAY 1000 -STRING Task Manager -ENTER -DELAY 1000 +QUACK GUI +QUACK DELAY 1000 +QUACK STRING Task Manager +QUACK ENTER +QUACK DELAY 1000 * Goto search bar -TAB -DELAY 500 -TAB -DELAY 500 -TAB -DELAY 500 -TAB -DELAY 500 +QUACK TAB +QUACK DELAY 500 +QUACK TAB +QUACK DELAY 500 +QUACK TAB +QUACK DELAY 500 +QUACK TAB +QUACK DELAY 500 * Write the name of the process that you want to stop -STRING PROCESS_NAME -DELAY 500 -ENTER -DELAY 500 -TAB -DELAY 500 -TAB -DELAY 500 -TAB -DELAY 500 -TAB -DELAY 500 +QUACK STRING PROCESS_NAME +QUACK DELAY 500 +QUACK ENTER +QUACK DELAY 500 +QUACK TAB +QUACK DELAY 500 +QUACK TAB +QUACK DELAY 500 +QUACK TAB +QUACK DELAY 500 +QUACK TAB +QUACK DELAY 500 * Open the menu and close it ending the task -SHIFT F10 -DELAY 500 -DOWN_ARROW -DELAY 500 -DOWN_ARROW -DELAY 500 -ENTER -DELAY 2000 +QUACK SHIFT F10 +QUACK DELAY 500 +QUACK DOWN_ARROW +QUACK DELAY 500 +QUACK DOWN_ARROW +QUACK DELAY 500 +QUACK ENTER +QUACK DELAY 2000 * Close the task manager -ALT F4 +QUACK ALT F4 From e2c063ee52f9708d7d5684173764f3fe0e232519 Mon Sep 17 00:00:00 2001 From: Aleff Date: Mon, 10 Jun 2024 10:16:08 +0200 Subject: [PATCH 6/6] variables --- .../README.md | 12 ++---- .../payload.txt | 40 ++++++++++--------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md b/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md index f71604b6a..ef45ed521 100644 --- a/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md +++ b/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md @@ -18,7 +18,9 @@ This script open the Task Manager app, then go to search bar, then write the pro - Write the name of the process that you want to stop - `DEFINE PROCESS_NAME example` + ```shell + PROCESS_NAME='example' + ``` ## Credits @@ -32,17 +34,11 @@ This script open the Task Manager app, then go to search bar, then write the pro
Github - - - - -
Instagram - -
Discord +
LinkedIn diff --git a/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt b/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt index e112a472e..c36323dd3 100644 --- a/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt +++ b/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt @@ -1,25 +1,31 @@ -* ##################################################### -* # | -* # Title : Stop A Single Process In Windows | -* # Author : Aleff | -* # Version : 1.0 | -* # Category : Execution | -* # Target : Windows 10/11 | -* # | -* ##################################################### +##################################################### +# # +# Title : Stop A Single Process In Windows # +# Author : Aleff # +# Version : 1.0 # +# Category : Execution # +# Target : Windows 10/11 # +# # +##################################################### +ATTACKMODE HID -* Requirements: -* - Nothing +# REQUIREMENTS +# - Nothing -* Open Task Manager +# VARIABLES +# - Write the name of the process that you want to stop +PROCESS_NAME='example' + +# Open Task Manager +QUACK DELAY 1500 QUACK GUI QUACK DELAY 1000 QUACK STRING Task Manager QUACK ENTER QUACK DELAY 1000 -* Goto search bar +# Goto search bar QUACK TAB QUACK DELAY 500 QUACK TAB @@ -28,9 +34,7 @@ QUACK TAB QUACK DELAY 500 QUACK TAB QUACK DELAY 500 - -* Write the name of the process that you want to stop -QUACK STRING PROCESS_NAME +QUACK STRING $PROCESS_NAME QUACK DELAY 500 QUACK ENTER QUACK DELAY 500 @@ -43,7 +47,7 @@ QUACK DELAY 500 QUACK TAB QUACK DELAY 500 -* Open the menu and close it ending the task +# Open the menu and close it ending the task QUACK SHIFT F10 QUACK DELAY 500 QUACK DOWN_ARROW @@ -53,5 +57,5 @@ QUACK DELAY 500 QUACK ENTER QUACK DELAY 2000 -* Close the task manager +# Close the task manager QUACK ALT F4