mirror of
https://github.com/Schmenn/discord-exploits.git
synced 2024-12-22 20:55:31 +00:00
30aa09f720
[^] README.md | for transcoding information [-] exploits.go | removed skipArg completely as it's not needed at all [^] exploits.go | changed mode handler because I made a mistake which makes v the zero duration video mode [^] .gitignore | added .jpg [^] transcode-to-webm.go => transcode.go | fixed FFmpeg output and made it print the temporary file location [^] name.go | made file name longer and changed Unix to UnixNano because the seed as Unix sometimes creates two identical file names when images are transcoded as it is really fast [^] help.go | changed "doesn't" to "don't" [^] ffmpeg-check.go | changed error checking function to the one already present in modules/error.go
24 lines
899 B
Go
24 lines
899 B
Go
package modules
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
//Help program usage
|
|
func Help(progName string) {
|
|
fmt.Println("Discord-Exploits Help")
|
|
fmt.Println(" Usage: " + progName + " -i <input file> -m <mode> [-q]")
|
|
fmt.Println("")
|
|
fmt.Println("--quiet -q don't show welcome screen")
|
|
fmt.Println("-i <file> provide input file")
|
|
fmt.Println("-m <mode> specify mode")
|
|
fmt.Println("")
|
|
fmt.Println("modes:")
|
|
fmt.Println(" video:")
|
|
fmt.Println(" e takes input video (.webm) and edits it so discord will keep making it longer")
|
|
fmt.Println(" n takes input video (.webm) and edits it so discord will think it has got a huge negative duration")
|
|
fmt.Println(" z, 0 takes input video (.webm) and edits it so discord will think it has got a 0s duration")
|
|
fmt.Println(" image:")
|
|
fmt.Println(" v takes an image (.png) and makes other users' windows defender think it's a virus\n ")
|
|
}
|