Merge branch 'main' of github.com:drakkan/sftpgo
Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
commit
e6c8b0c86b
3 changed files with 41 additions and 5 deletions
|
@ -19,17 +19,18 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/drakkan/sftpgo/v2/internal/dataprovider"
|
"github.com/drakkan/sftpgo/v2/internal/dataprovider"
|
||||||
|
"github.com/drakkan/sftpgo/v2/internal/logger"
|
||||||
)
|
)
|
||||||
|
|
||||||
// HostEvent is the enumerable for the supported host events
|
// HostEvent is the enumerable for the supported host events
|
||||||
type HostEvent int
|
type HostEvent string
|
||||||
|
|
||||||
// Supported host events
|
// Supported host events
|
||||||
const (
|
const (
|
||||||
HostEventLoginFailed HostEvent = iota
|
HostEventLoginFailed HostEvent = "LoginFailed"
|
||||||
HostEventUserNotFound
|
HostEventUserNotFound HostEvent = "UserNotFound"
|
||||||
HostEventNoLoginTried
|
HostEventNoLoginTried HostEvent = "NoLoginTried"
|
||||||
HostEventLimitExceeded
|
HostEventLimitExceeded HostEvent = "LimitExceeded"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Supported defender drivers
|
// Supported defender drivers
|
||||||
|
@ -132,6 +133,36 @@ func (d *baseDefender) getScore(event HostEvent) int {
|
||||||
return score
|
return score
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// logEvent logs a defender event that changes a host's score
|
||||||
|
func (d *baseDefender) logEvent(ip, protocol string, event HostEvent, totalScore int) {
|
||||||
|
// ignore events which do not change the host score
|
||||||
|
eventScore := d.getScore(event)
|
||||||
|
if eventScore == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.GetLogger().Debug().
|
||||||
|
Timestamp().
|
||||||
|
Str("sender", "defender").
|
||||||
|
Str("client_ip", ip).
|
||||||
|
Str("protocol", protocol).
|
||||||
|
Str("event", string(event)).
|
||||||
|
Int("increase_score_by", eventScore).
|
||||||
|
Int("score", totalScore).
|
||||||
|
Send()
|
||||||
|
}
|
||||||
|
|
||||||
|
// logBan logs a host's ban due to a too high host score
|
||||||
|
func (d *baseDefender) logBan(ip, protocol string) {
|
||||||
|
logger.GetLogger().Info().
|
||||||
|
Timestamp().
|
||||||
|
Str("sender", "defender").
|
||||||
|
Str("client_ip", ip).
|
||||||
|
Str("protocol", protocol).
|
||||||
|
Str("event", "banned").
|
||||||
|
Send()
|
||||||
|
}
|
||||||
|
|
||||||
type hostEvent struct {
|
type hostEvent struct {
|
||||||
dateTime time.Time
|
dateTime time.Time
|
||||||
score int
|
score int
|
||||||
|
|
|
@ -100,7 +100,9 @@ func (d *dbDefender) AddEvent(ip, protocol string, event HostEvent) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
d.baseDefender.logEvent(ip, protocol, event, host.Score)
|
||||||
if host.Score > d.config.Threshold {
|
if host.Score > d.config.Threshold {
|
||||||
|
d.baseDefender.logBan(ip, protocol)
|
||||||
banTime := time.Now().Add(time.Duration(d.config.BanTime) * time.Minute)
|
banTime := time.Now().Add(time.Duration(d.config.BanTime) * time.Minute)
|
||||||
err = dataprovider.SetDefenderBanTime(ip, util.GetTimeAsMsSinceEpoch(banTime))
|
err = dataprovider.SetDefenderBanTime(ip, util.GetTimeAsMsSinceEpoch(banTime))
|
||||||
if err == nil {
|
if err == nil {
|
||||||
|
|
|
@ -206,9 +206,11 @@ func (d *memoryDefender) AddEvent(ip, protocol string, event HostEvent) {
|
||||||
idx++
|
idx++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
d.baseDefender.logEvent(ip, protocol, event, hs.TotalScore)
|
||||||
|
|
||||||
hs.Events = hs.Events[:idx]
|
hs.Events = hs.Events[:idx]
|
||||||
if hs.TotalScore >= d.config.Threshold {
|
if hs.TotalScore >= d.config.Threshold {
|
||||||
|
d.baseDefender.logBan(ip, protocol)
|
||||||
d.banned[ip] = time.Now().Add(time.Duration(d.config.BanTime) * time.Minute)
|
d.banned[ip] = time.Now().Add(time.Duration(d.config.BanTime) * time.Minute)
|
||||||
delete(d.hosts, ip)
|
delete(d.hosts, ip)
|
||||||
d.cleanupBanned()
|
d.cleanupBanned()
|
||||||
|
@ -222,6 +224,7 @@ func (d *memoryDefender) AddEvent(ip, protocol string, event HostEvent) {
|
||||||
d.hosts[ip] = hs
|
d.hosts[ip] = hs
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
d.baseDefender.logEvent(ip, protocol, event, ev.score)
|
||||||
d.hosts[ip] = hostScore{
|
d.hosts[ip] = hostScore{
|
||||||
TotalScore: ev.score,
|
TotalScore: ev.score,
|
||||||
Events: []hostEvent{ev},
|
Events: []hostEvent{ev},
|
||||||
|
|
Loading…
Reference in a new issue