Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 3.0.8.0
- * @ Author : DeZender
- * @ Release on : 25.09.2017
- * @ Official site : http://DeZender.Net
- *
- */
- if (!(defined( 'ABSPATH' ))) {
- exit( 'لطفآً از اجرای مستقیم این فایل خودداری نمایید!' );
- }
- if (!(defined( 'RTL_ENCRYPTION_KEY' ))) {
- define( 'RTL_ENCRYPTION_KEY', 'd0a7e7997b6d5fcd55f4b5c32611b87a' );
- }
- if (!(function_exists( 'mc_encrypt' ))) {
- function mc_encrypt($encrypt, $key)
- {
- $encrypt = serialize( $encrypt );
- $iv = mcrypt_create_iv( mcrypt_get_iv_size( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_CBC ), MCRYPT_DEV_URANDOM );
- $key = pack( 'H*', $key );
- $mac = hash_hmac( 'sha256', $encrypt, substr( bin2hex( $key ), -32 ) );
- $passcrypt = mcrypt_encrypt( MCRYPT_RIJNDAEL_256, $key, $encrypt . $mac, MCRYPT_MODE_CBC, $iv );
- $encoded = base64_encode( $passcrypt ) . '|' . base64_encode( $iv );
- return $encoded;
- }
- }
- if (!(function_exists( 'mc_decrypt' ))) {
- function mc_decrypt($decrypt, $key)
- ....................................................
- .............................
- .........
Advertisement
Add Comment
Please, Sign In to add comment