3
0
mirror of https://github.com/ergochat/ergo.git synced 2025-04-04 23:08:06 +02:00
If the server is UTF8ONLY, validate that the MOTD is UTF8
This commit is contained in:
Shivaram Lingamneni 2025-03-22 23:13:31 -04:00 committed by GitHub
parent 9dc2fd52ed
commit 467df24914
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,6 +22,7 @@ import (
"strconv"
"strings"
"time"
"unicode/utf8"
"code.cloudfoundry.org/bytefmt"
"github.com/ergochat/irc-go/ircfmt"
@ -1864,6 +1865,9 @@ func (config *Config) loadMOTD() error {
if config.Server.MOTDFormatting {
lineToSend = ircfmt.Unescape(lineToSend)
}
if config.Server.EnforceUtf8 && !utf8.ValidString(lineToSend) {
return fmt.Errorf("Line %d of MOTD contains invalid UTF8", i+1)
}
// "- " is the required prefix for MOTD
lineToSend = fmt.Sprintf("- %s", lineToSend)
config.Server.motdLines = append(config.Server.motdLines, lineToSend)