lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Thu, Sep 20, 2012 at 12:11 PM, Daniel Silverstone <dsilvers@digital-scurf.org> wrote:
On Thu, Sep 20, 2012 at 12:01:02PM -0300, Eduardo Ochs wrote:
> Is there something similar but without any sandboxing, for people who
> want no security at all and just the simplest solution possible -
> "simplest" from the technical standpoint?

assert(loadstring(something))()  ?
 

 Like that, except that the "something" should come from a socket, and
Lua should enter "assert(loadstring(something))()-mode" whenever it's
idle - maybe even when it's waiting for (local) input in its REPL...