This commit is contained in:
crusader 2017-12-14 16:41:27 +09:00
parent 61f8cae952
commit 1dbb36ba57

View File

@ -11,11 +11,11 @@ import (
"git.loafle.net/commons_go/network_service_matcher/imap" "git.loafle.net/commons_go/network_service_matcher/imap"
"git.loafle.net/commons_go/network_service_matcher/ldap" "git.loafle.net/commons_go/network_service_matcher/ldap"
"git.loafle.net/commons_go/network_service_matcher/mongodb" "git.loafle.net/commons_go/network_service_matcher/mongodb"
"git.loafle.net/commons_go/network_service_matcher/mssql"
"git.loafle.net/commons_go/network_service_matcher/mysql" "git.loafle.net/commons_go/network_service_matcher/mysql"
"git.loafle.net/commons_go/network_service_matcher/netbios" "git.loafle.net/commons_go/network_service_matcher/netbios"
"git.loafle.net/commons_go/network_service_matcher/oracle" "git.loafle.net/commons_go/network_service_matcher/oracle"
"git.loafle.net/commons_go/network_service_matcher/pop" "git.loafle.net/commons_go/network_service_matcher/pop"
"git.loafle.net/commons_go/network_service_matcher/postgresql"
"git.loafle.net/commons_go/network_service_matcher/redis" "git.loafle.net/commons_go/network_service_matcher/redis"
redis_protected "git.loafle.net/commons_go/network_service_matcher/redis/protected" redis_protected "git.loafle.net/commons_go/network_service_matcher/redis/protected"
"git.loafle.net/commons_go/network_service_matcher/rmi" "git.loafle.net/commons_go/network_service_matcher/rmi"
@ -23,6 +23,7 @@ import (
"git.loafle.net/commons_go/network_service_matcher/smtp" "git.loafle.net/commons_go/network_service_matcher/smtp"
snmp_v2 "git.loafle.net/commons_go/network_service_matcher/snmp/v2" snmp_v2 "git.loafle.net/commons_go/network_service_matcher/snmp/v2"
snmp_v3 "git.loafle.net/commons_go/network_service_matcher/snmp/v3" snmp_v3 "git.loafle.net/commons_go/network_service_matcher/snmp/v3"
"git.loafle.net/commons_go/network_service_matcher/sqlserver"
"git.loafle.net/commons_go/network_service_matcher/ssh" "git.loafle.net/commons_go/network_service_matcher/ssh"
"git.loafle.net/commons_go/network_service_matcher/telnet" "git.loafle.net/commons_go/network_service_matcher/telnet"
"git.loafle.net/commons_go/network_service_matcher/wmi" "git.loafle.net/commons_go/network_service_matcher/wmi"
@ -45,7 +46,7 @@ func init() {
registerTCPMatcher(activedirectory.NewMatcher()) registerTCPMatcher(activedirectory.NewMatcher())
registerTCPMatcher(mongodb.NewMatcher()) registerTCPMatcher(mongodb.NewMatcher())
registerTCPMatcher(mysql.NewMatcher()) registerTCPMatcher(mysql.NewMatcher())
registerTCPMatcher(mssql.NewMatcher()) registerTCPMatcher(sqlserver.NewMatcher())
registerTCPMatcher(redis.NewMatcher()) registerTCPMatcher(redis.NewMatcher())
registerTCPMatcher(redis_protected.NewMatcher()) registerTCPMatcher(redis_protected.NewMatcher())
registerTCPMatcher(netbios.NewMatcher()) registerTCPMatcher(netbios.NewMatcher())
@ -53,6 +54,7 @@ func init() {
registerTCPMatcher(cassandra.NewMatcher()) registerTCPMatcher(cassandra.NewMatcher())
registerTCPMatcher(imap.NewMatcher()) registerTCPMatcher(imap.NewMatcher())
registerTCPMatcher(oracle.NewMatcher()) registerTCPMatcher(oracle.NewMatcher())
registerTCPMatcher(postgresql.NewMatcher())
registerTCPMatcher(pop.NewMatcher()) registerTCPMatcher(pop.NewMatcher())
registerTCPMatcher(wmi.NewMatcher()) registerTCPMatcher(wmi.NewMatcher())
registerTCPMatcher(ftp.NewMatcher()) registerTCPMatcher(ftp.NewMatcher())