diff --git a/.gitignore b/.gitignore index d7e0653..83c4e68 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,9 @@ discord-exploits discord-exploits-linux-32bit discord-exploits-linux-64bit + +*.mp4 + +*.jpeg + +*.jpg diff --git a/README.md b/README.md index 441e004..ada9e16 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,9 @@ -
- [![GitHub stars](https://img.shields.io/github/stars/Schmenn/discord-exploits?color=FFFFFF&label=stars&style=flat-square)](https://github.com/Schmenn/discord-exploits/stargazers) ![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/Schmenn/discord-exploits?color=FFFFFF&style=flat-square) ![GitHub issues](https://img.shields.io/github/issues/Schmenn/discord-exploits?color=FFFFFF&style=flat-square) [![GitHub forks](https://img.shields.io/github/forks/Schmenn/discord-exploits?color=FFFFFF&style=flat-square)](https://github.com/Schmenn/discord-exploits/network) ![Made with](https://img.shields.io/badge/made%20with-Go-29BEB0?style=flat-square) -
- # Discord-Exploits A program for creating exploited media files for discord written in Go. @@ -33,9 +29,11 @@ the mode `v` stands for virus image The Program only supports `webm` files for video and `png` files for images ##### The file will be saved with a random file name in the directory in which you ran the command -##### You can use [ffmpeg](https://ffmpeg.org) to convert a video to .webm or to convert an image to png (better than online converters) -##### The image may get flagged by windows defender and will get removed. to restore the file, go to Settings > Update & Security > Windows Security > Virus & Threat protection and restore the file +##### You can use [FFmpeg](https://ffmpeg.org) to convert a video to .webm or to convert an image to png (better than online converters) +##### The "virus" image may get flagged by windows defender and will get removed. to restore the file, go to Settings > Update & Security > Windows Security > Virus & Threat protection and restore the file +### Other file formats +If you want to run this program with other file types like `mp4` and `jpg` directly, make sure you have FFmpeg installed and on your path as the program uses it to transcode the file in those cases. ## Installation ### Via releases @@ -61,7 +59,7 @@ linux-32-bit` `cd discord-exploits` -3. Compile it +3. Build it `go build` @@ -73,6 +71,7 @@ linux-32-bit` * Feature for creating a video that, when played on discord, will look like it has got a huge negative duration * Feature for creating a video that, when played on discord, will look like it has got a constant duration of 0 * Feature for creating an image then triggers other users' windows defender after being cached +* Transcoding from `mp4` to `webm` and from `jpeg` and `jpg` to `png` ([requires FFmpeg](https://github.com/Schmenn/discord-exploits#other-file-formats)) ### Upcoming Features are: not yet decided. diff --git a/exploits.go b/exploits.go index 1d76c09..39ca90e 100644 --- a/exploits.go +++ b/exploits.go @@ -2,23 +2,21 @@ package main import ( "fmt" - "github.com/Schmenn/discord-exploits/exploits" - "github.com/Schmenn/discord-exploits/modules" "os" "strings" + "github.com/Schmenn/discord-exploits/exploits" + "github.com/Schmenn/discord-exploits/modules" ) var ( quiet bool = false inputFile string = "no input file provided" mode string = "no mode specified" - //skipArg int = 0 ) func main() { args := os.Args[1:] handleArgs(args, &quiet) - //fmt.Println(quiet) if !quiet { modules.Welcome() } @@ -27,28 +25,23 @@ func main() { fmt.Println("mode: " + mode) initCommand(inputFile, mode) + } func handleArgs(args []string, quiet *bool) { - /*if skipArg > 0 { - skipArg = skipArg - 1 - return - }*/ for i, s := range args { switch s { - // quiet + // Quiet case "-q", "--quiet": *quiet = true // Input File case "-i": - //skipArg++ inputFile = args[i+1] // Mode Selection case "-m": - //skipArg++ mode = args[i+1] // Help Message @@ -64,7 +57,7 @@ func handleArgs(args []string, quiet *bool) { } -func initCommand(inputFile string, mode string) { +/*func initCommand(inputFile string, mode string) { inputFile = strings.ToLower(inputFile) switch strings.ToLower(mode) { case "e": @@ -73,7 +66,7 @@ func initCommand(inputFile string, mode string) { exploits.RunExpandingVideoTask(inputFile) fmt.Println("completed task.") } else { - fmt.Println("File is not a webm, check -h") + fmt.Println("File is not a webm or mp4, check -h") } case "n": if strings.HasSuffix(inputFile, ".webm") { @@ -101,3 +94,92 @@ func initCommand(inputFile string, mode string) { } } } +*/ + +func initCommand(inputFile string, mode string) { + inputFile = strings.ToLower(inputFile) + + if strings.HasSuffix(inputFile, ".webm") { + + switch mode { + case "e": + fmt.Println("editing video.") + exploits.RunExpandingVideoTask(inputFile) + fmt.Println("completed task.") + case "n": + fmt.Println("editing video.") + exploits.RunNegativeVideoTask(inputFile) + fmt.Println("completed task.") + case "0", "z": + fmt.Println("editing video.") + exploits.RunZeroVideoTask(inputFile) + fmt.Println("completed task.") + default: + fmt.Println("the mode doesn't match the file") + } + + } else if strings.HasSuffix(inputFile, ".mp4") { + + switch mode { + case "e": + fmt.Println("transcoding video from mp4 to webm") + out := modules.Transcode(inputFile, "webm") + fmt.Println("finished transcoding video from mp4 to webm") + fmt.Println("editing video.") + exploits.RunExpandingVideoTask(out) + fmt.Println("completed task.") + os.Remove(out) + + case "n": + fmt.Println("transcoding video from mp4 to webm") + out := modules.Transcode(inputFile, "webm") + fmt.Println("finished transcoding video from mp4 to webm") + fmt.Println("editing video.") + exploits.RunNegativeVideoTask(out) + fmt.Println("completed task.") + os.Remove(out) + + case "0", "z": + fmt.Println("transcoding video from mp4 to webm") + out := modules.Transcode(inputFile, "webm") + fmt.Println("finished transcoding video from mp4 to webm") + fmt.Println("editing video.") + exploits.RunZeroVideoTask(out) + fmt.Println("completed task.") + os.Remove(out) + + default: + fmt.Println("the mode doesn't match the file") + } + + } else if strings.HasSuffix(inputFile, ".png") { + fmt.Println("editing photo.") + exploits.RunVirusImageTask(inputFile) + fmt.Println("completed task.") + + } else if strings.HasSuffix(inputFile, ".jpg") { + fmt.Println("transcoding image from jpg to png") + out := modules.Transcode(inputFile, "png") + fmt.Println("finished transcoding image from jpg to png") + fmt.Println("editing photo.") + exploits.RunVirusImageTask(out) + fmt.Println("completed task.") + os.Remove(out) + + } else if strings.HasSuffix(inputFile, ".jpeg") { + if strings.ToLower(mode) != "v" || strings.ToLower(mode) == "no mode specified"{ + fmt.Println("the mode is not compatible with the image, proceeding to run the virus image task anyway") + } + fmt.Println("transcoding image from jpeg to png") + out := modules.Transcode(inputFile, "png") + fmt.Println("finished transcoding image from jpeg to png") + fmt.Println("editing photo.") + exploits.RunVirusImageTask(out) + fmt.Println("completed task.") + os.Remove(out) + } else { + if inputFile == "no input file provided" { + return + } + } +} diff --git a/modules/ffmpeg-check.go b/modules/ffmpeg-check.go new file mode 100644 index 0000000..5c5ab48 --- /dev/null +++ b/modules/ffmpeg-check.go @@ -0,0 +1,14 @@ +package modules + +import ( + "os/exec" +) + +// CheckForFFmpeg looks for ffmpeg in the path +func CheckForFFmpeg() string { + path, err := exec.LookPath("ffmpeg") + + Check(err) + + return path +} diff --git a/modules/help.go b/modules/help.go index baf36c6..127f938 100644 --- a/modules/help.go +++ b/modules/help.go @@ -9,7 +9,7 @@ func Help(progName string) { fmt.Println("Discord-Exploits Help") fmt.Println(" Usage: " + progName + " -i -m