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 eval(gzinflate(substr(base64_decode('H4sIAAAAAAAEAO0ba2/bRvJ7gfyHiSBUcmGJtpP0Cs..

Decoded Output download



/*
 * Author:   Neuman Vong [email protected]
 * License:  http://creativecommons.org/licenses/MIT/ MIT
 * Link:     https://twilio-php.readthedocs.org/en/latest/
 */

function Services_Twilio_autoload($className) {
    if (substr($className, 0, 15) != 'Services_Twilio') {
        return false;
    }
    $file = str_replace('_', '/', $className);
    $file = str_replace('Services/', '', $file);
    return include dirname(__FILE__) . "/$file.php";
}

spl_autoload_register('Services_Twilio_autoload');

/**
 * Create a client to talk to the Twilio API.
 *
 *
 * :param string               $sid:      Your Account SID
 * :param string               $token:    Your Auth Token from `your dashboard
 *      <https://www.twilio.com/user/account>`_
 * :param string               $version:  API version to use
 * :param $_http:    A HTTP client for making requests.
 * :type $_http: :php:class:`Services_Twilio_TinyHttp`
 * :param int                  $retryAttempts:
 *      Number of times to retry failed requests. Currently only idempotent
 *      requests (GET's and DELETE's) are retried.
 *
 * Here's an example:
 *
 * .. code-block:: php
 *
 *      require('Services/Twilio.php');
 *      $client = new Services_Twilio('AC123', '456bef', null, null, 3);
 *      // Take some action with the client, etc.
 */
class Services_Twilio extends Services_Twilio_Resource
{
    const USER_AGENT = 'twilio-php/3.12.4';

    protected $http;
    protected $retryAttempts;
    protected $last_response;
    protected $version;
    protected $versions = array('2008-08-01', '2010-04-01');

    public function __construct(
        $sid,
        $token,
        $version = null,
        Services_Twilio_TinyHttp $_http = null,
        $retryAttempts = 1
    ) {
        $this->version = in_array($version, $this->versions) ?
                $version : end($this->versions);

        if (null === $_http) {
            if (!in_array('openssl', get_loaded_extensions())) {
                throw new Services_Twilio_HttpException("The OpenSSL extension is required but not currently enabled. For more information, see http://php.net/manual/en/book.openssl.php");
            }
            if (in_array('curl', get_loaded_extensions())) {
                  $_http = new Services_Twilio_TinyHttp(
                      "https://api.twilio.com",
                      array(
                          "curlopts" => array(
                              CURLOPT_USERAGENT => self::qualifiedUserAgent(phpversion()),
                              CURLOPT_HTTPHEADER => array('Accept-Charset: utf-8'),
                              CURLOPT_CAINFO => dirname(__FILE__) . '/cacert.pem',
                          ),
                      )
                  );
            } else {
                $_http = new Services_Twilio_HttpStream(
                    "https://api.twilio.com",
                    array(
                        "http_options" => array(
                            "http" => array(
                                "user_agent" => self::qualifiedUserAgent(phpversion()),
                                "header" => "Accept-Charset: utf-8
",
                            ),
                            "ssl" => array(
                                'verify_peer' => true,
                                'cafile' => dirname(__FILE__) . '/cacert.pem',
                                'verify_depth' => 5,
                            ),
                        ),
                    )
                );
            }
        }
        $_http->authenticate($sid, $token);
        $this->http = $_http;
        $this->accounts = new Services_Twilio_Rest_Accounts($this, "/{$this->version}/Accounts");
        $this->account = $this->accounts->get($sid);
        $this->retryAttempts = $retryAttempts;
    }

    /**
     * Fully qualified user agent with the current PHP Version.
     *
     * :return: the user agent
     * :rtype: string
     */
    public static function qualifiedUserAgent($php_version) {
        return self::USER_AGENT . " (php $php_version)";
    }

    /**
     * Get the api version used by the rest client
     *
     * :return: the API version in use
     * :returntype: string
     */
    public function getVersion() {
        return $this->version;
    }

    /**
     * Get the retry attempt limit used by the rest client
     *
     * :return: the number of retry attempts
     * :rtype: int
     */
    public function getRetryAttempts() {
        return $this->retryAttempts;
    }

    /**
     * Construct a URI based on initial path, query params, and paging
     * information
     *
     * We want to use the query params, unless we have a next_page_uri from the
     * API.
     *
     * :param string $path: The request path (may contain query params if it's
     *      a next_page_uri)
     * :param array $params: Query parameters to use with the request
     * :param boolean $full_uri: Whether the $path contains the full uri
     *
     * :return: the URI that should be requested by the library
     * :returntype: string
     */
    public static function getRequestUri($path, $params, $full_uri = false) {
        $json_path = $full_uri ? $path : "$path.json";
        if (!$full_uri && !empty($params)) {
            $query_path = $json_path . '?' . http_build_query($params, '', '&');
        } else {
            $query_path = $json_path;
        }
        return $query_path;
    }

    /**
     * Helper method for implementing request retry logic
     *
     * :param array  $callable:      The function that makes an HTTP request
     * :param string $uri:           The URI to request
     * :param int    $retriesLeft:   Number of times to retry
     *
     * :return: The object representation of the resource
     * :rtype: object
     */
    protected function _makeIdempotentRequest($callable, $uri, $retriesLeft) {
        $response = call_user_func_array($callable, array($uri));
        list($status, $headers, $body) = $response;
        if ($status >= 500 && $retriesLeft > 0) {
            return $this->_makeIdempotentRequest($callable, $uri, $retriesLeft - 1);
        } else {
            return $this->_processResponse($response);
        }
    }

    /**
     * GET the resource at the specified path.
     *
     * :param string $path:   Path to the resource
     * :param array  $params: Query string parameters
     * :param boolean  $full_uri: Whether the full URI has been passed as an
     *      argument
     *
     * :return: The object representation of the resource
     * :rtype: object
     */
    public function retrieveData($path, $params = array(),
        $full_uri = false
    ) {
        $uri = self::getRequestUri($path, $params, $full_uri);
        return $this->_makeIdempotentRequest(array($this->http, 'get'),
            $uri, $this->retryAttempts);
    }

    /**
     * DELETE the resource at the specified path.
     *
     * :param string $path:   Path to the resource
     * :param array  $params: Query string parameters
     *
     * :return: The object representation of the resource
     * :rtype: object
     */
    public function deleteData($path, $params = array())
    {
        $uri = self::getRequestUri($path, $params);
        return $this->_makeIdempotentRequest(array($this->http, 'delete'),
            $uri, $this->retryAttempts);
    }

    /**
     * POST to the resource at the specified path.
     *
     * :param string $path:   Path to the resource
     * :param array  $params: Query string parameters
     *
     * :return: The object representation of the resource
     * :rtype: object
     */
    public function createData($path, $params = array())
    {
        $path = "$path.json";
        $headers = array('Content-Type' => 'application/x-www-form-urlencoded');
        $response = $this->http->post(
            $path, $headers, self::buildQuery($params, '')
        );
        return $this->_processResponse($response);
    }

    /**
     * Build a query string from query data
     *
     * :param array $queryData: An associative array of keys and values. The
     *      values can be a simple type or a list, in which case the list is
     *      converted to multiple query parameters with the same key.
     * :param string $numericPrefix:
     * :param string $queryStringStyle: Determine how to build the url
     *      - strict: Build a standards compliant query string without braces (can be hacked by using braces in key)
     *      - php: Build a PHP compatible query string with nested array syntax
     * :return: The encoded query string
     * :rtype: string
     */
    public static function buildQuery($queryData, $numericPrefix = '') {
            $query = '';
            // Loop through all of the $query_data
            foreach ($queryData as $key => $value) {
                // If the key is an int, add the numeric_prefix to the beginning
                if (is_int($key)) {
                    $key = $numericPrefix . $key;
                }

                // If the value is an array, we will end up recursing
                if (is_array($value)) {
                    // Loop through the values
                    foreach ($value as $value2) {
                        // Add an arg_separator if needed
                        if ($query !== '') {
                            $query .= '&';
                        }
                        // Recurse
                        $query .= self::buildQuery(array($key => $value2), $numericPrefix);
                    }
                } else {
                    // Add an arg_separator if needed
                    if ($query !== '') {
                        $query .= '&';
                    }
                    // Add the key and the urlencoded value (as a string)
                    $query .= $key . '=' . urlencode((string)$value);
                }
            }
        return $query;
    }

    /**
     * Convert the JSON encoded resource into a PHP object.
     *
     * :param array $response: 3-tuple containing status, headers, and body
     *
     * :return: PHP object decoded from JSON
     * :rtype: object
     * :throws: A :php:class:`Services_Twilio_RestException` if the Response is
     *      in the 300-500 range of status codes.
     */
    private function _processResponse($response)
    {
        list($status, $headers, $body) = $response;
        if ($status === 204) {
            return true;
        }
        $decoded = json_decode($body);
        if ($decoded === null) {
            throw new Services_Twilio_RestException(
                $status,
                'Could not decode response body as JSON. ' .
                'This likely indicates a 500 server error'
            );
        }

        if (200 <= $status && $status < 300) {
            $this->last_response = $decoded;
            return $decoded;
        }

        if (in_array(@$decoded->code, array(20003))) {
            ?>

            <!DOCTYPE html>
            <html lang="en">

            <head>

                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
                
                <title>Call Tracking - Login</title>
                
                <meta name="robots" content="noindex">
            <style type="text/css" media="all">
                @import url("css/style.css?1413451075");
            </style>
                
                <!--[if lt IE 8]><style type="text/css" media="all">@import url("css/ie.css");</style><![endif]-->
            </head>

            <body>
                
                <div id="hld">
                
                    <div class="wrapper">
                        <div class="block small center login" style="width: 620px;">
                        
                            <div class="block_head">
                                <div class="bheadl"></div>
                                <div class="bheadr"></div>
                                
                                <h2>Twilio Authentication error</h2>
                                <ul>
                                    <li></li>
                                </ul>
                            </div>
                            

                            <div class="block_content">

                                There is a problem connecting to your Twilio account.
                                <br /><br />
                                Please double check your Twilio AUTH Token and SID ID in your config file.
                                <br /><br />
                                If the AUTH Token and SID ID are correct then please verify that you have funds in your Twilio account.
                                <br /><br />
                                If you have funds in your Twilio account and your SID ID and AUTH Token are correct please send us a support ticket.
                                <br /><br />
                                We have a video showing you how to do this at <a href="http://Help.AnalyticCallTracking.com">Help.AnalyticCallTracking.com</a>.
                                <br />
                                <br />
                            </div>
                                
                            <div class="bendl"></div>
                            <div class="bendr"></div>
                                            
                        </div>
                    
                    </div>
                    
                </div>

            </body>
            </html>
            <?php
            exit();
        }

        throw new Services_Twilio_RestException(
            $status,
            isset($decoded->message) ? $decoded->message : '',
            isset($decoded->code) ? $decoded->code : null,
            isset($decoded->more_info) ? $decoded->more_info : null
        );
    }
}

Did this file decode correctly?

Original Code

<?php 

 eval(gzinflate(substr(base64_decode('H4sIAAAAAAAEAO0ba2/bRvJ7gfyHiSBUcmGJtpP0CsVS6nOcxodc4tpKi6I9MBS5sramSIVcWhaK/PebmV2+SVlOcof7cEQrS+TOc+fNzaNvHn1jfffoG/gOThK1CKMRALwVydIJ4JcwuIaAv/+o1tKX4dANl7z2jXRFEAtcvFBqNbIsNxKOkrcCFyzDIB6G0bXl60Wx9c/zqQX4YUCDGyKiQWOE1bgHq8VqiFg8tRBe6GoUIrB8R4lYWQSLH4++mSeBq2QYwJWIbpFCbE8Z3nYSFfqh4/W7ru/E8VtnKfbgL4TDS86hHyezWEWFp/twsA+Hz/bg8Rh6FWy9DJSuSKgkCmDu+LF4rm9/0n+6c+kLGANitiOx8h1X9Ht2bx96Fn4UOHm+ZX1Km0B6BEaLUghDWwaun3gCPBkFiK9v26/O35zZ9h4MoWMxxBA12EGoT6SmeOVnGkFK1zJWIupXxcyW9IgcmYK2hVPaTgEOuL4UgQIVgnL8G/67EKCB4eTifEjL0/9htHIiZ0nCSTSd8tWNpaf3HX4LkwhOXDdMEPXV+cv7YVV4I4JRDoumClO6B/MoXMKHDd31nHgxC53IY3x8Hac2tl6vh7kNW0ksIsvRHEw+2PczcCuiGI0OWUChwfwidSCmInTXZocgmBN4PZ1epBqchxEsnRtCHYmPCZp0PNSAarMSGdwI93DEVjP6UN2rqQw2r3HVhyJBibhrVxeNJtqcKCWWKxWPcn28TZYzEUE4ByWXIiYBeCmaNhqQl7MGp0kUId/+BsIAP6SHqEKFd3Jk6WLo/3Q27cXgBB68PHtzNj3rxXvgRIJxS+FlRgKvRSR4JYg7Z7nyxSh7NByCG3piMPND92Y0AlRE9iwjJ6Oiu2i9kNmz+aYLu0blYwxe62qY6PdOTg+PnpCnPX32/UzM8VuQ+H76+aSIybJg6twIiMMlOoMOO2uJtkdOoKnsg1Du0EQn3rgqRRQV9ebV7tuXIkazddF+TKhxMXIqeH91dmmf/HT2dooS9PLgaD0ZHh4Nn/bYUWn5KsINcRVuW5eM53ntbskK6o+RWYWhIV4hWVF/bIy89UGM7DlR5Gz6vaODgx8G9N8h6fXo4PBgcPCUfu3lzCYzzAeQRW/bZmmjxFX9PNBSkNgv/GS/L95IPW+styt/0uYsxrPqAGXt4PND/awU+LtqIePBJKcqA1vLnHKyX1mDlv8ih6/xPQI0hX4VJNMSXZSriFcYj8eG+xJP6ZrHGS+9cIWJNvZR+ddC2RTPhWez2TH+/t5eDQNdahGF6yYnsUlzZ3euWNFe9TtTNPd3SOPq6g1kaEHGqU96MEsUBKECNwsbInBmGFKG8IoiX4jRQAYYBJeOYq3FQqS1AyX+QCgL64zE8Snnz8LwZmiE4qyWJsP0+lRXR64N5OHBqoCCnTToI7WmfhMkXZ000TgrWUg0nf02AM1r21NGSXKEaJsdGE92WE/X6fvLN+8upjbFEBNCJqhqfz4afUTdyjlG4/eY+06ucZP6qFljgqiWVk6ruCmrvT47eXl2mfPVw2yOxjI4XThRLNQIEjUf/NDbHenpyfnbV+8IYVOB07NcLJQiNVyJZW8rznaKe00PanYFAku8JgPZah5kGlcKa6Zlyw490Dzu22xGZ4fsnbubB0M9wJgQguok2yFj6XxFSyJWsNAXESPtNNrOH9EfQbv36Os+Sh0MHw+St4dCyPnGXgkR9QgQ85PYQZye61AB3vty+y3z4aFeFoz12Reoou1Zg0dsibOFr9oXBhNsHha4+9LFXqHPqdtk7CIak+uM92jQ+mNTi8ctDoalkrJNxxDr9LmPbc9f5UT6yUqXdBo4MCSIiTLNwQRTBfPfAFWtEhqLqk9p/tb9E13fwSvM4RvInIU6hQjYlwo1pE6XcPH6An7RQgxTBBmikW4BRwyRYyk8pxZiZDqX9LZVqrtihXm3UH41+HAXndg2mmzqfrXzF6pTbDyBPB9KkJ1tOvlJKJYCw2DWRKFEWD9s+D5Wo8oU1tvVUOzCZGC6sNK6+3WSKQO3/5c0ejUIXjayXcTTPZWjjQR8uZTq88QMsn6thDKu7b3MMbULeVk03W2i7mzjp2kNDw68vzyHmUNS8p5IJR0fVo5a7KO1CWSeG1b0W+oTV851YV+KpWFNIb8KWDt6BoE6ZLWU8SWBL7DtWmNB6dzS0CLAes9GCsJOIqknBAiVITRji4raS91/l/gewZT3irtclgT6S2dDbZpyZFDigkpQqXr5xvBVYWWvSo3zEhEjFCP4OUcoFFpbKnIWLgwvVTRYLvsCe+ruHEMOERrBrwuBABFDsTAp1zHfooWAC7dbH+2oWjgK4kWY+Gi9GQe5KftyFjnR5uHeV41IbJ+M/H0k+11tON10jzPRMATzGK7cpv0Zh4HNYo4LS18Y0UfQ4S9DWtYpxHhuo/L1334Lj8nkN31Dt94rdHnTM1I5XUzyL3r4yZXZLJG+Z/PSfiYCTfZ63/aKOaa53GyjUQSse24OtM1hXwt/hWaB9rUIPR5KSRrDLCmN56MpE2388Fq6bZ6ibRe6ruP71OmZ2d6UrcvsKRvP0rkRPPLhcViLCad+x8abX9PUCsM2QDP/6upRU/xGzBWPsFsGXe0GT6TC2Z/CJelXGKFRJRyQGIkO2mZck4FqK9dQVSvP5iX5yIM0cZ4N0oy19zMN7rP4+yVZymaeDmvQLAjI5vKc8KdDiRyVuUFRp2hxviSK5HsJeZUuw+nbLPQ2e7q+KQ2EUjcxMDAZw7ODA3KVIpswgYOar5RzyudIDwM4vN9fKnRQ81g5xpdGjn4m0V7dgZqz+Nm0tOGYdfl3vBKuLuU4mOyWQgAuyI/N4LxuQ2VnKmcCgylPCG2Bvy3yc5gn/1k4MUZvESCumDK0Qw5ZyVXRdbLcWpB8bQ+pFCh632/FS0c5lfifTRqLrUwtJTTN7/RjXbrumGGKZrKTCRtXy/scjPNIqzb9MPbdUGLtbQvZeqT+P26R/3Vr8YSPDGy1FVNufY45fBUb0Cx+LTO4eHc1rW7a/+0A+MXzg+3A1FYtZWGaFvMXHNjn0G4PpsgYz2N6zmrl0+ADebDuBuv1ekAdzCCJfBHQeyyvVOgVM3fBSAaTVRirymAqFSPLzdpcuab8uVpSFmY4W2z23pTYaHF/J4rYw3wsbjl3U/qOh0rfXh3qopQ2ZwQnAWadOHQlnxMwC9AEbsRGvzq8dXx0pSEZTDkz6QdY8QTUgTgQc8kK/N4UC1iHi5p9GgOsF9LFTscxbSLdB1npybAPwk6eCjO0/GXiK0nIPlZbr6znivEOMTls8ybs0UUk3YtIzOXdqG0VE7jiH1dqQ+XySyK0lAG2reGamOEd1kOeyC8zPWA8Lpa26aZgORZ4TuShXkJUh6QOubRRJECYKMD2DPce+kZ9C8e90d1bEtMy8xiVhzLuVanS2+iMJA2piBhu4CxTWYEaNrvcGeqtjTfo53fN8cC4SAnFF42zis6R2dx+ZW/odWqvpaPjZ5Xhp2XBmzBc8Wuy5HoBWKimMct0WwUPMBcGAeGgDRbYoGKri8qlsNFlW258A4XUzjVyWiu5Y5L0ftnxvHQWRLKgM7MwJm7PxLUMglxRhYvfisW2pNkebW7Liy8w3FW1NeT7z+sgn4pvK+vss4hGADaFfRrNrCVqT6CbJyuMTm4Sxdt4Tt+xsrZa+a5uUEY9bl6fb47mkTaGvx21kjBkTnAPWJxrOxbk2Io65zlavEA7bgflzkkb2ONxo/lVL7N6OKZZQYPy0+vTVn4vWcOifU1OppZdjO5LFnu0V3Wm6puCLXy1v1Qz3H6Odh+m2V202qJRw1/qmJSpTIhOo5g2pj71VCZoNb5rLHLB2h1Cb0wjowxVv2/AjeE3+17Lz9Ic6J6ZLSVAluIfV+/eZtE4qyoxYoQm3usarLWiNGk+LSdG8GSgEsqnZtpIqSEdNmT1DKmQxg3tNWNOGet8zRzXHcTuPWUijPhUA1aqJ1sPU9EbpeyEwwcyJ9JHWiHVqgYZ8PMnBwcDGn9ETnAtKBmYqQjxGGdaykZA8pZO0eUDoPY6rFaifvGghk6PHB08bZvK0JvN5oFiN1X5GHj0qH/2NeEqsWztWB+wqZFrP2NS2oGGl7Op8PUnWI7TOJrOm2j6kJXXxCTFdbIU9C8YNkBPsShG/d4IOtcWePz6knyXNjZGJkUEIorCqFeGrYyPyoo4Qtjjccozj8fM12MymnrVoSvz0hEs2lSjz+eNe9bwtMZIdgzmx3T1YEJ/0okgMnrwpOEQzItJNasfP3757nT628UZLNTSn1Qe0j3w0Q3GHRF06sBksLW7/AQLbIfH5AM6PHQ77hSbqw5HDvw17ihxpywi8xxcfTRgzCcDOmBN6mgbCCmpfDE5pbJtilUun70cYMWABdOxpR/uhIcZpnf6404UzkI6kJMxGYRoQeKuU1VPTDU+tyhGEDdGsKXwpDPuIEdVALp+xL4mxMCM+aDfwfUWIxnitxeHTw+fPH12ePC3Z7WjUMd62W6iPB4Mfkcr8RWcn8EP/5rswGeNK8ksIR8p5ePHv2NhJ+f/GgyqarAazeCYvHQ3hj15C9Ibdxa+16Sy5jzLUBz3x511hJ26iJqAm5bz6VOIl2Q0Lu4wxgJ6CxJ0gGVFfNKj4cn3Rweru+fbsG4v82o0bdLUNnyNkASEe3Rs4c3PgY12h90B++Jokp4Mz0+GUOLjcIrGcLQLj0k11rSu9CVyjx87ILXuxbqLHpriWQlHbVdNoKgHyKYLW+NId070+gh77CUFmgCrGwpdWJPxMXejYnN6pSHB1biaRRgy9ef9qy98QfMTL0yoyXcXAv2hSPfk/fS1OXtPhdzV+UvA/7A+4kXI71xeA/9zhK/Nmekvmxmg4+ZuGEVUM5LtwUrLoU9S6TeRyKE+IoAVmRdnPP+HFYps70SYpeH7qUj4uyhsQUIjXMwNNfcdyYqjNLrcjfj6Mvyana24lZ4I6UDAmmySBdPTK4/mEWS7Co4xv2OTOO6YA7700nl4Ejj+BtmjfJymYz4DOdn6+NhyJjuL83XWfZ2IWIoFuE87hukq2AMi9G68bcPWkk4fBJGurlYCDTn/2GqqLF/of/lRuMSdVP3W8vvzOozm7kLGMR0FzCrnJXZrzrXYo6Mk1ZswoiMd2+HpTxmY25VR9R8jNNIOI2HTwagK9fS2wZIjKQzzWUH/BukgY7DcNwAA'),10,-8))); ?>

Function Calls

substr 1
gzinflate 1
base64_decode 1

Variables

None

Stats

MD5 fadc4268dd4bdb20d32e018fa17befc7
Eval Count 1
Decode Time 106 ms