-
Notifications
You must be signed in to change notification settings - Fork 0
/
rwgopack.go
125 lines (101 loc) · 2.42 KB
/
rwgopack.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// Dennis Chow dchow[AT]xtecsystems.com
// 2024-Aug-18
// No expressed warranty of any kind. Educational purposes only.
// Find me at dwchow.medium.com
package main
import (
"bytes"
"compress/zlib"
"fmt"
"io/ioutil"
"os"
"os/exec"
)
const xorKey = 0x42
func xorCipher(data []byte) []byte {
result := make([]byte, len(data))
for i, b := range data {
result[i] = b ^ xorKey
}
return result
}
func packbin(filename string) ([]byte, error) {
data, err := ioutil.ReadFile(filename)
if err != nil {
return nil, err
}
var compressed bytes.Buffer
w := zlib.NewWriter(&compressed)
w.Write(data)
w.Close()
ciphered := xorCipher(compressed.Bytes())
return ciphered, nil
}
func createSelfExtractingScript(cipheredData []byte, outputFilename string) error {
script := fmt.Sprintf(`package main
import (
"bytes"
"compress/zlib"
"encoding/hex"
"io/ioutil"
"os"
"os/exec"
)
const xorKey = 0x42
func main() {
cipheredData, _ := hex.DecodeString("%x")
deciphered := xorCipher(cipheredData)
r, _ := zlib.NewReader(bytes.NewReader(deciphered))
original, _ := ioutil.ReadAll(r)
r.Close()
tempFile, _ := ioutil.TempFile("", "packed_*.bin")
tempFile.Write(original)
tempFile.Close()
os.Chmod(tempFile.Name(), 0755)
cmd := exec.Command(tempFile.Name(), os.Args[1:]...)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
cmd.Run()
os.Remove(tempFile.Name())
}
func xorCipher(data []byte) []byte {
result := make([]byte, len(data))
for i, b := range data {
result[i] = b ^ xorKey
}
return result
}
`, cipheredData)
err := ioutil.WriteFile(outputFilename+".go", []byte(script), 0644)
if err != nil {
return err
}
cmd := exec.Command("go", "build", "-o", outputFilename, outputFilename+".go")
err = cmd.Run()
if err != nil {
return err
}
os.Remove(outputFilename + ".go")
fmt.Printf("Self-extracting binary created: %s\n", outputFilename)
fmt.Printf("Run it with: ./%s\n", outputFilename)
return nil
}
func main() {
if len(os.Args) != 3 {
fmt.Println("Usage: go run rwgopack.go <input_file> <output_file>")
os.Exit(1)
}
inputFile := os.Args[1]
outputFile := os.Args[2]
cipheredData, err := packbin(inputFile)
if err != nil {
fmt.Printf("Error packing file: %v\n", err)
os.Exit(1)
}
fmt.Printf("Ciphered data size: %d bytes\n", len(cipheredData))
err = createSelfExtractingScript(cipheredData, outputFile)
if err != nil {
fmt.Printf("Error creating self-extracting script: %v\n", err)
os.Exit(1)
}
}