I am using Lua as a script language inside my C application.
It suits me well, but I can\'t understand how can I limit Lua not to call system functions, include other mo
Sandbox is the term you're looking for. In a nutshell, only export to Lua the functions you want the users to call. It's that simple, really.