-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.go
88 lines (75 loc) · 1.98 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
package main
import (
"flag"
"log"
"os"
"os/signal"
"syscall"
"github.com/calpa/urusai/config"
"github.com/calpa/urusai/crawler"
)
func main() {
// Parse command line arguments
var configFile string
var logLevel string
var timeout int
flag.StringVar(&configFile, "config", "", "path to config file")
flag.StringVar(&logLevel, "log", "info", "logging level (debug, info, warn, error)")
flag.IntVar(&timeout, "timeout", 0, "for how long the crawler should be running, in seconds (0 means no timeout)")
flag.Parse()
// Set up logging
setLogLevel(logLevel)
// Load configuration
var cfg *config.Config
var err error
if configFile == "" {
// Use default configuration if no config file is specified
log.Println("No config file specified, using default configuration")
cfg, err = config.LoadDefaultConfig()
if err != nil {
log.Fatalf("Failed to load default config: %v", err)
}
} else {
// Load configuration from file
cfg, err = config.LoadFromFile(configFile)
if err != nil {
log.Fatalf("Failed to load config: %v", err)
}
}
// Set timeout if provided
if timeout > 0 {
cfg.Timeout = timeout
}
// Create and start crawler
c := crawler.NewCrawler(cfg)
// Handle graceful shutdown
sigChan := make(chan os.Signal, 1)
signal.Notify(sigChan, syscall.SIGINT, syscall.SIGTERM)
go func() {
<-sigChan
log.Println("Received shutdown signal, exiting gracefully...")
os.Exit(0)
}()
// Start crawling
log.Println("Starting urusai - HTTP/DNS traffic noise generator")
c.Crawl()
}
func setLogLevel(level string) {
switch level {
case "debug":
log.SetFlags(log.Ldate | log.Ltime | log.Lshortfile)
log.SetPrefix("DEBUG: ")
case "info":
log.SetFlags(log.Ldate | log.Ltime)
log.SetPrefix("INFO: ")
case "warn":
log.SetFlags(log.Ldate | log.Ltime)
log.SetPrefix("WARNING: ")
case "error":
log.SetFlags(log.Ldate | log.Ltime | log.Lshortfile)
log.SetPrefix("ERROR: ")
default:
log.SetFlags(log.Ldate | log.Ltime)
log.SetPrefix("INFO: ")
}
}