mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-01 20:33:14 +08:00
The watch words controller creation function, create_or_update_word(), doesn’t validate the size of the replacement parameter, unlike the word parameter, when creating a replace watched word. So anyone with moderator privileges can create watched words with almost unlimited characters.
6 lines
160 B
Ruby
6 lines
160 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:watched_word_group) do
|
|
action WatchedWord.actions[:block]
|
|
watched_words { [Fabricate.build(:watched_word)] }
|
|
end
|