2018-08-13 07:48:32 +00:00
|
|
|
package ftp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
"net"
|
2018-10-23 02:38:28 +00:00
|
|
|
"strconv"
|
2018-08-13 07:48:32 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2018-08-15 07:17:18 +00:00
|
|
|
osm "git.loafle.net/overflow/service_matcher-go"
|
2018-08-13 07:48:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestFTP(t *testing.T) {
|
2018-10-23 02:38:28 +00:00
|
|
|
ip := "192.168.100.21"
|
|
|
|
port := 2121
|
2018-08-13 07:48:32 +00:00
|
|
|
|
|
|
|
m := NewMatcher()
|
|
|
|
|
2018-10-23 02:38:28 +00:00
|
|
|
conn, err := net.Dial("tcp", net.JoinHostPort(ip, strconv.Itoa(port)))
|
2018-08-13 07:48:32 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
|
2018-10-23 02:38:28 +00:00
|
|
|
matchCtx := osm.NewMatchCtx(ip, port)
|
2018-09-03 13:36:57 +00:00
|
|
|
|
|
|
|
for i := 0; i < m.PacketCount(matchCtx); i++ {
|
|
|
|
_, err := conn.Write(m.Packet(matchCtx, i).Buffer)
|
2018-08-13 07:48:32 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
bytes := make([]byte, 1024)
|
|
|
|
n, _ := conn.Read(bytes)
|
2018-08-15 07:17:18 +00:00
|
|
|
p := osm.NewPacket(bytes, n)
|
2018-08-13 07:48:32 +00:00
|
|
|
|
2018-09-18 03:42:15 +00:00
|
|
|
if err := m.Match(matchCtx, i, p); err != nil {
|
2018-08-13 07:48:32 +00:00
|
|
|
t.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2018-09-03 13:36:57 +00:00
|
|
|
t.Log(m.Name(matchCtx))
|
|
|
|
t.Log(matchCtx)
|
2018-08-13 07:48:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestFTPS(t *testing.T) {
|
2018-10-23 02:38:28 +00:00
|
|
|
ip := "192.168.100.21"
|
|
|
|
port := 2121
|
2018-08-13 07:48:32 +00:00
|
|
|
|
|
|
|
m := NewMatcher()
|
|
|
|
|
|
|
|
dialer := &net.Dialer{
|
|
|
|
Timeout: 5 * time.Second,
|
|
|
|
}
|
|
|
|
|
|
|
|
conn, err := tls.DialWithDialer(
|
|
|
|
dialer,
|
|
|
|
"tcp",
|
2018-10-23 02:38:28 +00:00
|
|
|
net.JoinHostPort(ip, strconv.Itoa(port)),
|
2018-08-13 07:48:32 +00:00
|
|
|
&tls.Config{
|
|
|
|
InsecureSkipVerify: true,
|
2018-10-23 02:38:28 +00:00
|
|
|
ServerName: ip,
|
2018-08-13 07:48:32 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
|
2018-10-23 02:38:28 +00:00
|
|
|
matchCtx := osm.NewMatchCtx(ip, port)
|
2018-09-03 13:36:57 +00:00
|
|
|
|
|
|
|
for i := 0; i < m.PacketCount(matchCtx); i++ {
|
|
|
|
_, err := conn.Write(m.Packet(matchCtx, i).Buffer)
|
2018-08-13 07:48:32 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
bytes := make([]byte, 1024)
|
|
|
|
n, _ := conn.Read(bytes)
|
2018-08-15 07:17:18 +00:00
|
|
|
p := osm.NewPacket(bytes, n)
|
2018-08-13 07:48:32 +00:00
|
|
|
|
2018-09-18 03:42:15 +00:00
|
|
|
if err := m.Match(matchCtx, i, p); err != nil {
|
2018-08-13 07:48:32 +00:00
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
}
|
2018-09-03 13:36:57 +00:00
|
|
|
t.Log(m.Name(matchCtx))
|
|
|
|
t.Log(matchCtx)
|
2018-08-13 07:48:32 +00:00
|
|
|
}
|