-
Notifications
You must be signed in to change notification settings - Fork 61
/
type-match.go
137 lines (122 loc) · 4.14 KB
/
type-match.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package gonmap
import (
"errors"
"fmt"
"regexp"
"strconv"
"strings"
)
type match struct {
//match <Service> <pattern> <patternopt> [<versioninfo>]
soft bool
service string
pattern string
patternRegexp *regexp.Regexp
versionInfo *FingerPrint
}
var matchLoadRegexps = []*regexp.Regexp{
regexp.MustCompile("^([a-zA-Z0-9-_./]+) m\\|([^|]+)\\|([is]{0,2})(?: (.*))?$"),
regexp.MustCompile("^([a-zA-Z0-9-_./]+) m=([^=]+)=([is]{0,2})(?: (.*))?$"),
regexp.MustCompile("^([a-zA-Z0-9-_./]+) m%([^%]+)%([is]{0,2})(?: (.*))?$"),
regexp.MustCompile("^([a-zA-Z0-9-_./]+) m@([^@]+)@([is]{0,2})(?: (.*))?$"),
}
var matchVersionInfoRegexps = map[string]*regexp.Regexp{
"PRODUCTNAME": regexp.MustCompile("p/([^/]+)/"),
"VERSION": regexp.MustCompile("v/([^/]+)/"),
"INFO": regexp.MustCompile("i/([^/]+)/"),
"HOSTNAME": regexp.MustCompile("h/([^/]+)/"),
"OS": regexp.MustCompile("o/([^/]+)/"),
"DEVICE": regexp.MustCompile("d/([^/]+)/"),
}
var matchVersionInfoHelperRegxP = regexp.MustCompile(`\$P\((\d)\)`)
var matchVersionInfoHelperRegx = regexp.MustCompile(`\$(\d)`)
func parseMatch(s string, soft bool) *match {
var m = &match{}
var regx *regexp.Regexp
for _, r := range matchLoadRegexps {
if r.MatchString(s) {
regx = r
}
}
if regx == nil {
panic(errors.New("match 语句参数不正确"))
}
args := regx.FindStringSubmatch(s)
m.soft = soft
m.service = args[1]
m.service = FixProtocol(m.service)
m.pattern = args[2]
m.patternRegexp = m.getPatternRegexp(m.pattern, args[3])
m.versionInfo = &FingerPrint{
ProbeName: "",
MatchRegexString: "",
Service: m.service,
ProductName: m.getVersionInfo(s, "PRODUCTNAME"),
Version: m.getVersionInfo(s, "VERSION"),
Info: m.getVersionInfo(s, "INFO"),
Hostname: m.getVersionInfo(s, "HOSTNAME"),
OperatingSystem: m.getVersionInfo(s, "OS"),
DeviceType: m.getVersionInfo(s, "DEVICE"),
}
return m
}
func (m *match) getPatternRegexp(pattern string, opt string) *regexp.Regexp {
pattern = strings.ReplaceAll(pattern, `\0`, `\x00`)
if opt != "" {
if strings.Contains(opt, "i") == false {
opt += "i"
}
if pattern[:1] == "^" {
pattern = fmt.Sprintf("^(?%s:%s", opt, pattern[1:])
} else {
pattern = fmt.Sprintf("(?%s:%s", opt, pattern)
}
if pattern[len(pattern)-1:] == "$" {
pattern = fmt.Sprintf("%s)$", pattern[:len(pattern)-1])
} else {
pattern = fmt.Sprintf("%s)", pattern)
}
}
//pattern = regexp.MustCompile(`\\x[89a-f][0-9a-f]`).ReplaceAllString(pattern,".")
return regexp.MustCompile(pattern)
}
func (m *match) getVersionInfo(s string, regID string) string {
if matchVersionInfoRegexps[regID].MatchString(s) {
return matchVersionInfoRegexps[regID].FindStringSubmatch(s)[1]
} else {
return ""
}
}
func (m *match) makeVersionInfo(s string, f *FingerPrint) {
f.Info = m.makeVersionInfoSubHelper(s, m.versionInfo.Info)
f.DeviceType = m.makeVersionInfoSubHelper(s, m.versionInfo.DeviceType)
f.Hostname = m.makeVersionInfoSubHelper(s, m.versionInfo.Hostname)
f.OperatingSystem = m.makeVersionInfoSubHelper(s, m.versionInfo.OperatingSystem)
f.ProductName = m.makeVersionInfoSubHelper(s, m.versionInfo.ProductName)
f.Version = m.makeVersionInfoSubHelper(s, m.versionInfo.Version)
f.Service = m.makeVersionInfoSubHelper(s, m.versionInfo.Service)
}
func (m *match) makeVersionInfoSubHelper(s string, pattern string) string {
if len(m.patternRegexp.FindStringSubmatch(s)) == 1 {
return pattern
}
if pattern == "" {
return pattern
}
sArr := m.patternRegexp.FindStringSubmatch(s)
if matchVersionInfoHelperRegxP.MatchString(pattern) {
pattern = matchVersionInfoHelperRegxP.ReplaceAllStringFunc(pattern, func(repl string) string {
a := matchVersionInfoHelperRegxP.FindStringSubmatch(repl)[1]
return "$" + a
})
}
if matchVersionInfoHelperRegx.MatchString(pattern) {
pattern = matchVersionInfoHelperRegx.ReplaceAllStringFunc(pattern, func(repl string) string {
i, _ := strconv.Atoi(matchVersionInfoHelperRegx.FindStringSubmatch(repl)[1])
return sArr[i]
})
}
pattern = strings.ReplaceAll(pattern, "\n", "")
pattern = strings.ReplaceAll(pattern, "\r", "")
return pattern
}