overflow_discovery/service/matcher/smtp/smtp.go

68 lines
1.1 KiB
Go
Raw Normal View History

2017-11-21 12:47:55 +00:00
package smtp
import (
"strings"
"git.loafle.net/overflow/overflow_discovery/service/matcher"
)
type SmtpMatcher struct {
matcher.Matchers
}
func (t *SmtpMatcher) ServiceName() string {
return "SMTP"
}
func (t *SmtpMatcher) IsPrePacket() bool {
return true
}
func (t *SmtpMatcher) HasResponse(index int) bool {
return true
}
func (t *SmtpMatcher) IsError(info matcher.MatchInfo, index int, packet *matcher.Packet) bool {
return false
}
func (t *SmtpMatcher) Match(info matcher.MatchInfo, index int, packet *matcher.Packet) bool {
if packet == nil {
return false
}
buf := string(packet.Buffer)
if len(buf) == 0 || len(buf) < 5 {
return false
}
splits := strings.Split(buf, "\r\n")
splits = strings.Split(buf, " ")
if index == 0 {
if splits[0] == "220" {
return true
}
} else if index == 1 {
if splits[0] == "250" {
return true
}
} else if index == 2 {
if splits[0] == "221" {
return true
}
}
return false
}
func NewMatcher() matcher.Matcher {
m := &SmtpMatcher{}
b := []byte("helo test\r\n")
m.AddPacket(matcher.NewPacket(b, len(b)))
b = []byte("quit\r\n")
m.AddPacket(matcher.NewPacket(b, len(b)))
return m
}