JustPaste.it

Script

@echo off
setlocal enabledelayedexpansion
 
:: Set delay between launches in seconds
set delay=5
 
:: Path to the malware folder
set "malware_folder=%~dp0malware"
 
:: Check if folder exists
if not exist "%malware_folder%" (
    echo [!] Folder "malware" not found in current directory.
    pause
    exit /b
)
 
:: Loop through all .exe files in the malware folder
for %%f in ("%malware_folder%\*.exe") do (
    echo [*] Launching: %%~nxf
    start "" "%%f"
    timeout /t %delay% >nul
)
 
echo [*] All malware samples launched with %delay%-second intervals.
pause