diff options
author | Nick <nick@kousu.ca> | 2019-06-13 19:10:43 -0400 |
---|---|---|
committer | Wim <wim@42.be> | 2019-06-14 01:10:43 +0200 |
commit | 7a3bb0e55cd7c11807d23024a66faec40d39e20a (patch) | |
tree | f033f77887061d4b0cc1b6470daddc9628431808 /bridge/xmpp/xmpp.go | |
parent | 6e8f535e8b60697606dbec78340a955642c7f0a4 (diff) | |
download | matterbridge-msglm-7a3bb0e55cd7c11807d23024a66faec40d39e20a.tar.gz matterbridge-msglm-7a3bb0e55cd7c11807d23024a66faec40d39e20a.tar.bz2 matterbridge-msglm-7a3bb0e55cd7c11807d23024a66faec40d39e20a.zip |
Verify TLS against JID domain, not the host. (xmpp) (#834)
Partially fixes #820.
A full fix requires patching https://github.com/matterbridge/go-xmpp to use DNS SRV records.
Diffstat (limited to 'bridge/xmpp/xmpp.go')
-rw-r--r-- | bridge/xmpp/xmpp.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/xmpp/xmpp.go b/bridge/xmpp/xmpp.go index 8257b7de..2376d60c 100644 --- a/bridge/xmpp/xmpp.go +++ b/bridge/xmpp/xmpp.go @@ -100,7 +100,7 @@ func (b *Bxmpp) Send(msg config.Message) (string, error) { func (b *Bxmpp) createXMPP() error { tc := &tls.Config{ - ServerName: strings.Split(b.GetString("Server"), ":")[0], + ServerName: strings.Split(b.GetString("Jid"), "@")[1], InsecureSkipVerify: b.GetBool("SkipTLSVerify"), // nolint: gosec } options := xmpp.Options{ |