-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmain.go
212 lines (191 loc) · 5.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
package main
import (
"bufio"
"fmt"
"io"
"io/ioutil"
"log"
"os"
"path/filepath"
"regexp"
"strings"
"github.com/akamensky/argparse"
"github.com/fatih/color"
)
var red = color.New(color.FgRed).SprintFunc()
var green = color.New(color.FgGreen).SprintFunc()
var cyan = color.New(color.FgBlue).SprintFunc()
var bold = color.New(color.Bold).SprintFunc()
var yellow = color.New(color.FgYellow).SprintFunc()
var magenta = color.New(color.FgMagenta).SprintFunc()
var blue = color.New(color.FgBlue).SprintFunc()
var found = 0
func read_file(file string) (string, error) {
fil, err := os.Open(file)
//defer file.Close()
if err != nil {
return "", err
}
b, err := ioutil.ReadAll(fil)
if err != nil {
return "", err
}
return string(b), nil
}
func write_file(filename string, data string) {
file, err := os.Create(filename)
exit_on_error("FILE CREATION ERROR", err)
defer file.Close()
_, err = io.WriteString(file, data)
exit_on_error("FILE WRITE ERROR", err)
}
func exit_on_error(message string, err error) {
if err != nil {
fmt.Println(fmt.Sprintf("%s %s: %s", red("[X]"), bold(message), err.Error()))
os.Exit(0)
}
}
func print_good(msg string) {
fmt.Printf("%s :: %s \n", green(bold("[+]")), msg)
}
func print_info(msg string) {
fmt.Printf("[*] :: %s\n", msg)
}
func print_error(msg string) {
fmt.Printf("%s :: %s \n", red(bold("[x]")), msg)
}
func file_to_slice(file string) []string {
fil, _ := os.Open(file)
defer fil.Close()
var lines []string
scanner := bufio.NewScanner(fil)
for scanner.Scan() {
lines = append(lines, scanner.Text())
}
return lines
}
func data_extract(source string) (map[string][]string, error) {
src := ""
names := file_to_slice("names.txt")
if _, err := os.Stat(source); os.IsNotExist(err) {
src = source
} else {
src, err = read_file(source)
if err != nil {
return map[string][]string{}, err
}
print_info("Loaded file: " + bold(source))
}
regexes := map[string]string{
"mail": "^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$",
"ip": `(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}`,
"mac": `^([0-9A-Fa-f]{2}[:-])/contains{5}([0-9A-Fa-f]{2})$`,
"date": `\d{4}-\d{2}-\d{2}`,
"domain": `^(?:https?:\/\/)?(?:[^@\/\n]+@)?(?:www\.)?([^:\/\n]+)`,
"phone": `^(?:(?:\(?(?:00|\+)([1-4]\d\d|[1-9]\d?)\)?)?[\-\.\ \\\/]?)?((?:\(?\d{1,}\)?[\-\.\ \\\/]?){0,})(?:[\-\.\ \\\/]?(?:#|ext\.?|extension|x)[\-\.\ \\\/]?(\d+))?$`,
"ccn": `^(?:4[0-9]{12}(?:[0-9]{3})?|[25][1-7][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$`,
"time": `^([0-9]|0[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9])$`,
"crypto": `^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$`,
}
results := map[string][]string{
"mail": []string{},
"ip": []string{},
"mac": []string{},
"date": []string{},
"domain": []string{},
"phone": []string{},
"ccn": []string{},
"time": []string{},
"crypto": []string{},
}
for regex_name, regex := range regexes {
r := regexp.MustCompile(regex)
matches := r.FindAllString(src, -1)
for _, m := range matches {
//b := results[regex_name]
results[regex_name] = append(results[regex_name], m)
found += 1
}
}
for _, name := range names {
if strings.Contains(src, name) {
results["names"] = append(results["names"], name)
found += 1
}
}
return results, nil
}
func analyze(source string, remove bool) {
hits, _ := data_extract(source)
contents, _ := read_file(source)
if found != 0 {
print_good(fmt.Sprintf("Found %d interesting strings\n", found))
for id, matches := range hits {
fmt.Println(blue("~~~~~~~~~~~~~~~~~~~~ [" + id + "]"))
fmt.Println(strings.Join(matches, "\n*"))
}
} else {
print_error("No results found")
}
if remove {
for _, matches := range hits {
for _, m := range matches {
contents = strings.Replace(contents, m, "", -1)
}
}
write_file(source, contents)
}
}
func get_all_files() ([]string, error) {
files := []string{}
err := filepath.Walk(".", func(path string, info os.FileInfo, err error) error {
files = append(files, path)
return nil
})
if err != nil {
return []string{}, err
} else {
return files, nil
}
}
func read_names_file(file string) ([]string, error) {
fil, err := os.Open("names.txt")
if err != nil {
log.Fatalf("failed opening file %s", err)
}
scanner := bufio.NewScanner(fil)
scanner.Split(bufio.ScanLines)
var names []string
for scanner.Scan() {
names = append(names, scanner.Text())
}
fil.Close()
return names, nil
}
func contains_any(elements []string, str string) string {
for element := range elements {
e := elements[element]
if strings.Contains(str, e) {
return e
}
}
return ""
}
func main() {
parser := argparse.NewParser("sammler", "") //, usage_prologue)
//var out *string = parser.String("o", "out", &argparse.Options{Required: false, Default:"default", Help: "Save found strings to a file"})
var file *[]string = parser.List("f", "file", &argparse.Options{Required: false, Help: "Files/strings to analyze"})
var all *bool = parser.Flag("a", "all", &argparse.Options{Required: false, Help: "Analyze all files from current directory"})
var remove *bool = parser.Flag("r", "remove", &argparse.Options{Required: false, Help: "Remove found data from the analyzed file"})
commandline_args := os.Args
err := parser.Parse(commandline_args)
exit_on_error("Parser error", err)
to_scan := *file
if *all {
to_scan, err = get_all_files()
exit_on_error("Dirwalk error", err)
}
for _, f := range to_scan {
analyze(f, *remove)
}
}