🐛 Bug Fix
- Security / Helpers (prototype pollution):
Jodit.modules.Helpers.set(chain, value, obj)walked the dot-separatedchainand created/followed each segment without filtering prototype-mutating keys, so a chain such as__proto__.polluted(e.g.set('__proto__.polluted', 'yes', {})) could reach and mutateObject.prototype(CWE-1321).setnow bails out when any segment is__proto__,constructor, orprototype, reusing the same guard added forJodit.configure()in 4.12.18. Responsibly reported by Junming Wu.