You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following will freeze forever:
function main()
while 2 < 5 do
end
end
Using too much RAM can crash after using up 2 GB of RAM:
array1 = {}
function main()
local i = 1
while i < 100000000 do
array1[i] = {{{{{{{{{{}}}}}}}}}}
i = i + 1
end
end
A single {} might not crash Windows 32 bit, but will memory leak after LUA
memory exception.
Allowing users to upload these levelgen can kill the server. Limiting LUA
memory usage and execution time may solve this.
Original issue reported on code.google.com by [email protected] on 12 Jan 2015 at 9:29
The text was updated successfully, but these errors were encountered:
I'm not sure we are permitting uploading scripts - but we do allow downloading
from pleiades which is another attack vector as well. I suspect sam686 or kaen
did fix uploading levelgen with the level as an admin.
Original comment by buckyballreaction on 27 Apr 2015 at 12:49
Original issue reported on code.google.com by
[email protected]
on 12 Jan 2015 at 9:29The text was updated successfully, but these errors were encountered: