SpoofDPI/cmd/spoof-dpi/main.go

75 lines
1.2 KiB
Go
Raw Normal View History

2021-12-28 02:28:43 +00:00
package main
import (
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
2022-01-11 18:06:14 +00:00
"github.com/sirupsen/logrus"
2022-01-11 15:05:16 +00:00
log "github.com/sirupsen/logrus"
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"
2021-12-28 02:28:43 +00:00
)
2024-07-22 10:59:11 +00:00
var VERSION = "v0.0.0(dev)"
2021-12-28 02:28:43 +00:00
func main() {
2023-05-07 05:57:52 +00:00
util.ParseArgs()
2024-07-22 10:59:11 +00:00
config := util.GetConfig()
if *config.Version {
println("spoog-dpi", VERSION)
println("\nA simple and fast anti-censorship tool written in Go.")
println("https://github.com/xvzc/SpoofDPI")
os.Exit(0)
}
2024-07-22 04:49:18 +00:00
pxy := proxy.New(config)
2023-05-07 05:57:52 +00:00
if *config.Debug {
2022-01-11 15:05:16 +00:00
log.SetLevel(log.DebugLevel)
} else {
log.SetLevel(log.InfoLevel)
}
2022-01-11 18:06:14 +00:00
log.SetFormatter(&logrus.TextFormatter{
FullTimestamp: true,
})
2023-09-08 08:35:41 +00:00
if *config.NoBanner {
2023-05-07 05:57:52 +00:00
util.PrintSimpleInfo()
2023-09-08 08:35:41 +00:00
} else {
util.PrintColoredBanner()
2022-11-29 07:54:28 +00:00
}
2022-01-03 15:13:42 +00:00
if *config.SystemProxy {
if err := util.SetOsProxy(*config.Port); err != nil {
log.Fatal("Error while changing proxy settings")
}
2022-01-04 08:38:36 +00:00
}
2022-01-03 15:13:42 +00:00
2024-07-22 04:49:18 +00:00
go pxy.Start()
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
if *config.SystemProxy {
if err := util.UnsetOsProxy(); err != nil {
log.Fatal(err)
}
2022-01-04 08:38:36 +00:00
}
2021-12-28 02:28:43 +00:00
}