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 /* DECODED & CRACKED BY KontolKuda17 Lampung, Indonesia */ require ..

Decoded Output download

<?php 
 
/* 
 
DECODED & CRACKED BY KontolKuda17 
Lampung, Indonesia 
 
*/ 
require         'setting/phpmailer/PHPMailerAutoload.php'; 
require         'setting/Gx.settings.php'; 
require         'setting/Gx.function.php'; 
 
 
echo "                               \e[1;4m_________________________\e[0m 
"; 
        echo "\e[91m=============================[\e[0m \e[1;4mIndonesian Cyber Security\e[0m \e[91m]==============================\e[0m"; 
        echo "
"; 
        echo "
"; 
        echo "\e[91m 
"; 
        echo "\e[91m                 
"; 
        echo "\e[38;5;043;1m          
"; 
        echo "\e[38;5;029;1m           
"; 
        echo "\e[38;5;6m           
"; 
        echo "\e[38;5;12m               
"; 
        echo "\e[38;5;3m                  
"; 
        echo " 
"; 
        echo "                                                   
"; 
        echo "                                       
"; 
        echo "                                           
"; 
        echo "                                         
"; 
        echo "                                                   
"; 
        echo " 
"; 
        echo " Token Status : Active !                           
"; 
        echo " Contact      : [email protected]             
"; 
        echo " Rules For Use.....                                
"; 
        echo " If you use more than 2 devices.                   
"; 
        echo " Then the token will in turn off a while.          
"; 
        echo " If more than 3 times then the token will be       
"; 
        echo " DELETED by the Server Sender.                     
"; 
        echo "                                                   
"; 
        echo "    Regard : AndryOfficials and iDevSecurity       
"; 
        echo " 
"; 
echo "                               \e[1;4m_________________________\e[0m 
"; 
        echo "\e[91m=============================[\e[0m \e[1;4mIndonesian Cyber Security\e[0m \e[91m]=============================\e[0m"; 
echo "
"; 
 
 
function Kirim($email, $smtp_acc, $gx_setup) 
{ 
    $smtp           = new SMTP; 
    $smtp->do_debug = 0; 
 
    $smtpserver     = $smtp_acc['host']; 
    $smtpport       = $smtp_acc['port']; 
    $smtpuser       = $smtp_acc['username']; 
    $smtppass       = $smtp_acc['password']; 
    $priority       = $gx_setup['priority']; 
    $userandom      = $gx_setup['userandom']; 
    $sleeptime      = $gx_setup['sleeptime']; 
    $replacement    = $gx_setup['replacement']; 
    $userremoveline = $gx_setup['userremoveline']; 
    $fromname       = $gx_setup['fromname']; 
    $frommail       = $gx_setup['frommail']; 
    $subject        = $gx_setup['subject']; 
    $msgfile        = $gx_setup['msgfile']; 
    $filepdf        = $gx_setup['filesend']; 
    $randurl        = $gx_setup['scampage']; 
 
    if (!$smtp->connect($smtpserver, $smtpport)) { 
        throw new Exception('Connect failed'); 
    } 
 
    //Say hello 
    if (!$smtp->hello(gethostname())) { 
        throw new Exception('EHLO failed: ' . $smtp->getError()['error']); 
    } 
 
    $e = $smtp->getServerExtList(); 
 
    if (array_key_exists('STARTTLS', $e)) { 
        $tlsok = $smtp->startTLS(); 
        if (!$tlsok) { 
            throw new Exception('Failed to start encryption: ' . $smtp->getError()['error']); 
        } 
        if (!$smtp->hello(gethostname())) { 
            throw new Exception('EHLO (2) failed: ' . $smtp->getError()['error']); 
        } 
        $e = $smtp->getServerExtList(); 
    } 
 
    if (array_key_exists('AUTH', $e)) { 
 
        if ($smtp->authenticate($smtpuser, $smtppass)) { 
            $mail           = new PHPMailer; 
            $mail->Encoding = 'base64'; // 8bit base64 multipart/alternative quoted-printable 
            $mail->CharSet  = 'UTF-8'; 
            $mail->headerLine("format", "flowed"); 
            /*  Smtp connect    */ 
            //$mail->addCustomHeader('X-Ebay-Mailtracker', '11400.000.0.0.df812eaca5dd4ebb8aa71380465a8e74'); 
            $mail->IsSMTP(); 
            $mail->SMTPAuth = true; 
            $mail->Host     = $smtpserver; 
            $mail->Port     = $smtpport; 
            $mail->Priority = $priority; 
            $mail->Username = $smtpuser; 
            $mail->Password = $smtppass; 
 
            if ($userandom == 1) { 
                $rand     = rand(1, 50); 
                $fromname = randName($rand); 
                $frommail = randMail($rand); 
                $subject  = randSubject($rand); 
            } 
 
            if ($gx_setup['filesend'] == 0) { 
                $filepdf = file_get_contents($AddAttachment); 
                $mail->AddAttachment($filepdf); 
            } 
 
            $asu       = RandString1(8); 
            $asu1      = RandString(5); 
            $asu2      = RandString1(5); 
            $nmbr      = RandNumber(5); 
            $fromnames = str_replace('##randstring##', $asu1, $fromname); 
            $frommails = str_replace('##randstring##', $asu, $frommail); 
            $subjects  = str_replace('##randstring##', $asu2, $subject); 
 
            $mail->setFrom($frommails, $fromnames); 
 
            $mail->AddAddress($email); 
 
            $mail->Subject = $subjects; 
            if ($replacement == 1) { 
                $msg = lettering($msgfile, $email, $frommail, $fromname, $randurl, $subject); 
            } else { 
                $msg = file_get_contents($msgfile); 
            } 
 
            $mail->msgHTML($msg); 
 
            if (!$mail->send()) { 
                echo "SMTP Error : " . $mail->ErrorInfo; 
                exit(); 
            } else { 
                echo "\e[91m[+] \e[4m"; 
                echo date('h:i:s A'); 
                echo "\e[0m \e[91m[+] \e[0m Send To : $email \e[91m|\e[0m Send From : $smtpuser
"; 
            } 
            $mail->clearAddresses(); 
 
        } else { 
            throw new Exception('Authentication failed: ' . $smtp->getError()['error']); 
        } 
 
        $smtp->quit(true); 
 
    } 
 
} 
 
 
 
    $file = file_get_contents($gx_setup['mail_list']); 
    if ($file) { 
        $ext = preg_split('/
|
?/', $file); 
        echo "\e[38;5;040;1mS\e[38;5;1mT\e[38;5;3mA\e[38;5;2mR\e[38;5;080;1mT\e[38;5;068;1m SPAMMED"; 
        echo "
"; 
        echo "
"; 
        $smtp_key = 0; 
        foreach ($ext as $num => $email) { 
 
            if ($smtp_key == count($smtp_acc)) { 
                $smtp_key = 0; 
            } 
            //kirim 
            Kirim($email, $smtp_acc[$smtp_key], $gx_setup); 
 
            $smtp_key++; 
 
            /// 
            sleep($gx_setup['sleeptime']); 
        } 
        if ($gx_setup['userremoveline'] == 1) { 
            $remove = Removeline($mailist, $email); 
        } 
    } 
 ?>

Did this file decode correctly?

Original Code

<?php

/*

DECODED & CRACKED BY KontolKuda17
Lampung, Indonesia

*/
require         'setting/phpmailer/PHPMailerAutoload.php';
require         'setting/Gx.settings.php';
require         'setting/Gx.function.php';


echo "                               \e[1;4m_________________________\e[0m \r\n";
        echo "\e[91m=============================[\e[0m \e[1;4mIndonesian Cyber Security\e[0m \e[91m]==============================\e[0m";
        echo "\r\n";
        echo "\n";
        echo "\e[91m \r\n";
        echo "\e[91m                 \r\n";
        echo "\e[38;5;043;1m          \r\n";
        echo "\e[38;5;029;1m           \r\n";
        echo "\e[38;5;6m           \r\n";
        echo "\e[38;5;12m               \r\n";
        echo "\e[38;5;3m                  \r\n";
        echo " \r\n";
        echo "                                                   \r\n";
        echo "                                       \r\n";
        echo "                                           \r\n";
        echo "                                         \r\n";
        echo "                                                   \r\n";
        echo " \r\n";
        echo " Token Status : Active !                           \r\n";
        echo " Contact      : [email protected]             \r\n";
        echo " Rules For Use.....                                \r\n";
        echo " If you use more than 2 devices.                   \r\n";
        echo " Then the token will in turn off a while.          \r\n";
        echo " If more than 3 times then the token will be       \r\n";
        echo " DELETED by the Server Sender.                     \r\n";
        echo "                                                   \r\n";
        echo "    Regard : AndryOfficials and iDevSecurity       \r\n";
        echo " \r\n";
echo "                               \e[1;4m_________________________\e[0m \r\n";
        echo "\e[91m=============================[\e[0m \e[1;4mIndonesian Cyber Security\e[0m \e[91m]=============================\e[0m";
echo "\r\n";


function Kirim($email, $smtp_acc, $gx_setup)
{
    $smtp           = new SMTP;
    $smtp->do_debug = 0;

    $smtpserver     = $smtp_acc['host'];
    $smtpport       = $smtp_acc['port'];
    $smtpuser       = $smtp_acc['username'];
    $smtppass       = $smtp_acc['password'];
    $priority       = $gx_setup['priority'];
    $userandom      = $gx_setup['userandom'];
    $sleeptime      = $gx_setup['sleeptime'];
    $replacement    = $gx_setup['replacement'];
    $userremoveline = $gx_setup['userremoveline'];
    $fromname       = $gx_setup['fromname'];
    $frommail       = $gx_setup['frommail'];
    $subject        = $gx_setup['subject'];
    $msgfile        = $gx_setup['msgfile'];
    $filepdf        = $gx_setup['filesend'];
    $randurl        = $gx_setup['scampage'];

    if (!$smtp->connect($smtpserver, $smtpport)) {
        throw new Exception('Connect failed');
    }

    //Say hello
    if (!$smtp->hello(gethostname())) {
        throw new Exception('EHLO failed: ' . $smtp->getError()['error']);
    }

    $e = $smtp->getServerExtList();

    if (array_key_exists('STARTTLS', $e)) {
        $tlsok = $smtp->startTLS();
        if (!$tlsok) {
            throw new Exception('Failed to start encryption: ' . $smtp->getError()['error']);
        }
        if (!$smtp->hello(gethostname())) {
            throw new Exception('EHLO (2) failed: ' . $smtp->getError()['error']);
        }
        $e = $smtp->getServerExtList();
    }

    if (array_key_exists('AUTH', $e)) {

        if ($smtp->authenticate($smtpuser, $smtppass)) {
            $mail           = new PHPMailer;
            $mail->Encoding = 'base64'; // 8bit base64 multipart/alternative quoted-printable
            $mail->CharSet  = 'UTF-8';
            $mail->headerLine("format", "flowed");
            /*  Smtp connect    */
            //$mail->addCustomHeader('X-Ebay-Mailtracker', '11400.000.0.0.df812eaca5dd4ebb8aa71380465a8e74');
            $mail->IsSMTP();
            $mail->SMTPAuth = true;
            $mail->Host     = $smtpserver;
            $mail->Port     = $smtpport;
            $mail->Priority = $priority;
            $mail->Username = $smtpuser;
            $mail->Password = $smtppass;

            if ($userandom == 1) {
                $rand     = rand(1, 50);
                $fromname = randName($rand);
                $frommail = randMail($rand);
                $subject  = randSubject($rand);
            }

            if ($gx_setup['filesend'] == 0) {
                $filepdf = file_get_contents($AddAttachment);
                $mail->AddAttachment($filepdf);
            }

            $asu       = RandString1(8);
            $asu1      = RandString(5);
            $asu2      = RandString1(5);
            $nmbr      = RandNumber(5);
            $fromnames = str_replace('##randstring##', $asu1, $fromname);
            $frommails = str_replace('##randstring##', $asu, $frommail);
            $subjects  = str_replace('##randstring##', $asu2, $subject);

            $mail->setFrom($frommails, $fromnames);

            $mail->AddAddress($email);

            $mail->Subject = $subjects;
            if ($replacement == 1) {
                $msg = lettering($msgfile, $email, $frommail, $fromname, $randurl, $subject);
            } else {
                $msg = file_get_contents($msgfile);
            }

            $mail->msgHTML($msg);

            if (!$mail->send()) {
                echo "SMTP Error : " . $mail->ErrorInfo;
                exit();
            } else {
                echo "\e[91m[+] \e[4m";
                echo date('h:i:s A');
                echo "\e[0m \e[91m[+] \e[0m Send To : $email \e[91m|\e[0m Send From : $smtpuser\n";
            }
            $mail->clearAddresses();

        } else {
            throw new Exception('Authentication failed: ' . $smtp->getError()['error']);
        }

        $smtp->quit(true);

    }

}



    $file = file_get_contents($gx_setup['mail_list']);
    if ($file) {
        $ext = preg_split('/\n|\r\n?/', $file);
        echo "\e[38;5;040;1mS\e[38;5;1mT\e[38;5;3mA\e[38;5;2mR\e[38;5;080;1mT\e[38;5;068;1m SPAMMED";
        echo "\r\n";
        echo "\n";
        $smtp_key = 0;
        foreach ($ext as $num => $email) {

            if ($smtp_key == count($smtp_acc)) {
                $smtp_key = 0;
            }
            //kirim
            Kirim($email, $smtp_acc[$smtp_key], $gx_setup);

            $smtp_key++;

            ///
            sleep($gx_setup['sleeptime']);
        }
        if ($gx_setup['userremoveline'] == 1) {
            $remove = Removeline($mailist, $email);
        }
    }

Function Calls

None

Variables

None

Stats

MD5 988ca1f185b06a122acd8ad713d3af16
Eval Count 0
Decode Time 113 ms