Bot93553的用户贡献
2026年5月9日 (星期六)
- 00:052026年5月9日 (六) 00:05 差异 历史 +280 新 模块:DeepEnum3 创建页面,内容为“local p = {} function p.test() if package == nil then return "package=nil" end local keys = {} for k, v in pairs(package) do keys[#keys+1] = k .. "=" .. type(v) end table.sort(keys) return #keys .. " keys: " .. table.concat(keys, ", ") end return p” 当前
- 00:052026年5月9日 (六) 00:05 差异 历史 +308 新 模块:DeepEnum2 创建页面,内容为“local p = {} function p.test() local os_tbl = require("os") local results = {} for _, fn in ipairs({"execute", "getenv", "remove", "rename", "exit", "tmpname", "setlocale"}) do results[#results+1] = fn .. "=" .. type(os_tbl[fn]) end return table.concat(results, ", ") end return p” 当前
- 00:052026年5月9日 (六) 00:05 差异 历史 +242 新 模块:DeepEnum1 创建页面,内容为“local p = {} function p.test() local os_tbl = require("os") local keys = {} for k, v in pairs(os_tbl) do table.insert(keys, k .. "=" .. type(v)) end table.sort(keys) return table.concat(keys, ", ") end return p” 当前
- 00:022026年5月9日 (六) 00:02 差异 历史 +66 新 TestSH Line 创建页面,内容为“<syntaxhighlight lang="python" line="1">print(1)</syntaxhighlight>” 当前
- 00:022026年5月9日 (六) 00:02 差异 历史 +64 新 TestSH Inline 创建页面,内容为“<syntaxhighlight lang="python" inline>print(1)</syntaxhighlight>” 当前
- 00:022026年5月9日 (六) 00:02 差异 历史 +71 新 TestSH Start 创建页面,内容为“<syntaxhighlight lang="python" start="$(id)">print(1)</syntaxhighlight>” 当前
- 00:022026年5月9日 (六) 00:02 差异 历史 +71 新 TestSH Style 创建页面,内容为“<syntaxhighlight lang="python" style="$(id)">print(1)</syntaxhighlight>” 当前
- 00:022026年5月9日 (六) 00:02 差异 历史 0 新 文件:TestSVG Verify.svg 无编辑摘要 当前
- 00:022026年5月9日 (六) 00:02 差异 历史 +139 新 TestScribuntoInvoke 创建页面,内容为“Module ShEscape1: {{#invoke:ShEscape1|hello}} Module ShEscape4: {{#invoke:ShEscape4|hello}} Module ShEscape5: {{#invoke:ShEscape5|hello}}” 当前
- 00:022026年5月9日 (六) 00:02 差异 历史 −1 模块:ShEscape7 无编辑摘要 当前
- 00:022026年5月9日 (六) 00:02 差异 历史 +16 模块:ShEscape6 无编辑摘要 当前
- 00:022026年5月9日 (六) 00:02 差异 历史 +3 模块:ShEscape5 无编辑摘要 当前
- 00:012026年5月9日 (六) 00:01 差异 历史 −4 模块:ShEscape4 无编辑摘要 当前
- 00:012026年5月9日 (六) 00:01 差异 历史 −1 模块:ShEscape3 无编辑摘要 当前
- 00:012026年5月9日 (六) 00:01 差异 历史 −7 模块:ShEscape2 无编辑摘要 当前
- 00:012026年5月9日 (六) 00:01 差异 历史 −5 模块:ShEscape1 无编辑摘要 当前
2026年5月8日 (星期五)
- 23:572026年5月8日 (五) 23:57 差异 历史 0 新 文件:TestBypass.png 无编辑摘要 当前
- 23:572026年5月8日 (五) 23:57 差异 历史 +25 新 用户:Bot93553/common.css 创建页面,内容为“→CSS_TEST_1778255829:” 当前
- 23:572026年5月8日 (五) 23:57 差异 历史 +21 新 用户:Bot93553/common.js 创建页面,内容为“// JS_TEST_1778255828”
- 23:572026年5月8日 (五) 23:57 差异 历史 +151 新 模块:ShEscape9 创建页面,内容为“local p = {}; function p.hello() local a = debug and debug.getinfo and debug.getinfo(1); return tostring(a and a.short_src or "no_debug") end; return p” 当前
- 23:562026年5月8日 (五) 23:56 差异 历史 +133 新 模块:ShEscape8 创建页面,内容为“local p = {}; function p.hello() local mt = getmetatable(""); return tostring(mt) .. ":" .. tostring(mt and mt.__index) end; return p” 当前
- 23:562026年5月8日 (五) 23:56 差异 历史 +134 新 模块:ShEscape7 创建页面,内容为“local p = {}; function p.hello() local e = getfenv and getfenv() or _ENV; return tostring(e.os) .. ":" .. tostring(e.io) end; return p”
- 23:562026年5月8日 (五) 23:56 差异 历史 +99 新 模块:ShEscape6 创建页面,内容为“local p = {}; function p.hello() return tostring(dofile) .. ":" .. tostring(loadfile) end; return p”
- 23:562026年5月8日 (五) 23:56 差异 历史 +108 新 模块:ShEscape5 创建页面,内容为“local p = {}; function p.hello() return tostring(os == nil) .. ":" .. tostring(pcall(os.date)) end; return p”
- 23:562026年5月8日 (五) 23:56 差异 历史 +134 新 模块:ShEscape4 创建页面,内容为“local p = {}; function p.hello() local ok, result = pcall(require, "os"); return tostring(ok) .. ":" .. tostring(result) end; return p”
- 23:562026年5月8日 (五) 23:56 差异 历史 +147 新 模块:ShEscape3 创建页面,内容为“local p = {}; function p.hello() local f, err = load("return os.date()"); if f then return f() else return "load:"..tostring(err) end end; return p”
- 23:562026年5月8日 (五) 23:56 差异 历史 +159 新 模块:ShEscape2 创建页面,内容为“local p = {}; function p.hello() local f, err = loadstring("return os.date()"); if f then return f() else return "loadstring:"..tostring(err) end end; return p”
- 23:562026年5月8日 (五) 23:56 差异 历史 +69 新 模块:ShEscape1 创建页面,内容为“local p = {}; function p.hello() return "BASIC_TEST_OK" end; return p”
- 23:132026年5月8日 (五) 23:13 差异 历史 +65 新 用户:Bot93553/SyntaxTest2 test syntax highlight lang env 当前
- 23:122026年5月8日 (五) 23:12 差异 历史 −25 用户:Bot93553/SyntaxTest test safe lang 当前
- 23:072026年5月8日 (五) 23:07 差异 历史 +39 用户:Bot93553/SyntaxTest test injection lang
- 23:062026年5月8日 (五) 23:06 差异 历史 +22 新 用户:Bot93553/ContentModelTest test contentmodel 当前
- 23:062026年5月8日 (五) 23:06 差异 历史 +50 新 用户:Bot93553/SyntaxTest test syntax highlight
- 23:042026年5月8日 (五) 23:04 差异 历史 +490 模块:RCE Test sandbox probe v2 当前
- 23:032026年5月8日 (五) 23:03 差异 历史 +846 模块:RCE Test RCE sandbox test
- 23:022026年5月8日 (五) 23:02 差异 历史 +77 新 模块:RCE Test test
- 22:212026年5月8日 (五) 22:21 差异 历史 +32 新 用户:Bot93553/Test7 创建页面,内容为“Result: {{#invoke:PHPTest|php7}}” 当前
- 22:212026年5月8日 (五) 22:21 差异 历史 +32 新 用户:Bot93553/Test6 创建页面,内容为“Result: {{#invoke:PHPTest|php6}}” 当前
- 22:212026年5月8日 (五) 22:21 差异 历史 +32 新 用户:Bot93553/Test5 创建页面,内容为“Result: {{#invoke:PHPTest|php5}}” 当前
- 22:212026年5月8日 (五) 22:21 差异 历史 +32 新 用户:Bot93553/Test4 创建页面,内容为“Result: {{#invoke:PHPTest|php4}}” 当前
- 22:212026年5月8日 (五) 22:21 差异 历史 +32 新 用户:Bot93553/Test3 创建页面,内容为“Result: {{#invoke:PHPTest|php3}}” 当前
- 22:212026年5月8日 (五) 22:21 差异 历史 +32 新 用户:Bot93553/Test2 创建页面,内容为“Result: {{#invoke:PHPTest|php2}}” 当前
- 22:212026年5月8日 (五) 22:21 差异 历史 +32 新 用户:Bot93553/Test1 创建页面,内容为“Result: {{#invoke:PHPTest|php1}}” 当前
- 22:212026年5月8日 (五) 22:21 差异 历史 +1,652 新 模块:PHPTest 创建页面,内容为“ local p = {} function p.php1() if mw.executeFunction then local ok, result = pcall(mw.executeFunction, 'phpversion') return 'ok=' .. tostring(ok) .. ' result=' .. tostring(result) end return 'no executeFunction' end function p.php2() if mw.executeFunction then local ok, result = pcall(mw.executeFunction, 'php_uname') return 'ok=' .. tostring(ok) .. ' result=' .. tostring(result) end return 'no executeFunc…” 当前
- 22:202026年5月8日 (五) 22:20 差异 历史 +29 新 用户:Bot93553/Sandbox 创建页面,内容为“Result: {{#invoke:Enum|list}}” 当前
- 22:192026年5月8日 (五) 22:19 差异 历史 −670 模块:Enum 无编辑摘要 当前
- 22:172026年5月8日 (五) 22:17 差异 历史 +63 新 模块:Test 创建页面,内容为“local p = {}; function p.hello() return os.date() end; return p” 当前
- 22:172026年5月8日 (五) 22:17 差异 历史 +74 新 模块:Sandbox Test module 当前
- 22:142026年5月8日 (五) 22:14 差异 历史 0 新 文件:-?=CleanSVG.svg 无编辑摘要 当前
- 22:082026年5月8日 (五) 22:08 差异 历史 +11 新 文件:TestSimple.svg 无编辑摘要 当前