This repository was archived by the owner on Feb 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmain.go
executable file
·189 lines (157 loc) · 4.58 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
package main
import (
"flag"
"fmt"
"log"
"os"
"strings"
humanize "github.com/dustin/go-humanize"
"github.com/fatih/color"
"github.com/shawnsmithdev/zermelo"
)
var (
demangleOpt = flag.Bool("demangle", false, "demangle C++ symbols into their original source identifiers, prettify found C++ symbols (optional)")
hexOpt = flag.Bool("hex", false, "output the strings as a hexadecimal literal (optional)")
offsetOpt = flag.Bool("offset", true, "show the offset of the string in the section (default, recommended)")
binaryOpt = flag.String("binary", "", "the path to the ELF you wish to parse")
formatOpt = flag.String("output-format", "plain", "the format you want to output as (optional, plain/json/xml)")
outputOpt = flag.String("output-file", "", "the path of the output file that you want to output to (optional)")
maxOpt = flag.Uint64("max-count", 0, "the maximum amount of strings that you wish to be output (optional)")
libOpt = flag.Bool("libs", false, "show the linked libraries in the binary (optional)")
infoOpt = flag.Bool("no-info", false, "don't show any information about the binary")
minOpt = flag.Uint64("min", 0, "the minimum length of the string")
colorOpt = flag.Bool("no-color", false, "disable color output in the results")
trimOpt = flag.Bool("no-trim", false, "disable triming whitespace and trailing newlines")
humanOpt = flag.Bool("no-human", false, "don't validate that its a human readable string, this could increase the amount of junk.")
)
// ReadSection is the main logic here
// it combines all of the modules, etc.
func ReadSection(reader *ElfReader, section string) {
var err error
var writer *OutWriter
var count uint64
sect := reader.ReaderParseSection(section)
if *outputOpt != "" {
writer, err = NewOutWriter(*outputOpt, OutParseTypeStr(*formatOpt))
if err != nil {
log.Fatal(err.Error())
}
}
if sect != nil {
nodes := reader.ReaderParseStrings(sect)
// Since maps in Go are unsorted, we're going to have to make
// a slice of keys, then iterate over this and just use the index
// from the map.
keys := make([]uint64, len(nodes))
for k, _ := range nodes {
keys = append(keys, k)
}
err = zermelo.Sort(keys)
if err != nil {
return
}
keys = UtilUniqueSlice(keys)
for _, off := range keys {
if *maxOpt != 0 {
if count == *maxOpt {
break
}
}
str := string(nodes[off])
if uint64(len(str)) < *minOpt {
continue
}
if !*humanOpt {
if !UtilIsNice(str) {
continue
}
}
str = strings.TrimSpace(str)
if !*trimOpt {
bad := []string{"\n", "\r"}
for _, char := range bad {
str = strings.Replace(str, char, "", -1)
}
}
if *demangleOpt {
demangled, err := UtilDemangle(&str)
if err == nil {
str = demangled
}
}
if *hexOpt {
str = UtilConvHex(str)
}
if *offsetOpt {
if os.Getenv("NO_COLOR") != "" || *colorOpt {
fmt.Printf("[%s+%#x]: %s\n",
section,
off,
str)
} else {
fmt.Printf("[%s%s]: %s\n",
color.BlueString(section),
color.GreenString("+%#x", off),
str)
}
} else {
fmt.Println(str)
}
if writer != nil {
writer.WriteResult(str, off)
}
count++
}
}
}
// ReadBasic will read the basic information
// about the ELF
func ReadBasic(reader *ElfReader) {
stat, err := reader.File.Stat()
if err != nil {
return
}
size := humanize.Bytes(uint64(stat.Size()))
fmt.Printf(
"[+] Size: %s\n"+
"[+] Arch: %s\n"+
"[+] Entry point: %#x\n"+
"[+] Class: %s\n"+
"[+] Byte order: %s\n",
size,
UtilConvertMachine(reader.ExecReader.Machine),
reader.ExecReader.Entry,
reader.ExecReader.Class.String(),
reader.ExecReader.ByteOrder.String(),
)
if *libOpt {
fmt.Println("[+] Libraries:")
libs, err := reader.ExecReader.ImportedLibraries()
if err == nil {
for _, lib := range libs {
fmt.Printf("\t [!] %s\n", lib)
}
}
}
fmt.Println(strings.Repeat("-", 16))
}
// main is the entrypoint for this program
func main() {
flag.Parse()
if *binaryOpt == "" {
flag.PrintDefaults()
return
}
r, err := NewELFReader(*binaryOpt)
if err != nil {
log.Fatal(err.Error())
}
defer r.Close()
ReadBasic(r)
sections := []string{".dynstr", ".rodata", ".rdata",
".strtab", ".comment", ".note",
".stab", ".stabstr", ".note.ABI-tag", ".note.gnu.build-id"}
for _, section := range sections {
ReadSection(r, section)
}
}