-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
56 lines (45 loc) · 1.01 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
package main
import (
"flag"
"fmt"
"os"
"github.com/sirupsen/logrus"
)
var (
configPath string
configs *AppConfig
dbPath string
verbose bool
refreshDB bool
)
func init() {
flag.StringVar(&configPath, "config", "config.yaml", "Path to the configuration file")
flag.StringVar(&dbPath, "db", "honeypot.db", "Path to the SQLite database file")
flag.BoolVar(&verbose, "verbose", false, "Enable verbose logging")
flag.BoolVar(&refreshDB, "refresh-db", false, "Refresh the database (Warning: This will delete existing data!)")
flag.Parse()
InitializeLogger()
if verbose {
log.SetLevel(logrus.DebugLevel)
} else {
log.SetLevel(logrus.InfoLevel)
}
}
func main() {
if verbose {
fmt.Println("Starting the honeypot server...")
}
if refreshDB {
if verbose {
fmt.Println("Refreshing database...")
}
os.Remove(dbPath)
}
InitDB(dbPath)
configs, err := LoadConfigurations(configPath)
if err != nil {
logError("Failed to load configurations: " + err.Error())
return
}
server(configs)
}