Message for attackers

This commit is contained in:
Manu Mtz-Almeida 2015-05-14 22:49:42 +02:00
parent 3db1479acc
commit e33ea855d7
1 changed files with 8 additions and 6 deletions

View File

@ -11,16 +11,18 @@ import (
) )
func rateLimit(c *gin.Context) { func rateLimit(c *gin.Context) {
ip := c.ClientIP() ip := c.ClientIP()
value := ips.Add(ip, 1) value := int(ips.Add(ip, 1))
if int(value)%50 == 0 { if value%10 == 0 {
fmt.Printf("ip: %s, count: %d\n", ip, int(value)) fmt.Printf("ip: %s, count: %d\n", ip, value)
} }
if value >= 200 { if value >= 100 {
if int(value)%200 == 0 { if value%100 == 0 {
fmt.Println("ip blocked") fmt.Println("ip blocked")
} }
c.AbortWithStatus(503) c.Abort()
c.String(503, "you were automatically banned :)")
} }
} }