✨ IP Blacklist
This commit is contained in:
parent
105ec693f8
commit
f3f9ebb5af
34
pkg/internal/web/blacklist.go
Normal file
34
pkg/internal/web/blacklist.go
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
package web
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bufio"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"github.com/rs/zerolog/log"
|
||||||
|
)
|
||||||
|
|
||||||
|
var ipBlocklist []string
|
||||||
|
|
||||||
|
func AddBlockIP(ip string) {
|
||||||
|
ipBlocklist = append(ipBlocklist, ip)
|
||||||
|
}
|
||||||
|
|
||||||
|
func ParseBlockIPList(path string) error {
|
||||||
|
file, err := os.Open(path)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer file.Close()
|
||||||
|
|
||||||
|
scanner := bufio.NewScanner(file)
|
||||||
|
for scanner.Scan() {
|
||||||
|
ipBlocklist = append(ipBlocklist, scanner.Text())
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := scanner.Err(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Info().Int("count", len(ipBlocklist)).Msg("Block IP list parsed successfully.")
|
||||||
|
return nil
|
||||||
|
}
|
@ -51,7 +51,13 @@ func NewServer() *WebApp {
|
|||||||
},
|
},
|
||||||
}))
|
}))
|
||||||
|
|
||||||
app.Use(auth.ContextMiddleware)
|
app.Use(func(c *fiber.Ctx) error {
|
||||||
|
if lo.Contains(ipBlocklist, c.IP()) {
|
||||||
|
return fiber.NewError(fiber.StatusForbidden, "your ip has been listed in the blacklist")
|
||||||
|
}
|
||||||
|
return c.Next()
|
||||||
|
})
|
||||||
|
|
||||||
app.Use(limiter.New(limiter.Config{
|
app.Use(limiter.New(limiter.Config{
|
||||||
Max: viper.GetInt("rate_limit"),
|
Max: viper.GetInt("rate_limit"),
|
||||||
Expiration: 60 * time.Second,
|
Expiration: 60 * time.Second,
|
||||||
@ -69,6 +75,8 @@ func NewServer() *WebApp {
|
|||||||
},
|
},
|
||||||
}))
|
}))
|
||||||
|
|
||||||
|
app.Use(auth.ContextMiddleware)
|
||||||
|
|
||||||
api.MapControllers(app)
|
api.MapControllers(app)
|
||||||
|
|
||||||
return &WebApp{app}
|
return &WebApp{app}
|
||||||
|
@ -50,6 +50,8 @@ func main() {
|
|||||||
// Load settings
|
// Load settings
|
||||||
if err := viper.ReadInConfig(); err != nil {
|
if err := viper.ReadInConfig(); err != nil {
|
||||||
log.Panic().Err(err).Msg("An error occurred when loading settings.")
|
log.Panic().Err(err).Msg("An error occurred when loading settings.")
|
||||||
|
} else if err := web.ParseBlockIPList(viper.GetString("ip_block_path")); err != nil {
|
||||||
|
log.Error().Err(err).Msg("An error occurred when parsing block IP list.")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Connect to kv (etcd)
|
// Connect to kv (etcd)
|
||||||
|
@ -3,6 +3,7 @@ grpc_bind = "0.0.0.0:7001"
|
|||||||
domain = "localhost"
|
domain = "localhost"
|
||||||
|
|
||||||
templates_dir = "./templates"
|
templates_dir = "./templates"
|
||||||
|
ip_block_path = "./ip_block.list"
|
||||||
|
|
||||||
rate_limit = 120
|
rate_limit = 120
|
||||||
rate_limit_advance = 60
|
rate_limit_advance = 60
|
||||||
|
Loading…
x
Reference in New Issue
Block a user