-
Notifications
You must be signed in to change notification settings - Fork 42
/
main.go
115 lines (102 loc) · 2.7 KB
/
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
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
/*
Package main, calls all the libraries needed and handles cli flags.
*/
package main
import (
"flag"
"os"
"github.com/89luca89/pakkero/internal/pakkero"
)
const (
programName = "pakkero"
version = "0.7.0"
minArgsLen = 2
)
const (
minOffsetCompressed = 750000
maxOffsetCompressed = 800000
minOffset = 1910000
maxOffset = 2100000
)
var (
dependencies = []string{"ls", "sed", "go", "strip"}
dependenciesComplete = []string{"upx", "ls", "sed", "go", "strip"}
)
/*
TestDependencies if all dependencies are present
in the system.
*/
func testDependencies(deps []string) {
for _, v := range deps {
if !pakkero.ExecCommand("which", []string{v}) {
println("Missing Dependency: " + v)
os.Exit(pakkero.ERR)
}
}
}
/*
Print version.
*/
func printVersion() {
println(programName + " v" + version)
os.Exit(pakkero.OK)
}
/*
Print Help.
*/
func help() {
println("Usage: " +
programName +
" -file /path/to/file -offset OFFSET (-o /path/to/output) (-c) (-register-dep /path/to/file)")
println(" -file <file> Target file to Pack")
println(" -o <file> place the output into <file> (default is <inputfile>.enc, optional)")
println(" -offset <offset> Offset where to start the payload (Number of Bytes, optional)")
println(" -register-dep <file-dependency> Target file to analyze and use as fingerprint (absolute path, optional)")
println(" -c compress the output to occupy less space (uses UPX, optional)")
println(" -enable-stdout Whether to wait and handle the process stdout/sterr or not (false by default, optional)")
println(" -v Check " + programName + " version")
}
func main() {
if len(os.Args) < minArgsLen {
help()
os.Exit(pakkero.ERR)
}
flag.Usage = func() {
help()
}
file := flag.String("file", "", "")
dependency := flag.String("register-dep", "", "")
output := flag.String("o", "", "")
offset := flag.Int64("offset", 0, "")
compress := flag.Bool("c", false, "")
stdout := flag.Bool("enable-stdout", false, "")
flag.Bool("v", false, "")
flag.Parse()
switch os.Args[1] {
case "-v":
printVersion()
default:
// fist test if all dependencies are present
if *compress {
// compression needs additional upx dependency
testDependencies(dependenciesComplete)
} else {
testDependencies(dependencies)
}
// set a default offset if not specified
if *offset == 0 {
if *compress {
*offset = pakkero.Random(minOffsetCompressed, maxOffsetCompressed)
} else {
*offset = pakkero.Random(minOffset, maxOffset)
}
}
if *file != "" {
pakkero.Pakkero(*file, *offset, *output, *dependency, *compress, *stdout)
} else {
println("Missing arguments or invalid arguments!")
help()
os.Exit(pakkero.ERR)
}
}
}