ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/vidoe.top/lib/phpunpark/ |
<?php function __autoload($class_name) { require __DIR__ . DIRECTORY_SEPARATOR . 'inc'. DIRECTORY_SEPARATOR . $class_name . '.php'; } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Javascript unpacker testpage</title> <meta name="description" content="Unpacker for JavaScript files that were packed with Dean Edwards JavaScript's Packer."> <meta name="author" content="Recep Karadas"> </head> <body> <h1>Javascript unpacker testpage</h1> <form method="POST"> <div style="padding:10px;background:#efefef;display:inline-block;"> <?php if ($_SERVER['REQUEST_METHOD'] === 'POST') { $jsu = new JavaScriptUnpacker(); ?> <h4>Result: </h4> <?php echo $jsu->Unpack($_POST["userInput"]); }else{ ?> <label for="userInput">Put in your packed javascript:</label><br /> <textarea type="text" name="userInput" rows="10" cols="50" ></textarea><br /> <input type="submit" value="submit" style="float:right"/> <?php } ?> </div> </form> </body> </html>