How can I limit lua possibilities (calling OS func

2020-04-14 08:50发布

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 modules, etc.

I want Lua to be able to call only functions that are allowed by me, because user can do all kind of bad things with full Lua + Lua modules power.

标签: lua
3条回答
老娘就宠你
3楼-- · 2020-04-14 09:16

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.

查看更多
做自己的国王
4楼-- · 2020-04-14 09:17

You can accomplish this by not loading the os or package modules. Rather than using luaL_openlibs, see this post.

查看更多
登录 后发表回答