diff --git a/payloads/library/execution/Send_Messages_In_Discord_Channel-Server/README.md b/payloads/library/execution/Send_Messages_In_Discord_Channel-Server/README.md new file mode 100644 index 000000000..49bc72169 --- /dev/null +++ b/payloads/library/execution/Send_Messages_In_Discord_Channel-Server/README.md @@ -0,0 +1,70 @@ +# Send Messages In Discord Channel-Server + +This script can be used to send messages in a specific channel of a Discord text server. + +**Category**: Execution + +## Description + +This script can be used to send messages in a specific channel of a Discord text server. + +Open the GUI interface and trough this one open the Discord app, then use the keyboard shortcut CTRL-k to open the server chat. + +**Note** that if you want to send a message within a chat that has a very common name such as #general then be aware that it is very likely that the chat of the server in which you want to send the message will not be selected but some other. If, on the other hand, you want to send it in a chat with a somewhat more specific name such as wifi-pineapple (Hak5's text channel) then almost certainly the channel in which you wish to send the message will be selected. + +![](https://i.ibb.co/2cMgxFz/1.png) +![](https://i.ibb.co/QjZfwv1/2.png) + +## Dependencies + +* Discord Installed +* Internet connection + +## Settings + +- If, for example, the server is Hak5 and the channel in which you want to send the message is called wifi-pineapple then you should write just wifi-pineapple + + `CHAT_NAME='example'` + +- Create, remove or change your messages + + ``` + ... + [21] MESSAGE1='example' + [22] MESSAGE2='example' + [23] MESSAGE3='example' + ... + [40] QUACK STRING $MESSAGE1 + [41] QUACK ENTER + [42] QUACK STRING $MESSAGE2 + [43] QUACK ENTER + [44] QUACK STRING $MESSAGE3 + [45] QUACK ENTER + ... + ``` + +- This depends on the power of the computer and whether there are upgrades to be done + + `[27] DELAY 6000` + +## Credits + +

Aleff

+
+ + + + + +
+ + + +
Github +
+ + + +
LinkedIn +
+
diff --git a/payloads/library/execution/Send_Messages_In_Discord_Channel-Server/payload.txt b/payloads/library/execution/Send_Messages_In_Discord_Channel-Server/payload.txt new file mode 100644 index 000000000..f40b41bcf --- /dev/null +++ b/payloads/library/execution/Send_Messages_In_Discord_Channel-Server/payload.txt @@ -0,0 +1,46 @@ +* REM ############################################################ +* REM # # +* REM # Title : Send Messages In Discord Channel-Server # +* REM # Author : Aleff # +* REM # Version : 1.0 # +* REM # Category : Execution # +* REM # Target : Windows 10-11 # +* REM # # +* REM ############################################################ + +ATTACKMODE HID + +QUACK REM REQUIREMENTS +* REM - Internet connection +* REM - Discord Installed + +QUACK REM VARIABLES +* REM If, for example, the server is Hak5 and the channel in which you want to send the message is called wifi-pineapple then you should write just wifi-pineapple +CHAT_NAME='example' +* REM Write here your messages +MESSAGE1='example' +MESSAGE2='example' +MESSAGE3='example' + +* REM Open Discord app +QUACK GUI +QUACK DELAY 1000 +QUACK STRING Discord +QUACK ENTER + +* REM This depends on the power of the computer and whether there are upgrades to be done +QUACK DELAY 6000 + +* REM Search by Discord keyboard shortcut and open it +QUACK CTRL-k +QUACK DELAY 500 +QUACK STRING $CHAT_NAME +QUACK ENTER +QUACK DELAY 500 +QUACK STRING $MESSAGE1 +QUACK ENTER +QUACK STRING $MESSAGE2 +QUACK ENTER +QUACK STRING $MESSAGE3 +QUACK ENTER +QUACK ALT F4