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 /** * This is file is decoded using deobfuscation.com * You are using demo versio..

Decoded Output download

<?php 
/** 
* This is file is decoded using deobfuscation.com 
* You are using demo version of application 
*/ 
 
 
 
define('BOT_TOKEN', '1764018970:tIWcYCUU9MaAHglnYG3HvCX28Ex11beRv8CsPIOu'); 
define('API_URL', 'https://tapi.bale.ai/bot' . BOT_TOKEN . '/'); 
 
 
function messageRequestJson($method, $parameters){ 
    if (!$parameters){ 
        $parameters=array(); 
    } 
 
    $url=API_URL.$method; 
//    dd($url); 
//    dd(json_encode($parameters)); 
 
//    $parameters['method']=$method; 
 
    $handle=curl_init($url); 
    curl_setopt($handle,CURLOPT_RETURNTRANSFER,true); 
    curl_setopt($handle,CURLOPT_CONNECTTIMEOUT,5); 
    curl_setopt($handle,CURLOPT_TIMEOUT,60); 
    curl_setopt($handle,CURLOPT_POSTFIELDS,json_encode($parameters)); 
    curl_setopt($handle,CURLOPT_HTTPHEADER,array('Content-Type: application/json')); 
//    dd($handle); 
    return curl_exec($handle); 
} 
 
/*function sendPhoto($method, $parameters){ ?>

Did this file decode correctly?

Original Code

<?php
/**
* This is file is decoded using deobfuscation.com
* You are using demo version of application
*/



define('BOT_TOKEN', '1764018970:tIWcYCUU9MaAHglnYG3HvCX28Ex11beRv8CsPIOu');
define('API_URL', 'https://tapi.bale.ai/bot' . BOT_TOKEN . '/');


function messageRequestJson($method, $parameters){
    if (!$parameters){
        $parameters=array();
    }

    $url=API_URL.$method;
//    dd($url);
//    dd(json_encode($parameters));

//    $parameters['method']=$method;

    $handle=curl_init($url);
    curl_setopt($handle,CURLOPT_RETURNTRANSFER,true);
    curl_setopt($handle,CURLOPT_CONNECTTIMEOUT,5);
    curl_setopt($handle,CURLOPT_TIMEOUT,60);
    curl_setopt($handle,CURLOPT_POSTFIELDS,json_encode($parameters));
    curl_setopt($handle,CURLOPT_HTTPHEADER,array('Content-Type: application/json'));
//    dd($handle);
    return curl_exec($handle);
}

/*function sendPhoto($method, $parameters){

Function Calls

None

Variables

None

Stats

MD5 ebef44ae5120caeaed7266b9937cc57e
Eval Count 0
Decode Time 110 ms