SpoofDPI/cmd/spoofdpi/main.go

70 lines
1.2 KiB
Go
Raw Normal View History

2021-12-28 02:28:43 +00:00
package main
import (
2024-08-22 08:49:05 +00:00
"context"
2021-12-29 17:08:30 +00:00
"os"
2022-01-04 08:38:36 +00:00
"os/signal"
"syscall"
2021-12-28 06:10:06 +00:00
"github.com/xvzc/SpoofDPI/util/log"
2022-01-03 15:13:42 +00:00
"github.com/xvzc/SpoofDPI/proxy"
2022-01-04 08:38:36 +00:00
"github.com/xvzc/SpoofDPI/util"
2024-08-06 22:32:35 +00:00
"github.com/xvzc/SpoofDPI/version"
2021-12-28 02:28:43 +00:00
)
func main() {
args := util.ParseArgs()
if args.Version {
2024-08-06 22:49:06 +00:00
version.PrintVersion()
2024-07-22 10:59:11 +00:00
os.Exit(0)
}
config := util.GetConfig()
config.Load(args)
2024-08-22 08:49:05 +00:00
log.InitLogger(config)
ctx := util.GetCtxWithScope(context.Background(), "MAIN")
logger := log.GetCtxLogger(ctx)
2022-01-11 15:05:16 +00:00
2024-08-22 08:49:05 +00:00
pxy := proxy.New(config)
2022-01-11 18:06:14 +00:00
if config.Banner {
2023-09-08 08:35:41 +00:00
util.PrintColoredBanner()
} else {
util.PrintSimpleInfo()
2022-11-29 07:54:28 +00:00
}
2022-01-03 15:13:42 +00:00
if config.SystemProxy {
2024-08-25 06:57:38 +00:00
if err := util.SetOsProxy(uint16(config.Port)); err != nil {
2024-08-22 08:49:05 +00:00
logger.Fatal().Msgf("error while changing proxy settings: %s", err)
}
defer func() {
if err := util.UnsetOsProxy(); err != nil {
logger.Fatal().Msgf("error while disabling proxy: %s", err)
}
}()
2022-01-04 08:38:36 +00:00
}
2022-01-03 15:13:42 +00:00
2024-08-22 08:49:05 +00:00
go pxy.Start(context.Background())
2022-01-03 17:36:27 +00:00
2022-01-08 17:40:05 +00:00
// Handle signals
2022-01-04 08:38:36 +00:00
sigs := make(chan os.Signal, 1)
2022-01-03 17:36:27 +00:00
done := make(chan bool, 1)
2022-01-04 08:38:36 +00:00
signal.Notify(
sigs,
syscall.SIGKILL,
syscall.SIGINT,
syscall.SIGTERM,
syscall.SIGQUIT,
syscall.SIGHUP)
go func() {
2022-01-03 17:36:27 +00:00
_ = <-sigs
done <- true
}()
2022-01-04 08:38:36 +00:00
<-done
2021-12-28 02:28:43 +00:00
}