Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace fpFKE\m7kId\FPfkE; use fPfKe\fPfKe\FPfKE; use fpFKe\m7KiD\qBKwn; final cl..

Decoded Output download

<?php
 namespace fpFKE\m7kId\FPfkE; use fPfKe\fPfKe\FPfKE; use fpFKe\m7KiD\qBKwn; final class yPUi1 extends QbKWn { public function SOUOx($wuOOz, $zpNa2, $Xycdz = null) { goto DKh7I; AJIW3: iGx_8::dPOwh($zpNa2, $SRUYi); goto OM5wj; F2Xix: tjxXa: goto DQ2YW; Rwdbg: $this->lju48->LQkUE = $Xycdz; goto F2Xix; DKh7I: if (!isset($Xycdz)) { goto tjxXa; } goto Rwdbg; DQ2YW: $SRUYi = $this->lju48->jf2Ih($wuOOz); goto AJIW3; OM5wj: } public function nPE2s() { return ["Plain text, no encoded entities, surrounded by whitespace" => ["input" => "  Lorem ipsum dolor sit amet, consectetur adipiscing elit.  ", "expected" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit."], "Plain text with encoded entities" => ["input" => "I&ntilde;t&euml;rn&acirc;ti&ocirc;n&agrave;liz&aelig;ti&oslash;n", "expected" => "I\xc3\261t\303\253rn\303\242ti\xc3\264n\303\xa0liz\303\xa6ti\xc3\xb8n", "charset" => Fpfke::u8CaX], "Simple HTML, including HTML comment and encoded quotes" => ["input" => "<p>Test paragraph.</p>" . "<!-- Comment -->" . " <a href="#fragment">Other text with &#39; and &quot;</a>", "expected" => "Test paragraph. Other text with ' and ""], "Simple HTML, including self-closing tags" => ["input" => "<p>Test<br/>paragraph<br /><img src="file.png" alt="alt text" />.</p>", "expected" => "Testparagraph."], "Simple HTML, paragraph fusing" => ["input" => "<div>
<P style="color:blue;">color is blue</P><p>size is <span style="font-size:200%;">huge</span></p>\xa<p>material is wood</p>
</div>", "expected" => "color is bluesize is huge\xamaterial is wood"], "Full HTML message with head, title, body etc" => ["input" => "<html>
    <head>
        <title>HTML email test</title>\xa    </head>\xa    <body>\xa        <h1>PHPMailer does HTML!</h1>\xa        <p>This is a <strong>test message</strong> written in HTML.<br>\xa        Go to <a href="https://github.com/PHPMailer/PHPMailer">\xa        https://github.com/PHPMailer/PHPMailer</a>\xa        for new versions of PHPMailer.</p>
        <p>Thank you!</p>
    </body>\xa</html>", "expected" => "PHPMailer does HTML!\xa        This is a test message written in HTML.\xa        Go to \xa        https://github.com/PHPMailer/PHPMailer\xa        for new versions of PHPMailer.
        Thank you!"], "Plain text, with PHP short open echo tags" => ["input" => "<?= '<?= 1 ?>' ?>2", "expected" => "2"], "HTML with script tag" => ["input" => "lorem<script>alert("xss")</script>ipsum", "expected" => "loremipsum"], "HTML with style tag with content. uppercase HTML tags" => ["input" => "lorem<STYLE>* { display: 'none' }</STYLE>ipsum", "expected" => "loremipsum"], "HTML with script tag nested in style tag" => ["input" => "lorem<style>* { display: 'none' }<script>alert('xss')</script></style>ipsum", "expected" => "loremipsum"], "Plain text which will turn into HTML script tag on decoding" => ["input" => "lorem&lt;script&gt;alert("xss")&lt;/script&gt;ipsum", "expected" => "lorem<script>alert("xss")</script>ipsum"], "HTML with a "less than" sign in the text" => ["input" => "<p><span style="color: #ff0000; background-color: #000000;">Complex</span> " . "<span style="font-family: impact,chicago;">text <50% </span> " . "<a href="https://example.com/"><em>with</em></a> " . "<span style="font-size: 36pt;"><strong>tags</strong></span></p>", "expected" => "Complex text"], "HTML with an encoded "less than" sign in the text" => ["input" => "<p><span style="color: #ff0000; background-color: #000000;">Complex</span> " . "<span style="font-family: impact,chicago;">text &lt;50% </span> " . "<a href="https://example.com/"><em>with</em></a> " . "<span style="font-size: 36pt;"><strong>tags</strong></span></p>", "expected" => "Complex text <50%  with tags"]]; } public function OHaFR($wuOOz, $nQq2O, $zpNa2) { $SRUYi = $this->lju48->Jf2iH($wuOOz, $nQq2O); igX_8::dpOwh($zpNa2, $SRUYi); } public function QF803() { return ["No HTML, simple (unsafe) function name callback" => ["input" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit.", "callback" => "strip_tags", "expected" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit."], "Has HTML, simple (unsafe) closure callback" => ["input" => "Lorem <div>ipsum</div> dolor sit amet<br/>," . " consectetur <script>adipiscing()</script> elit.", "callback" => static function ($m5UWU) { return strip_tags($m5UWU); }, "expected" => "Lorem ipsum dolor sit amet, consectetur adipiscing() elit."], "Has HTML, simple (unsafe) static class method callback" => ["input" => "Lorem <div>ipsum</div> dolor sit amet<br/>," . " consectetur <script>adipiscing()</script> elit.", "callback" => [__CLASS__, "methodBasedCallback"], "expected" => "Lorem ipsum dolor sit amet, consectetur adipiscing() elit."], "Has HTML, simple (unsafe) object method callback" => ["input" => "Lorem <div>ipsum</div> dolor sit amet<br/>," . " consectetur <script>adipiscing()</script> elit.", "callback" => [$this, "methodBasedCallback"], "expected" => "Lorem ipsum dolor sit amet, consectetur adipiscing() elit."], "Has HTML, explicitly use internal converter (callback = true)" => ["input" => "Lorem <div>ipsum</div> dolor sit amet<br/>," . " consectetur <script>adipiscing()</script> elit.", "callback" => true, "expected" => "Lorem ipsum dolor sit amet, consectetur  elit."], "Has HTML, use internal converter due to passing invalid callback (function)" => ["input" => "Lorem <div>ipsum</div> dolor sit amet<br/>," . " consectetur <script>adipiscing()</script> elit.", "callback" => "functionwhichdoesnotexist", "expected" => "Lorem ipsum dolor sit amet, consectetur  elit."], "Has HTML, use internal converter due to passing invalid callback (static method)" => ["input" => "Lorem <div>ipsum</div> dolor sit amet<br/>," . " consectetur <script>adipiscing()</script> elit.", "callback" => ["claswhichdoesnotexist", "foo"], "expected" => "Lorem ipsum dolor sit amet, consectetur  elit."]]; } public static function yuqNt($m5UWU) { return strip_tags($m5UWU); } } ?>

Did this file decode correctly?

Original Code

<?php
 namespace fpFKE\m7kId\FPfkE; use fPfKe\fPfKe\FPfKE; use fpFKe\m7KiD\qBKwn; final class yPUi1 extends QbKWn { public function SOUOx($wuOOz, $zpNa2, $Xycdz = null) { goto DKh7I; AJIW3: iGx_8::dPOwh($zpNa2, $SRUYi); goto OM5wj; F2Xix: tjxXa: goto DQ2YW; Rwdbg: $this->lju48->LQkUE = $Xycdz; goto F2Xix; DKh7I: if (!isset($Xycdz)) { goto tjxXa; } goto Rwdbg; DQ2YW: $SRUYi = $this->lju48->jf2Ih($wuOOz); goto AJIW3; OM5wj: } public function nPE2s() { return ["\120\x6c\x61\x69\156\40\164\145\170\x74\54\40\x6e\x6f\x20\145\x6e\143\157\144\x65\144\x20\x65\156\164\x69\x74\151\x65\163\x2c\x20\163\x75\x72\162\157\x75\156\144\x65\144\x20\x62\x79\x20\167\150\x69\164\x65\x73\160\x61\x63\145" => ["\x69\x6e\x70\x75\164" => "\x20\40\x4c\157\x72\x65\x6d\40\x69\160\x73\165\155\40\144\x6f\154\x6f\x72\x20\x73\x69\164\40\141\x6d\x65\164\54\40\143\157\156\x73\x65\x63\164\x65\x74\x75\162\40\x61\144\x69\x70\x69\163\143\151\x6e\147\x20\145\154\x69\x74\x2e\x20\x20", "\145\170\160\145\x63\x74\145\x64" => "\114\x6f\x72\x65\x6d\40\x69\160\x73\x75\x6d\40\x64\157\154\x6f\162\x20\x73\151\x74\40\141\x6d\145\164\54\x20\143\157\x6e\163\x65\x63\164\x65\164\165\x72\40\x61\x64\x69\x70\151\163\143\x69\x6e\x67\40\x65\x6c\x69\x74\56"], "\120\x6c\x61\151\156\x20\x74\x65\x78\x74\40\167\x69\164\x68\x20\x65\x6e\x63\x6f\x64\x65\x64\40\145\156\164\x69\164\151\x65\x73" => ["\x69\x6e\x70\x75\164" => "\x49\x26\156\164\151\x6c\144\145\x3b\x74\46\x65\165\x6d\154\73\162\x6e\46\x61\x63\x69\162\x63\x3b\164\151\x26\x6f\143\151\x72\x63\x3b\156\46\x61\x67\162\x61\x76\x65\x3b\154\151\x7a\46\x61\145\x6c\151\147\x3b\x74\151\46\x6f\163\154\x61\x73\150\73\156", "\145\x78\x70\x65\x63\x74\x65\x64" => "\x49\xc3\261\164\303\253\x72\x6e\303\242\x74\x69\xc3\264\156\303\xa0\154\151\172\303\xa6\x74\x69\xc3\xb8\x6e", "\x63\150\141\162\x73\x65\164" => Fpfke::u8CaX], "\x53\151\155\x70\154\145\40\110\124\x4d\114\x2c\40\151\x6e\x63\x6c\x75\x64\151\x6e\147\40\110\x54\115\114\x20\x63\x6f\155\155\x65\x6e\164\40\x61\156\144\x20\x65\x6e\x63\157\x64\x65\144\x20\161\165\x6f\x74\x65\163" => ["\151\156\x70\165\164" => "\x3c\160\x3e\124\x65\x73\164\x20\160\x61\x72\141\x67\x72\x61\x70\x68\x2e\74\57\x70\76" . "\74\41\x2d\x2d\x20\103\x6f\155\155\x65\x6e\164\40\x2d\x2d\76" . "\40\74\141\x20\150\162\x65\146\x3d\x22\x23\146\x72\141\147\155\145\156\x74\x22\76\117\164\x68\x65\x72\x20\164\x65\x78\x74\40\x77\x69\164\150\40\46\43\x33\71\73\x20\x61\x6e\x64\x20\46\x71\165\x6f\164\73\x3c\x2f\x61\76", "\145\170\160\145\x63\x74\x65\144" => "\x54\x65\x73\164\x20\x70\x61\x72\141\x67\x72\141\160\150\56\x20\x4f\164\150\x65\x72\x20\164\x65\170\x74\x20\167\x69\x74\150\40\x27\x20\141\156\144\x20\x22"], "\123\151\x6d\160\154\x65\x20\x48\x54\115\114\x2c\x20\151\x6e\x63\154\x75\x64\x69\156\x67\40\163\x65\154\146\x2d\x63\154\x6f\163\151\156\x67\40\x74\x61\147\x73" => ["\151\156\160\x75\164" => "\x3c\x70\x3e\124\x65\163\x74\74\142\162\57\x3e\160\141\162\141\x67\162\x61\160\150\x3c\x62\162\40\57\x3e\x3c\x69\155\x67\40\x73\x72\143\75\x22\x66\x69\x6c\145\56\x70\x6e\147\42\40\x61\x6c\x74\x3d\42\x61\154\x74\40\164\x65\x78\x74\x22\x20\x2f\x3e\56\74\57\x70\x3e", "\145\170\160\145\x63\x74\x65\x64" => "\x54\145\x73\164\160\141\x72\x61\x67\162\141\x70\x68\56"], "\123\x69\x6d\160\154\x65\40\x48\124\115\x4c\54\40\160\141\162\x61\x67\x72\x61\x70\150\x20\x66\165\x73\x69\x6e\x67" => ["\x69\156\160\x75\x74" => "\x3c\144\151\166\x3e\12\x3c\120\x20\x73\164\171\x6c\x65\75\42\143\157\x6c\x6f\162\x3a\x62\154\165\x65\73\x22\76\143\157\x6c\x6f\162\40\151\163\x20\142\154\x75\x65\x3c\x2f\120\76\x3c\x70\76\x73\151\172\x65\x20\151\x73\x20\x3c\x73\x70\x61\x6e\40\x73\x74\171\x6c\x65\75\42\146\157\x6e\164\55\x73\151\x7a\x65\x3a\62\x30\x30\x25\73\42\x3e\150\x75\147\x65\74\x2f\163\160\141\x6e\x3e\74\57\x70\x3e\xa\x3c\160\x3e\x6d\x61\164\145\162\x69\x61\154\x20\151\163\x20\167\x6f\x6f\x64\x3c\57\x70\x3e\12\x3c\57\x64\151\x76\x3e", "\x65\170\160\145\x63\164\145\x64" => "\x63\x6f\x6c\x6f\162\40\151\x73\40\142\154\x75\145\x73\x69\172\x65\40\151\163\40\x68\165\x67\145\xa\x6d\x61\164\145\162\151\141\154\40\151\163\x20\167\x6f\157\144"], "\x46\165\154\x6c\x20\x48\124\x4d\x4c\x20\155\x65\x73\163\x61\x67\145\40\167\x69\164\x68\x20\150\145\x61\x64\x2c\x20\164\x69\x74\x6c\145\x2c\x20\x62\157\144\x79\x20\145\164\143" => ["\x69\156\160\165\x74" => "\x3c\x68\x74\x6d\154\76\12\x20\40\x20\x20\x3c\x68\145\141\144\x3e\12\x20\40\x20\40\40\40\40\x20\74\x74\151\164\154\x65\76\110\x54\x4d\114\40\x65\155\141\x69\154\x20\164\145\163\x74\74\57\x74\x69\x74\x6c\145\76\xa\x20\x20\40\40\x3c\57\x68\145\141\x64\76\xa\40\x20\40\40\74\x62\x6f\144\x79\76\xa\40\x20\40\40\x20\40\x20\x20\x3c\150\61\x3e\120\x48\x50\x4d\141\151\x6c\145\x72\40\x64\157\145\x73\40\110\x54\x4d\x4c\x21\74\x2f\x68\61\x3e\xa\x20\x20\40\x20\40\40\x20\40\74\x70\76\x54\x68\x69\x73\40\151\x73\x20\141\40\x3c\163\x74\162\157\x6e\147\76\164\145\163\x74\x20\x6d\x65\x73\163\141\x67\145\74\57\x73\164\x72\x6f\x6e\147\x3e\40\x77\x72\151\164\164\x65\x6e\x20\151\x6e\x20\x48\124\115\x4c\x2e\74\x62\162\x3e\xa\x20\x20\x20\x20\x20\x20\x20\40\x47\157\40\164\157\x20\x3c\141\40\150\x72\x65\146\x3d\x22\150\x74\164\x70\163\72\57\x2f\x67\151\x74\150\x75\142\56\143\x6f\155\x2f\120\110\120\115\x61\x69\154\145\x72\x2f\120\x48\x50\115\x61\x69\154\x65\x72\x22\x3e\xa\x20\40\x20\x20\40\40\x20\40\x68\164\x74\x70\163\x3a\x2f\57\x67\x69\164\150\x75\x62\x2e\143\157\x6d\57\x50\x48\120\x4d\x61\x69\x6c\145\162\x2f\x50\110\x50\x4d\x61\x69\154\x65\x72\74\57\141\x3e\xa\x20\x20\40\40\x20\40\x20\x20\x66\157\x72\x20\156\x65\x77\x20\x76\145\x72\163\151\x6f\156\x73\x20\x6f\x66\40\x50\110\x50\115\141\151\x6c\145\162\56\74\57\x70\x3e\12\40\40\x20\40\40\40\x20\x20\74\160\x3e\x54\150\141\x6e\x6b\40\171\x6f\x75\x21\x3c\57\160\x3e\12\x20\x20\40\x20\74\x2f\x62\x6f\144\x79\x3e\xa\74\57\150\x74\155\154\x3e", "\x65\x78\160\x65\x63\x74\145\x64" => "\120\110\120\x4d\x61\x69\x6c\x65\162\x20\x64\157\145\x73\40\110\124\x4d\x4c\x21\xa\40\x20\x20\40\40\x20\x20\40\x54\150\x69\x73\40\151\163\x20\141\x20\164\145\163\164\x20\155\145\163\163\141\147\x65\x20\x77\x72\x69\164\x74\x65\156\40\151\156\x20\x48\124\115\114\56\xa\40\x20\40\x20\40\40\40\x20\107\x6f\40\164\x6f\40\xa\x20\x20\40\40\x20\40\40\x20\x68\164\164\160\163\x3a\57\x2f\147\151\164\x68\x75\x62\x2e\x63\157\155\x2f\x50\x48\x50\115\x61\x69\154\x65\162\57\120\x48\x50\x4d\141\x69\x6c\x65\x72\xa\x20\x20\x20\40\x20\40\40\x20\x66\x6f\x72\x20\156\145\167\x20\166\145\162\163\151\x6f\x6e\x73\40\157\x66\x20\x50\x48\120\x4d\141\151\154\145\162\x2e\12\x20\x20\x20\40\40\x20\40\x20\x54\x68\141\x6e\153\40\x79\157\165\41"], "\x50\x6c\141\x69\156\x20\x74\x65\170\164\x2c\40\x77\151\164\150\x20\120\x48\x50\x20\x73\150\157\162\164\x20\x6f\160\x65\x6e\x20\145\x63\150\157\x20\x74\x61\147\163" => ["\x69\x6e\x70\165\x74" => "\74\x3f\x3d\x20\47\74\77\75\40\x31\x20\77\76\47\x20\x3f\76\62", "\145\x78\x70\x65\x63\x74\145\144" => "\x32"], "\110\x54\115\x4c\40\x77\151\x74\150\x20\x73\x63\162\x69\160\x74\x20\164\x61\147" => ["\151\156\x70\165\x74" => "\x6c\x6f\x72\x65\x6d\74\x73\143\x72\151\x70\x74\x3e\141\x6c\x65\162\x74\50\42\x78\163\x73\42\x29\x3c\x2f\163\x63\x72\x69\160\164\x3e\151\x70\163\165\155", "\145\x78\160\x65\x63\164\145\144" => "\x6c\157\162\x65\x6d\x69\160\x73\x75\x6d"], "\110\124\x4d\114\40\167\151\x74\150\40\163\164\x79\154\x65\x20\164\141\147\x20\167\x69\164\150\x20\143\157\x6e\x74\145\x6e\x74\x2e\40\x75\160\x70\x65\162\x63\x61\x73\x65\40\110\x54\x4d\114\x20\164\141\x67\x73" => ["\151\x6e\x70\165\x74" => "\154\x6f\x72\145\155\74\x53\124\131\x4c\x45\x3e\x2a\x20\x7b\40\x64\x69\163\x70\154\x61\x79\72\x20\x27\156\157\x6e\145\x27\40\175\74\x2f\123\x54\131\114\x45\x3e\151\160\x73\165\x6d", "\x65\x78\160\145\143\x74\145\144" => "\154\x6f\162\145\155\151\x70\x73\165\155"], "\x48\x54\x4d\114\40\x77\151\x74\150\x20\163\143\162\x69\x70\164\40\x74\x61\147\40\156\x65\x73\164\145\144\40\151\x6e\x20\163\x74\x79\x6c\145\x20\x74\x61\147" => ["\x69\156\x70\165\x74" => "\154\157\162\x65\155\x3c\x73\164\x79\x6c\x65\76\52\x20\x7b\x20\x64\x69\x73\x70\154\141\x79\x3a\40\x27\x6e\157\156\145\47\40\x7d\x3c\163\x63\x72\151\x70\164\x3e\x61\x6c\145\162\x74\50\47\170\163\163\47\51\74\57\163\x63\162\x69\160\164\x3e\x3c\57\163\164\171\x6c\x65\76\151\x70\163\x75\155", "\x65\x78\160\145\x63\x74\145\x64" => "\154\157\162\145\155\151\x70\x73\165\155"], "\120\x6c\141\x69\x6e\40\164\145\170\164\40\167\150\151\x63\x68\x20\x77\151\x6c\x6c\40\164\165\x72\156\x20\151\156\x74\157\x20\x48\x54\115\114\40\x73\x63\x72\x69\x70\164\x20\x74\x61\147\x20\157\156\40\x64\145\x63\x6f\144\151\x6e\x67" => ["\x69\x6e\x70\x75\164" => "\x6c\x6f\x72\145\155\46\x6c\x74\73\163\x63\x72\x69\160\164\x26\147\x74\73\141\154\x65\162\x74\x28\x22\170\x73\x73\x22\51\x26\154\164\x3b\57\x73\x63\162\151\x70\164\x26\x67\164\73\151\160\x73\165\x6d", "\145\170\160\145\143\164\x65\x64" => "\154\157\x72\x65\155\x3c\x73\143\162\x69\160\164\76\141\154\x65\162\x74\50\42\170\163\x73\42\51\x3c\x2f\163\143\162\151\x70\x74\x3e\x69\x70\163\x75\x6d"], "\x48\124\115\x4c\x20\167\x69\164\x68\40\141\40\42\154\145\x73\x73\x20\164\150\x61\156\42\40\x73\151\147\156\x20\x69\156\x20\x74\150\x65\40\x74\x65\170\x74" => ["\x69\x6e\160\165\x74" => "\x3c\x70\x3e\74\163\160\141\156\x20\163\x74\171\x6c\x65\x3d\x22\x63\157\154\157\162\x3a\x20\x23\x66\146\x30\60\x30\x30\x3b\40\x62\x61\143\153\147\162\x6f\x75\x6e\x64\55\143\157\154\157\162\x3a\x20\x23\x30\x30\x30\x30\x30\60\x3b\x22\x3e\103\x6f\x6d\x70\154\145\x78\x3c\x2f\x73\160\x61\x6e\76\40" . "\74\x73\x70\x61\x6e\40\163\x74\171\154\145\x3d\x22\x66\157\x6e\x74\55\146\x61\x6d\151\154\x79\72\40\x69\x6d\160\141\x63\x74\x2c\143\x68\151\x63\x61\147\157\73\42\x3e\x74\145\x78\164\x20\x3c\65\60\45\x20\x3c\57\163\x70\141\x6e\x3e\x20" . "\74\141\40\150\162\145\146\x3d\42\150\164\x74\160\x73\x3a\x2f\x2f\145\170\141\155\x70\154\x65\x2e\143\x6f\x6d\57\x22\x3e\x3c\x65\155\x3e\167\x69\x74\150\74\x2f\145\155\76\74\x2f\x61\76\40" . "\x3c\163\x70\141\156\x20\163\x74\x79\x6c\145\x3d\42\x66\x6f\x6e\164\55\163\x69\x7a\145\x3a\x20\x33\66\160\x74\x3b\42\76\x3c\163\x74\162\157\156\x67\x3e\164\x61\147\x73\x3c\x2f\163\x74\162\x6f\156\x67\76\74\57\163\160\x61\156\76\x3c\x2f\160\76", "\145\170\160\145\143\164\145\x64" => "\x43\x6f\155\x70\154\x65\x78\x20\164\145\x78\x74"], "\x48\124\115\x4c\x20\167\151\164\x68\40\x61\156\x20\x65\x6e\143\157\144\145\x64\40\42\x6c\x65\163\163\x20\x74\150\141\x6e\42\40\163\151\x67\156\x20\x69\x6e\40\164\x68\x65\x20\164\145\170\x74" => ["\x69\156\x70\165\x74" => "\x3c\160\x3e\74\x73\x70\141\156\x20\x73\164\171\x6c\x65\x3d\42\143\157\x6c\x6f\x72\72\40\x23\x66\146\x30\60\x30\x30\x3b\40\142\x61\x63\x6b\147\162\157\165\156\144\55\143\157\154\157\162\x3a\x20\x23\x30\x30\x30\60\x30\x30\73\42\76\x43\x6f\x6d\x70\x6c\145\x78\x3c\57\163\x70\141\156\x3e\x20" . "\74\x73\160\141\156\x20\163\x74\x79\154\145\75\42\x66\x6f\x6e\164\x2d\x66\x61\x6d\x69\x6c\171\x3a\x20\x69\x6d\160\x61\x63\x74\x2c\143\x68\151\x63\141\x67\157\73\42\76\x74\x65\170\x74\x20\46\x6c\x74\x3b\65\60\45\40\74\57\163\x70\x61\156\76\x20" . "\74\141\40\x68\x72\x65\x66\75\x22\x68\x74\x74\x70\163\72\57\57\145\x78\141\x6d\160\154\x65\56\x63\157\155\57\x22\76\74\145\155\76\167\x69\164\x68\x3c\x2f\145\x6d\x3e\74\x2f\x61\x3e\40" . "\74\x73\x70\141\156\40\163\164\171\x6c\x65\75\42\x66\x6f\156\x74\x2d\x73\151\x7a\145\x3a\x20\x33\66\160\x74\73\x22\x3e\x3c\x73\164\162\x6f\156\147\76\x74\141\147\163\74\x2f\x73\x74\x72\x6f\x6e\147\x3e\74\x2f\x73\x70\141\x6e\x3e\74\x2f\160\x3e", "\x65\x78\160\145\x63\x74\145\144" => "\x43\157\x6d\x70\154\145\170\x20\x74\x65\170\x74\x20\74\65\60\x25\x20\x20\x77\x69\164\150\40\164\141\x67\163"]]; } public function OHaFR($wuOOz, $nQq2O, $zpNa2) { $SRUYi = $this->lju48->Jf2iH($wuOOz, $nQq2O); igX_8::dpOwh($zpNa2, $SRUYi); } public function QF803() { return ["\116\x6f\x20\x48\x54\x4d\x4c\x2c\40\x73\x69\155\160\x6c\x65\x20\50\165\156\x73\141\x66\145\x29\40\x66\165\156\143\x74\x69\x6f\x6e\40\x6e\141\x6d\145\40\x63\141\x6c\154\142\141\143\x6b" => ["\151\x6e\x70\x75\x74" => "\x4c\157\162\x65\155\x20\151\160\x73\165\155\40\144\157\x6c\157\x72\40\x73\x69\x74\40\141\x6d\x65\x74\x2c\x20\143\157\156\163\145\143\x74\145\164\165\x72\40\x61\x64\151\160\x69\163\143\151\x6e\x67\x20\145\x6c\151\x74\x2e", "\x63\141\154\154\142\141\x63\x6b" => "\x73\164\162\151\160\137\x74\x61\x67\163", "\x65\x78\160\x65\x63\164\x65\x64" => "\x4c\157\x72\145\x6d\x20\x69\x70\x73\165\x6d\x20\x64\x6f\154\157\x72\x20\x73\x69\164\40\141\155\x65\x74\54\x20\x63\157\156\163\145\x63\x74\x65\164\x75\x72\x20\141\x64\x69\x70\x69\x73\143\151\156\x67\x20\145\x6c\x69\164\56"], "\x48\141\163\40\110\x54\x4d\114\x2c\x20\x73\x69\155\160\154\145\40\x28\x75\156\163\141\x66\x65\51\40\143\x6c\x6f\x73\165\x72\145\40\x63\141\154\x6c\142\141\143\x6b" => ["\151\156\x70\165\164" => "\x4c\x6f\162\x65\155\40\74\144\x69\x76\x3e\x69\x70\x73\x75\x6d\74\x2f\x64\x69\166\x3e\40\x64\157\x6c\157\x72\x20\163\151\x74\40\x61\155\x65\x74\74\x62\162\57\x3e\x2c" . "\x20\143\157\x6e\163\145\143\x74\x65\x74\165\162\40\x3c\x73\x63\162\151\160\164\76\x61\x64\151\x70\x69\163\x63\x69\156\147\50\x29\x3c\57\x73\x63\162\x69\x70\x74\x3e\40\145\x6c\151\164\56", "\x63\141\154\x6c\142\141\143\x6b" => static function ($m5UWU) { return strip_tags($m5UWU); }, "\x65\x78\160\145\x63\x74\145\144" => "\114\x6f\162\x65\x6d\40\x69\160\x73\x75\155\x20\x64\x6f\154\157\x72\40\163\x69\x74\40\141\x6d\x65\164\54\x20\x63\x6f\156\x73\145\143\164\145\x74\165\162\40\141\x64\151\x70\x69\x73\x63\x69\156\147\50\x29\40\x65\154\x69\x74\x2e"], "\x48\141\163\x20\110\x54\x4d\x4c\x2c\x20\163\x69\x6d\160\x6c\145\40\x28\165\x6e\163\x61\146\145\x29\x20\x73\x74\x61\164\151\143\x20\x63\154\141\163\x73\x20\x6d\x65\x74\x68\x6f\144\40\x63\141\154\x6c\142\141\x63\153" => ["\151\156\160\165\164" => "\114\157\x72\145\x6d\x20\x3c\144\x69\x76\x3e\151\x70\163\165\x6d\x3c\57\144\151\166\76\x20\144\x6f\154\157\x72\x20\163\x69\164\40\141\155\145\164\74\142\162\57\76\54" . "\x20\x63\157\156\x73\145\143\164\x65\x74\165\162\x20\x3c\x73\143\x72\x69\160\x74\76\x61\x64\151\160\x69\x73\143\x69\x6e\147\x28\x29\74\57\x73\143\x72\151\160\x74\76\x20\x65\154\x69\164\56", "\x63\141\x6c\x6c\x62\141\143\153" => [__CLASS__, "\x6d\x65\164\x68\x6f\144\102\x61\x73\145\x64\x43\141\154\x6c\x62\x61\x63\153"], "\x65\170\x70\145\143\164\145\x64" => "\114\157\x72\x65\155\40\151\x70\163\x75\x6d\x20\x64\157\154\x6f\162\40\x73\151\164\x20\141\155\x65\x74\54\40\143\x6f\156\163\145\x63\x74\x65\164\165\162\40\x61\x64\151\160\151\x73\143\x69\156\x67\x28\51\x20\145\x6c\151\x74\56"], "\110\x61\x73\x20\x48\124\115\114\54\40\x73\x69\155\160\x6c\145\40\50\x75\156\163\x61\x66\x65\x29\40\157\142\x6a\145\143\x74\x20\155\145\x74\x68\157\144\x20\x63\x61\154\154\x62\x61\x63\153" => ["\x69\x6e\160\x75\164" => "\x4c\x6f\x72\x65\x6d\x20\74\144\151\166\x3e\x69\160\x73\x75\155\x3c\57\144\x69\x76\x3e\40\x64\157\x6c\x6f\162\x20\x73\x69\164\40\x61\x6d\145\x74\74\x62\162\57\x3e\54" . "\x20\x63\157\x6e\163\x65\143\164\x65\x74\165\162\x20\74\163\143\x72\151\160\x74\76\x61\144\151\160\x69\x73\x63\x69\x6e\x67\50\x29\74\57\163\x63\x72\151\160\x74\76\x20\145\x6c\x69\164\x2e", "\x63\x61\x6c\x6c\142\141\x63\x6b" => [$this, "\x6d\x65\164\x68\x6f\x64\102\x61\x73\145\144\103\141\154\x6c\x62\141\x63\153"], "\145\x78\160\145\x63\164\x65\x64" => "\x4c\157\x72\x65\155\40\151\160\x73\165\155\40\144\x6f\154\157\x72\x20\163\x69\x74\x20\x61\155\x65\164\54\40\143\157\x6e\163\145\143\164\x65\164\165\x72\40\x61\x64\x69\x70\151\x73\143\x69\x6e\x67\x28\51\40\x65\154\151\x74\56"], "\110\x61\x73\40\x48\x54\x4d\x4c\x2c\x20\145\170\x70\x6c\151\x63\x69\164\x6c\171\x20\x75\163\145\x20\x69\x6e\164\145\162\x6e\141\154\x20\x63\157\x6e\x76\x65\x72\x74\145\162\x20\x28\143\x61\x6c\x6c\142\141\143\x6b\x20\75\40\164\x72\x75\x65\51" => ["\151\156\160\165\x74" => "\114\157\162\x65\155\40\x3c\x64\x69\166\x3e\x69\x70\x73\x75\155\74\57\x64\151\x76\76\x20\x64\157\x6c\x6f\162\40\163\151\164\40\x61\x6d\x65\164\x3c\142\x72\x2f\76\54" . "\x20\x63\157\156\x73\x65\x63\x74\145\164\165\162\x20\74\163\x63\x72\x69\160\x74\76\141\x64\x69\x70\x69\163\x63\151\156\x67\x28\x29\74\x2f\163\x63\162\151\x70\x74\76\x20\x65\154\x69\x74\x2e", "\143\141\x6c\154\x62\141\x63\x6b" => true, "\x65\x78\x70\x65\x63\164\x65\x64" => "\x4c\x6f\x72\145\155\40\151\x70\163\165\x6d\x20\144\x6f\154\x6f\x72\40\x73\x69\x74\x20\x61\155\x65\x74\x2c\40\x63\157\156\x73\145\x63\164\145\x74\x75\x72\40\40\x65\x6c\x69\x74\56"], "\110\141\x73\x20\110\124\115\114\x2c\x20\165\x73\145\x20\151\x6e\164\x65\162\156\x61\x6c\x20\x63\157\x6e\166\x65\x72\164\x65\162\40\144\165\x65\x20\164\157\x20\160\x61\163\x73\151\156\147\x20\151\x6e\166\141\154\x69\x64\40\x63\x61\x6c\x6c\142\x61\143\x6b\x20\50\146\x75\x6e\x63\x74\151\x6f\x6e\51" => ["\151\x6e\x70\x75\164" => "\114\x6f\162\x65\155\x20\x3c\144\151\x76\x3e\151\x70\163\x75\155\74\57\x64\x69\166\76\x20\x64\157\x6c\157\162\40\x73\151\x74\x20\x61\155\x65\164\74\142\162\57\x3e\x2c" . "\x20\x63\x6f\156\x73\x65\x63\164\145\x74\165\162\x20\x3c\x73\143\162\151\160\x74\x3e\x61\x64\151\x70\x69\163\x63\151\156\147\x28\51\x3c\x2f\163\x63\x72\x69\x70\164\76\x20\145\x6c\151\164\x2e", "\143\x61\x6c\154\x62\x61\143\x6b" => "\x66\x75\156\143\164\151\157\x6e\x77\150\151\x63\x68\x64\x6f\145\163\156\x6f\164\x65\170\x69\x73\x74", "\x65\x78\x70\x65\143\x74\145\144" => "\114\x6f\162\145\155\40\151\160\163\x75\155\40\144\157\154\157\x72\40\x73\x69\x74\x20\141\155\x65\164\54\x20\143\157\x6e\163\x65\143\164\x65\x74\x75\x72\40\40\x65\154\151\x74\56"], "\x48\x61\163\40\x48\x54\115\114\x2c\x20\165\x73\x65\40\151\x6e\164\x65\x72\x6e\141\x6c\40\143\x6f\x6e\x76\x65\162\164\x65\x72\40\x64\x75\x65\x20\x74\x6f\40\160\x61\x73\163\x69\x6e\x67\x20\151\156\166\141\x6c\151\144\40\x63\141\154\154\142\141\143\x6b\x20\50\163\x74\x61\x74\151\x63\x20\155\x65\x74\x68\x6f\144\51" => ["\151\156\x70\x75\164" => "\114\157\162\145\155\x20\74\144\x69\x76\x3e\x69\160\163\165\x6d\x3c\57\144\151\x76\76\40\144\157\154\x6f\x72\40\163\x69\x74\40\141\x6d\145\164\74\x62\x72\x2f\x3e\54" . "\40\143\157\x6e\x73\x65\x63\164\145\164\x75\162\x20\x3c\x73\x63\162\151\x70\x74\76\x61\x64\151\160\x69\163\143\x69\156\x67\x28\x29\74\57\163\x63\x72\x69\x70\164\x3e\x20\x65\154\x69\x74\x2e", "\143\141\154\x6c\x62\x61\143\153" => ["\x63\154\x61\x73\167\x68\151\x63\x68\x64\157\145\x73\x6e\x6f\x74\145\170\x69\x73\164", "\146\x6f\157"], "\x65\170\160\x65\x63\x74\145\144" => "\114\x6f\x72\145\155\x20\x69\x70\x73\165\155\40\x64\157\154\157\x72\x20\x73\151\164\40\141\155\x65\164\x2c\40\x63\x6f\156\163\x65\x63\164\145\x74\x75\x72\40\40\x65\x6c\151\x74\x2e"]]; } public static function yuqNt($m5UWU) { return strip_tags($m5UWU); } }

Function Calls

None

Variables

None

Stats

MD5 1cd0b869ff78644f8469678036181452
Eval Count 0
Decode Time 98 ms