fix(module): sandbox escape with getmetatable

This commit is contained in:
Erica Marigold 2024-05-16 11:17:12 +05:30
parent d5d9fc7d27
commit eede130035
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -83,6 +83,7 @@ end
local function constructProtectedMt<T>(library: T)
return {
__index = library,
__metatable = "Locked",
__tostring = function()
return stdio.format(library)
end,