diff --git a/exploits/crash-video.go b/exploits/crash-video.go index 87949c9..51fd53b 100644 --- a/exploits/crash-video.go +++ b/exploits/crash-video.go @@ -22,7 +22,7 @@ func RunCrashVideoTask(filename string) { err = os.WriteFile(binname, bin, 0777) modules.Check(err) modules.CheckForFFmpeg() - cmd := exec.Command("ffmpeg", "-f", "concat", "-i", txtname, "-y", "-safe", "0", "-c", "copy", outname) + cmd := exec.Command("ffmpeg", "-f", "concat", "-safe", "0", "-i", txtname, "-y", "-c", "copy", outname) err = cmd.Run() modules.Check(err)