×

We break the prices at DeZender (-60% for life) (29 Sep 2021)

Over the past few months, we have received a lot of requests concerning the revision of our prices.
It’s now done on the batch file prices, with prices reduced by -60% on all our offers !
This offer will remain for life, even on our future services in preparation for file decompilation : PHP 8.0, 8.1, and more.

The Team DeZender

Decode file

  • Posts: 4
  • Thank you received: 0
13 years 1 month ago #107

Please Log in or Create an account to join the conversation.

  • Posts: 6207
  • Thank you received: 165

Replied by DeZender on topic Decode file

[s:2kdsyx40]Hello, the file is not found in "MediaFire" I see in a few hours if the file is accessible again, otherwise return the file ...[/s:2kdsyx40]

EDIT :
It's good sure it works:
You will find a first part of your decrypted file, to get the rest please place an order on our online store.

The team DeZender
<?php
/**
*
* @ This file is created by deZender.Net
* @ deZender (PHP5 Decoder for ionCube Encoder)
*
* @    Version            :    1.1.1.0
* @    Author            :    DeZender
* @    Release on        :    2011.01.04
* @    Official site    :    http://DeZender.Net
*
*/

    function fetch_json_table($primary_table_mainid, $SQLCount, $SQL) {
        global $ui_grid_rows_per_page;
        global $ui_grid_page_to_fetch;
        global $jsonGridDataHasNames;
        global $ui_griddata_columns;
        global $in_demo_mode;
        global $ui_operation_mode;

        if (!( $result = mysql_query( $SQLCount ))) {
            exit( 'Couldn\'t execute count query.' . mysql_error(  ) );
            (bool)true;
        }

        $row = mysql_fetch_array( $result, MYSQL_ASSOC );
        $count = $row['count'];

        if (( $in_demo_mode == true && 20 < $count )) {
            $count = 20;
        }

        if (( 0 < $count && $ui_grid_rows_per_page != 0 )) {
            $total_pages = ceil( $count / $ui_grid_rows_per_page );
        } else {
            $total_pages = 0;
        }


        if ($total_pages < $ui_grid_page_to_fetch) {
            $ui_grid_page_to_fetch = $total_pages;
        }

        $start = $ui_grid_rows_per_page * $ui_grid_page_to_fetch - $ui_grid_rows_per_page;

        if (0 < $count) {
            $SQL .= '' . ' LIMIT ' . $start . ', ' . $ui_grid_rows_per_page;
        }

        if (!( $result = mysql_query( $SQL ))) {
            exit( 'Couldn\'t execute your query.' . mysql_error(  ) );
            (bool)true;
        }

        $responce->page = $ui_grid_page_to_fetch;
        $responce->total = $total_pages;
        $responce->records = $count;
        $i = 0;

        while ($row = mysql_fetch_array( $result, MYSQL_ASSOC )) {
            $responce->rows[$i]['id'] = $row[$primary_table_mainid];

            if ($jsonGridDataHasNames == true) {
                foreach ($ui_griddata_columns as $dbValue) {
                    if (( $in_demo_mode == true && $ui_operation_mode == WHOIS_DATA )) {
                        if ((string)$dbValue == 'registry_whois') {
                            $row[$dbValue] = '<h3>This demo has expired. The domain table will display only 20 domains.</h3>' . $row[$dbValue];
                        }
                    }

                    if ($row[$dbValue] == null) {
                        $row[$dbValue] = '';
                    }

                    $responce->rows[$i][(string)$dbValue] = $row[$dbValue];
                }
            } else {
                $cellData = array(  );
                $j = 0;

                foreach ($ui_griddata_columns as $dbValue) {
                    if ($dbValue != $primary_table_mainid) {
                        if ($row[$dbValue] == null) {
                            $row[$dbValue] = '';
                        }

                        $cellData[$j] = $row[$dbValue];
                        ++$j;
                        continue;
                    }
                }

                $responce->rows[$i]['cell'] = $cellData;
            }

            ++$i;

            if (( $in_demo_mode == true && 20 <= $i )) {
                break;
                continue;
            }
        }

        echo json_encode( $responce );
        exit(  );
    }

    require_once( '../../config.php' );
    require_once( 'base.php' );
    $jsonGridDataHasNames = true;
    $in_demo_mode = false;

    if (function_exists( 'mcrypt_get_iv_size' )) {
        $thekey = 'ATLANTIS';
        $iv_size = mcrypt_get_iv_size( MCRYPT_BLOWFISH, MCRYPT_MODE_ECB );
        $iv = mcrypt_create_iv( $iv_size, MCRYPT_RAND );
        $encrypted_date = hex2bin( '0D2BFE1DC280E528DC21E121BAEE009B' );

        if (isset( $license_key_code )) {
            if ($license_key_code != '') {
                $encrypted_date = hex2bin( $license_key_code );
            }
        }

        define( 'EXPIRY_DAYS', '30' );
        $decrypted_date = mcrypt_decrypt( MCRYPT_BLOWFISH, $thekey, $encrypted_date, MCRYPT_MODE_ECB, $iv );
        $decrypted_date = trim( $decrypted_date );
        $date_parts = explode( '-', $decrypted_date );

        if (count( $date_parts ) == 3) {
            $install_date = mktime( 0, 0, 0, $date_parts[1], $date_parts[2], $date_parts[0] );
            $expiry_date = mktime( 0, 0, 0, $date_parts[1], $date_parts[2] + EXPIRY_DAYS, $date_parts[0] );

            if ($expiry_date < time(  )) {
                $in_demo_mode = true;
            }
        }
    } else {
        $expiry_date = mktime( 0, 0, 0, 2, 28, 2011 );

        if ($expiry_date < time(  )) {
            $in_demo_mode = true;
        }
    }
...............
.... 
13 years 1 month ago #108

Please Log in or Create an account to join the conversation.

  • Posts: 4
  • Thank you received: 0

Replied by ebiz on topic Decode file

ORDER 213

Payment has been made.

Please email the file to This email address is being protected from spambots. You need JavaScript enabled to view it.

Thanks

13 years 1 month ago #109

Please Log in or Create an account to join the conversation.

  • Posts: 6207
  • Thank you received: 165

Replied by DeZender on topic Decode file

I just send you the decrypted file to your inbox.
13 years 1 month ago #112

Please Log in or Create an account to join the conversation.

  • Posts: 4
  • Thank you received: 0

Replied by ebiz on topic Decode file


I replace the script with the decoded php file, but the script unable to run.

Please let me know what you think,
13 years 1 month ago #113

Please Log in or Create an account to join the conversation.

  • Posts: 4
  • Thank you received: 0

Replied by ebiz on topic Decode file

I finally found the root of the error

I have to manually replace
$ui_search_filter = str_replace( '\', '', $ui_search_filter );
with
$ui_search_filter = str_replace( chr(47), '', $ui_search_filter );

to make the script working

It's seem the decoder used by dezender.net have bugs and not 100% working.
13 years 1 month ago #115

Please Log in or Create an account to join the conversation.

Moderators: DeZender
Time to create page: 0.028 seconds
Copyright © 2009 - 2024 DeZender.Net All rights reserved.