72 lines
1.2 KiB
Go
72 lines
1.2 KiB
Go
package smtp
|
|
|
|
import (
|
|
"strings"
|
|
|
|
osm "git.loafle.net/overflow/service_matcher-go"
|
|
)
|
|
|
|
type SmtpMatcher struct {
|
|
osm.Matchers
|
|
}
|
|
|
|
func (t *SmtpMatcher) Key() string {
|
|
return "SMTP"
|
|
}
|
|
|
|
func (t *SmtpMatcher) String() string {
|
|
return "SMTP"
|
|
}
|
|
|
|
func (t *SmtpMatcher) IsPrePacket() bool {
|
|
return true
|
|
}
|
|
|
|
func (t *SmtpMatcher) HasResponse(index int) bool {
|
|
return true
|
|
}
|
|
|
|
func (t *SmtpMatcher) IsError(info osm.MatchInfo, index int, packet *osm.Packet) bool {
|
|
return false
|
|
}
|
|
|
|
func (t *SmtpMatcher) Match(info osm.MatchInfo, index int, packet *osm.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() osm.Matcher {
|
|
|
|
m := &SmtpMatcher{}
|
|
|
|
b := []byte("helo test\r\n")
|
|
m.AddPacket(osm.NewPacket(b, len(b)))
|
|
|
|
b = []byte("quit\r\n")
|
|
m.AddPacket(osm.NewPacket(b, len(b)))
|
|
|
|
return m
|
|
}
|