Skip to content
This repository has been archived by the owner on Aug 18, 2023. It is now read-only.

Commit

Permalink
v5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Tylous committed Apr 27, 2023
1 parent 210410a commit 6b9ecd5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 26 deletions.
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

13 changes: 8 additions & 5 deletions Loader/Loader.go
Expand Up @@ -1240,15 +1240,15 @@ func CompileLoader(mode string, outFile string, filename string, name string, Co
os.Chdir("..")
os.Rename(name+"/"+name+".exe", name+".exe")
os.RemoveAll(name)
if path != "" {
Utils.FileMover(name, path)
}
fmt.Println("[+] Binary Compiled")
Utils.Sha256(name + ".exe")
if CommandLoader == "bits" {
outFile = name + ".exe"
Utils.Command(URL, CommandLoader, outFile)
}
Utils.Sha256(name + ".exe")
if path != "" {
Utils.FileMover(name, path)
}
return
} else if mode == "dll" {
os.Chdir("..")
Expand Down Expand Up @@ -1289,9 +1289,12 @@ func CompileLoader(mode string, outFile string, filename string, name string, Co
os.Chdir("..")
os.Rename(name+"/"+outFile, outFile)
os.RemoveAll(name)
Utils.Sha256(outFile)
if path != "" {
Utils.FileMover(outFile, path)
}
Utils.Sha256(outFile)
fmt.Println("[+] Loader Compiled")
if path != "" {
Utils.FileMover(name, path)
}
}

0 comments on commit 6b9ecd5

Please sign in to comment.