Aims to deobfuscate the result of JavascriptObfuscator free version.
To tun the script, you should have had node.js installed first. Requires node.js and following npm modules:
- esprima
// JFX | |
// | |
async function fetchWalletFinances() { | |
const response = await fetch('https://my.hfm.com/en/trader/wallet_finances'); | |
const data = await response.json(); | |
return data; | |
} | |
async function kira() { |
<?php | |
// https://www.php.net/manual/en/function.array-unique.php#116302 | |
$details = array( | |
0 => array("id"=>"1", "name"=>"Mike", "num"=>"9876543210"), | |
1 => array("id"=>"2", "name"=>"Carissa", "num"=>"08548596258"), | |
2 => array("id"=>"1", "name"=>"Mathew", "num"=>"784581254"), | |
); |
<?php | |
phpinfo(); | |
?> |
<?php | |
require_once 'vendor/autoload.php'; | |
use Medoo\Medoo; | |
$db = new Medoo([ | |
'type' => 'mysql', | |
'host' => $dbhost, | |
'database' => $dbname, |
<?php | |
//Default Configuration | |
$CONFIG = '{"lang":"en","error_reporting":false,"show_hidden":false,"hide_Cols":false,"calc_folder":false,"theme":"light"}'; | |
/** | |
* H3K | Tiny File Manager V2.4.7 | |
* CCP Programmers | [email protected] | |
* https://tinyfilemanager.github.io | |
*/ |
using System; | |
using System.IO; | |
using System.IO.Compression; | |
using System.Text; | |
namespace phpencodeorg_Decrypt | |
{ | |
class Program | |
{ | |
// https://dotnetfiddle.net/xo2fri |
using System; | |
using System.Dynamic; | |
using System.Threading; | |
using Facebook; | |
namespace Auto_Update_Status_Facebook | |
{ | |
class Program | |
{ | |
static FacebookClient FBClient; |
public static class Arrays { | |
public static T[] InitializeWithDefaultInstances < T > (int length) where T: new() { | |
T[] array = new T[length]; | |
for (int i = 0; i < length; i++) { | |
array[i] = new T(); | |
} | |
return array; | |
} |
Aims to deobfuscate the result of JavascriptObfuscator free version.
To tun the script, you should have had node.js installed first. Requires node.js and following npm modules:
using System; | |
using System.Diagnostics; | |
using System.Runtime.InteropServices; | |
namespace memoryReader | |
{ | |
static class Memory | |
{ |