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 /** * @ ioncube decoder php 7 * @ This file decoded by https://www.unphp.org */ ..

Decoded Output download

<?php 
/** 
* @ ioncube decoder php 7 
* @ This file decoded by https://www.unphp.org 
*/ 
 
function generator($ig, $climate) 
{ 
	$climate->backgroundBlueWhite('Hypervote Config Generator is Starting... '); 
	$climate->out(''); 
	sleep(2); 
	$climate->out('Please provide a valid license key from your Dashboard on Hypervoter.com (https://hypervoter.com).'); 
	sleep(1); 
	$climate->out('Example: j5tkjkl4f7e595e9008bb77acc599453'); 
	$license_key = getVarFromUser('License key'); 
 
	if (empty($license_key)) { 
		do { 
			$license_key = getVarFromUser('License key'); 
		} while (empty($license_key)); 
	} 
 
	$license_key = str_replace(' ', '', $license_key); 
	$license_status = activate_license($license_key, $ig, $climate); 
 
	if ('valid' === $license_status) { 
		$climate->out('You license active and valid. Processing...'); 
	} 
	else { 
		$climate->out('You license key not valid.'); 
	} 
...................................... 
...................... 
............ 
.......... ?>

Did this file decode correctly?

Original Code

<?php
/**
* @ ioncube decoder php 7
* @ This file decoded by https://www.unphp.org
*/

function generator($ig, $climate)
{
	$climate->backgroundBlueWhite('Hypervote Config Generator is Starting... ');
	$climate->out('');
	sleep(2);
	$climate->out('Please provide a valid license key from your Dashboard on Hypervoter.com (https://hypervoter.com).');
	sleep(1);
	$climate->out('Example: j5tkjkl4f7e595e9008bb77acc599453');
	$license_key = getVarFromUser('License key');

	if (empty($license_key)) {
		do {
			$license_key = getVarFromUser('License key');
		} while (empty($license_key));
	}

	$license_key = str_replace(' ', '', $license_key);
	$license_status = activate_license($license_key, $ig, $climate);

	if ('valid' === $license_status) {
		$climate->out('You license active and valid. Processing...');
	}
	else {
		$climate->out('You license key not valid.');
	}
......................................
......................
............
..........

Function Calls

None

Variables

None

Stats

MD5 880c22396d87b7229f6d2f4c93e494c4
Eval Count 0
Decode Time 80 ms