-
Notifications
You must be signed in to change notification settings - Fork 803
/
main.go
72 lines (61 loc) · 2.24 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
/*
Merlin is a post-exploitation command and control framework.
This file is part of Merlin.
Copyright (C) 2024 Russel Van Tuyl
Merlin is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
any later version.
Merlin is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Merlin. If not, see <http://www.gnu.org/licenses/>.
*/
package main
import (
// Standard
"flag"
"fmt"
"log"
// Internal
merlin "github.com/Ne0nd0g/merlin/v2/pkg"
"github.com/Ne0nd0g/merlin/v2/pkg/logging"
"github.com/Ne0nd0g/merlin/v2/pkg/services/rpc"
)
func main() {
addr := flag.String("addr", "127.0.0.1:50051", "The address to listen on for client connections")
password := flag.String("password", "merlin", "the password to for CLI RPC clients to connect to this server")
secure := flag.Bool("secure", false, "Require client TLS certificate verification")
tlsKey := flag.String("tlsKey", "", "TLS private key file path")
tlsCert := flag.String("tlsCert", "", "TLS certificate file path")
tlsCA := flag.String("tlsCA", "", "TLS Certificate Authority file path to verify client certificates")
debug := flag.Bool("debug", false, "Enable debug logging")
trace := flag.Bool("trace", false, "Enable trace logging")
extra := flag.Bool("extra", false, "Enable extra debug logging")
v := flag.Bool("version", false, "Print the version number and exit")
flag.Parse()
if *v {
fmt.Printf("Merlin Version: %s, Build: %s\n", merlin.Version, merlin.Build)
return
}
// Set the logging level
if *extra {
logging.SetLevel(logging.LevelExtraDebug)
} else if *trace {
logging.SetLevel(logging.LevelTrace)
} else if *debug {
logging.SetLevel(logging.LevelDebug)
}
// Get the RPC service
service, err := rpc.NewRPCService(*password, *secure, *tlsCert, *tlsKey, *tlsCA)
if err != nil {
log.Fatal(err)
}
err = service.Run(*addr)
if err != nil {
log.Fatal(err)
}
log.Printf("Exiting without error")
}