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 require_once("../include/nav_menu.php"); ?> <body cla..

Decoded Output download

<?php 
 
require_once("../include/nav_menu.php"); 
?> 
 
 
                      <body class="vertical-layout" data-color="bg-gradient-x-purple-red">    
    <div class="app-content content"> 
      <div class="content-wrapper"> 
        <div class="content-wrapper-before mb-3">        	 
        </div>         
  <div class="content-body"> 
  	<div class="mt-2"></div> 
	<div class="row"> 
		<div class="col-md-8"> 
			<div class="card"> 
				<div class="card-body text-center"> 
				     
                                         
                                         
					<h4 class="mb-2"><strong>CHECKER ALLBINS | AMAZON US </strong></h4> 
				 
					Testador custando:      <code>R$1,00 a cada live</code> 
						<br> 
							<br> 
					<textarea rows="6" class="form-control text-center form-checker mb-2" placeholder="Insira sua Lista"></textarea>	 
							<br> 
					 
 
          <input type="text" class="form-control" id="cookie1" placeholder="Cookie Amazon Pay " name="cookie1">&nbsp;        
          
                 		<br> 
                 		 <input type="text" placeholder="Insira seu ID do telegram para receber suas lives @veiledinfobot (opcional)" class="form-control" id="id_telegram"> 
                 	<br> 
					<button class="btn btn-success btn-play text-white" style="width: 49%; float: left;"><i class="fa fa-play"></i> INICIAR</button> 
					<button class="btn btn-danger btn-stop text-white" style="width: 49%; float: right;" disabled><i class="fa fa-stop"></i> PARAR</button> 
				</div> 
			</div> 
		</div> 
                             
                            <div class="col-md-4"> 
  <div class="card mb-2"> 
  	<div class="card-body"> 
<h5>Aprovadas:<span class="badge badge-success float-right aprovadas">0</span></h5><hr> 
 
<h5>Reprovadas:<span class="badge badge-danger float-right reprovadas">0</span></h5><hr> 
 
<h5>Testadas:<span class="badge badge-info float-right testadas">0</span></h5><hr> 
 
<h5>Carregadas:<span class="badge badge-primary float-right carregadas">0</span></h5><hr> 
 
<h5>Creditos:<span class="badge badge-primary float-right saldo">0</span></h5><hr> 
 
 
 
                  </div>  
                </div> 
              </div> 
             
		<div class="col-xl-12"> 
			<div class="card"> 
				<div class="card-body"> 
					<div class="float-right"> 
						<button type="show" class="btn btn-primary btn-sm show-lives"><i class="fa fa-eye-slash"></i></button> 
					<button class="btn btn-success btn-sm btn-copy"><i class="fa fa-copy"></i></button>					 
					</div> 
					<h4 class="card-title mb-1"><i class="fa fa-check text-success"></i> Aprovadas</h4>					 
			<div id='lista_aprovadas'></div> 
				</div>				 
			</div> 
		</div> 
		<div class="col-xl-12"> 
			<div class="card"> 
				<div class="card-body"> 
					<div class="float-right"> 
						<button type='hidden' class="btn btn-primary btn-sm show-dies"><i class="fa fa-eye"></i></button> 
					<button class="btn btn-danger btn-sm btn-trash"><i class="fa fa-trash"></i></button>					 
					</div> 
					<h4 class="card-title mb-1"><i class="fa fa-times text-danger"></i> Reprovadas</h4>		 
						<div style='display: none;' id='lista_reprovadas'></div> 
				</div>				 
			</div> 
		</div> 
</section> 
        </div> 
      </div> 
    </div> 
     
<script src="../css/jquery.min.js" type="text/javascript"></script> 
 
<script> 
 
    var notyf = new Notyf({ 
        duration: 3000, 
        position: { 
            x: 'right', 
            y: 'top', 
        }, 
    }); 
    $(document).ready(function(){ 
 
    notyf.success("<b>Limite mximo de 200 linhas.</b>") 
getSaldo(); 
 
var audio = new Audio('live.mp3'); 
var inicio = new Audio('ext.mp3'); 
 
$('.show-lives').click(function(){ 
var type = $('.show-lives').attr('type'); 
$('#lista_aprovadas').slideToggle(); 
if(type == 'show'){ 
$('.show-lives').html('<i class="fa fa-eye"></i>'); 
$('.show-lives').attr('type', 'hidden'); 
}else{ 
$('.show-lives').html('<i class="fa fa-eye-slash"></i>'); 
$('.show-lives').attr('type', 'show'); 
}}); 
 
$('.show-dies').click(function(){ 
var type = $('.show-dies').attr('type'); 
$('#lista_reprovadas').slideToggle(); 
if(type == 'show'){ 
$('.show-dies').html('<i class="fa fa-eye"></i>'); 
$('.show-dies').attr('type', 'hidden'); 
}else{ 
$('.show-dies').html('<i class="fa fa-eye-slash"></i>'); 
$('.show-dies').attr('type', 'show'); 
}}); 
 
$('.btn-trash').click(function(){ 
  Swal.fire({title: 'Lista de Reprovadas Limpa!', icon: 'success', showConfirmButton: false, toast: true, position: 'top-end', timer: 3000}); 
$('#lista_reprovadas').text(''); 
}); 
 
$('.btn-copy').click(function(){ 
  Swal.fire({title: 'Lista de Aprovadas Copiada!', icon: 'success', showConfirmButton: false, toast: true, position: 'top-end', timer: 3000}); 
var lista_lives = document.getElementById('lista_aprovadas').innerText; 
var textarea = document.createElement("textarea"); 
textarea.value = lista_lives; 
document.body.appendChild(textarea);  
textarea.select();  
document.execCommand('copy');           document.body.removeChild(textarea);  
}); 
 
 
   $('.btn-play').click(function() { 
      inicio.play(); 
      var lista = $('.form-checker').val().trim(); 
      var array = lista.split('
'); 
      var cookie1 = document.getElementById("cookie1").value; 
     var id_telegram = document.getElementById("id_telegram").value;  
      var lives = 0, 
        dies = 0, 
        testadas = 0, 
        txt = ''; 
 
      if (!lista) { 
        Swal.fire({ 
          title: 'Erro: Lista Vazia!', 
          icon: 'error', 
          showConfirmButton: false, 
          toast: true, 
          position: 'top-end', 
          timer: 3000 
        }); 
        return false; 
      } 
 
           if (!cookie1) { 
        Swal.fire({ 
          title: 'Erro: Adicione os cookies!', 
          icon: 'error', 
          showConfirmButton: false, 
          toast: true, 
          position: 'top-end', 
          timer: 3000 
        }); 
        return false; 
      } 
 
      Swal.fire({ 
        title: 'Teste Iniciado!', 
        icon: 'success', 
        showConfirmButton: false, 
        toast: true, 
        position: 'top-end', 
        timer: 3000 
      }); 
 
      var line = array.filter(function(value) { 
        if (value.trim() !== "") { 
          txt += value.trim() + '
'; 
          return value.trim(); 
        } 
      }); 
 
      var total = line.length; 
      var token = $('#token').val(); 
 
      $('.form-checker').val(txt.trim()); 
 
      if (total > 200) { 
        Swal.fire({ 
          title: 'Limite de 200 Linhas Exedido!', 
          icon: 'warning', 
          showConfirmButton: false, 
          toast: true, 
          position: 'top-end', 
          timer: 3000 
        }); 
        return false; 
      } 
 
      $('.carregadas').text(total); 
      $('.btn-play').attr('disabled', true); 
      $('.btn-stop').attr('disabled', false); 
     
      function processLine(index) { 
        if (index >= total) { 
          Swal.fire({ 
            title: 'Teste Finalizado!', 
            icon: 'success', 
            showConfirmButton: false, 
            toast: true, 
            position: 'top-end', 
            timer: 3000 
          }); 
          $('.btn-play').attr('disabled', false); 
          $('.btn-stop').attr('disabled', true); 
          return; 
        } 
 
        var data = line[index]; 
        var callBack = $.ajax({ 
          url: 'amazonus.php?lista=' + data + '&token=' + token, 
            type: "POST", 
  data: { 
    'lista': data,  
    'cookie1': cookie1,  
    'id_telegram': id_telegram, 
}, 
          success: function(retorno) { 
            if (retorno.indexOf("Aprovada") >= 0) { 
              Swal.fire({ 
                title: '+1 Aprovada!', 
                icon: 'success', 
                showConfirmButton: false, 
                toast: true, 
                position: 'top-end', 
                timer: 3000 
              }); 
              $('#lista_aprovadas').append(retorno); 
                
              removelinha(); 
              getSaldo(); 
              lives = lives + 1; 
        audio.play(); 
            } else { 
              $('#lista_reprovadas').append(retorno); 
              removelinha(); 
              dies = dies + 1; 
            } 
            testadas = lives + dies; 
            $('.aprovadas').text(lives); 
            $('.reprovadas').text(dies); 
            $('.testadas').text(testadas); 
 
            setTimeout(function() { 
              processLine(index + 1); // Chamada recursiva para a prxima linha aps um pequeno atraso 
            }, 150); // Ajuste o valor do atraso (em milissegundos) conforme necessrio 
          } 
        }); 
 
        $('.btn-stop').click(function() { 
          Swal.fire({ 
            title: 'Teste Parado!', 
            icon: 'warning', 
            showConfirmButton: false, 
            toast: true, 
            position: 'top-end', 
            timer: 3000 
          }); 
          $('.btn-play').attr('disabled', false); 
          $('.btn-stop').attr('disabled', true); 
          callBack.abort(); 
          return false; 
        }); 
      } 
 
      processLine(0); // Inicia o processamento da primeira linha 
    }); 
 
    function removelinha() { 
      var lines = $('.form-checker').val().split('
'); 
      lines.splice(0, 1); 
      $('.form-checker').val(lines.join("
")); 
    } 
 
    function getSaldo() { 
      $.get('getSaldo.php', function(saldo) { 
        $('.saldo').text(saldo); 
      }); 
    } 
  }); 
   
	 
</script> 
  
 
 
 
    <script src="../js/global.js"></script> 
 
    <script src="../vendor/waves/waves.min.js"></script> 
 
    <script src="../js/scripts.js"></script> 
  </body> 
</html>

Did this file decode correctly?

Original Code

<?php

require_once("../include/nav_menu.php");
?>


                      <body class="vertical-layout" data-color="bg-gradient-x-purple-red">   
    <div class="app-content content">
      <div class="content-wrapper">
        <div class="content-wrapper-before mb-3">        	
        </div>        
  <div class="content-body">
  	<div class="mt-2"></div>
	<div class="row">
		<div class="col-md-8">
			<div class="card">
				<div class="card-body text-center">
				    
                                        
                                        
					<h4 class="mb-2"><strong>CHECKER ALLBINS | AMAZON US </strong></h4>
				
					Testador custando:      <code>R$1,00 a cada live</code>
						<br>
							<br>
					<textarea rows="6" class="form-control text-center form-checker mb-2" placeholder="Insira sua Lista"></textarea>	
							<br>
					

          <input type="text" class="form-control" id="cookie1" placeholder="Cookie Amazon Pay " name="cookie1">&nbsp;       
         
                 		<br>
                 		 <input type="text" placeholder="Insira seu ID do telegram para receber suas lives @veiledinfobot (opcional)" class="form-control" id="id_telegram">
                 	<br>
					<button class="btn btn-success btn-play text-white" style="width: 49%; float: left;"><i class="fa fa-play"></i> INICIAR</button>
					<button class="btn btn-danger btn-stop text-white" style="width: 49%; float: right;" disabled><i class="fa fa-stop"></i> PARAR</button>
				</div>
			</div>
		</div>
                            
                            <div class="col-md-4">
  <div class="card mb-2">
  	<div class="card-body">
<h5>Aprovadas:<span class="badge badge-success float-right aprovadas">0</span></h5><hr>

<h5>Reprovadas:<span class="badge badge-danger float-right reprovadas">0</span></h5><hr>

<h5>Testadas:<span class="badge badge-info float-right testadas">0</span></h5><hr>

<h5>Carregadas:<span class="badge badge-primary float-right carregadas">0</span></h5><hr>

<h5>Creditos:<span class="badge badge-primary float-right saldo">0</span></h5><hr>



                  </div> 
                </div>
              </div>
            
		<div class="col-xl-12">
			<div class="card">
				<div class="card-body">
					<div class="float-right">
						<button type="show" class="btn btn-primary btn-sm show-lives"><i class="fa fa-eye-slash"></i></button>
					<button class="btn btn-success btn-sm btn-copy"><i class="fa fa-copy"></i></button>					
					</div>
					<h4 class="card-title mb-1"><i class="fa fa-check text-success"></i> Aprovadas</h4>					
			<div id='lista_aprovadas'></div>
				</div>				
			</div>
		</div>
		<div class="col-xl-12">
			<div class="card">
				<div class="card-body">
					<div class="float-right">
						<button type='hidden' class="btn btn-primary btn-sm show-dies"><i class="fa fa-eye"></i></button>
					<button class="btn btn-danger btn-sm btn-trash"><i class="fa fa-trash"></i></button>					
					</div>
					<h4 class="card-title mb-1"><i class="fa fa-times text-danger"></i> Reprovadas</h4>		
						<div style='display: none;' id='lista_reprovadas'></div>
				</div>				
			</div>
		</div>
</section>
        </div>
      </div>
    </div>
    
<script src="../css/jquery.min.js" type="text/javascript"></script>

<script>

    var notyf = new Notyf({
        duration: 3000,
        position: {
            x: 'right',
            y: 'top',
        },
    });
    $(document).ready(function(){

    notyf.success("<b>Limite mximo de 200 linhas.</b>")
getSaldo();

var audio = new Audio('live.mp3');
var inicio = new Audio('ext.mp3');

$('.show-lives').click(function(){
var type = $('.show-lives').attr('type');
$('#lista_aprovadas').slideToggle();
if(type == 'show'){
$('.show-lives').html('<i class="fa fa-eye"></i>');
$('.show-lives').attr('type', 'hidden');
}else{
$('.show-lives').html('<i class="fa fa-eye-slash"></i>');
$('.show-lives').attr('type', 'show');
}});

$('.show-dies').click(function(){
var type = $('.show-dies').attr('type');
$('#lista_reprovadas').slideToggle();
if(type == 'show'){
$('.show-dies').html('<i class="fa fa-eye"></i>');
$('.show-dies').attr('type', 'hidden');
}else{
$('.show-dies').html('<i class="fa fa-eye-slash"></i>');
$('.show-dies').attr('type', 'show');
}});

$('.btn-trash').click(function(){
  Swal.fire({title: 'Lista de Reprovadas Limpa!', icon: 'success', showConfirmButton: false, toast: true, position: 'top-end', timer: 3000});
$('#lista_reprovadas').text('');
});

$('.btn-copy').click(function(){
  Swal.fire({title: 'Lista de Aprovadas Copiada!', icon: 'success', showConfirmButton: false, toast: true, position: 'top-end', timer: 3000});
var lista_lives = document.getElementById('lista_aprovadas').innerText;
var textarea = document.createElement("textarea");
textarea.value = lista_lives;
document.body.appendChild(textarea); 
textarea.select(); 
document.execCommand('copy');           document.body.removeChild(textarea); 
});


   $('.btn-play').click(function() {
      inicio.play();
      var lista = $('.form-checker').val().trim();
      var array = lista.split('\n');
      var cookie1 = document.getElementById("cookie1").value;
     var id_telegram = document.getElementById("id_telegram").value; 
      var lives = 0,
        dies = 0,
        testadas = 0,
        txt = '';

      if (!lista) {
        Swal.fire({
          title: 'Erro: Lista Vazia!',
          icon: 'error',
          showConfirmButton: false,
          toast: true,
          position: 'top-end',
          timer: 3000
        });
        return false;
      }

           if (!cookie1) {
        Swal.fire({
          title: 'Erro: Adicione os cookies!',
          icon: 'error',
          showConfirmButton: false,
          toast: true,
          position: 'top-end',
          timer: 3000
        });
        return false;
      }

      Swal.fire({
        title: 'Teste Iniciado!',
        icon: 'success',
        showConfirmButton: false,
        toast: true,
        position: 'top-end',
        timer: 3000
      });

      var line = array.filter(function(value) {
        if (value.trim() !== "") {
          txt += value.trim() + '\n';
          return value.trim();
        }
      });

      var total = line.length;
      var token = $('#token').val();

      $('.form-checker').val(txt.trim());

      if (total > 200) {
        Swal.fire({
          title: 'Limite de 200 Linhas Exedido!',
          icon: 'warning',
          showConfirmButton: false,
          toast: true,
          position: 'top-end',
          timer: 3000
        });
        return false;
      }

      $('.carregadas').text(total);
      $('.btn-play').attr('disabled', true);
      $('.btn-stop').attr('disabled', false);
    
      function processLine(index) {
        if (index >= total) {
          Swal.fire({
            title: 'Teste Finalizado!',
            icon: 'success',
            showConfirmButton: false,
            toast: true,
            position: 'top-end',
            timer: 3000
          });
          $('.btn-play').attr('disabled', false);
          $('.btn-stop').attr('disabled', true);
          return;
        }

        var data = line[index];
        var callBack = $.ajax({
          url: 'amazonus.php?lista=' + data + '&token=' + token,
            type: "POST",
  data: {
    'lista': data, 
    'cookie1': cookie1, 
    'id_telegram': id_telegram,
},
          success: function(retorno) {
            if (retorno.indexOf("Aprovada") >= 0) {
              Swal.fire({
                title: '+1 Aprovada!',
                icon: 'success',
                showConfirmButton: false,
                toast: true,
                position: 'top-end',
                timer: 3000
              });
              $('#lista_aprovadas').append(retorno);
               
              removelinha();
              getSaldo();
              lives = lives + 1;
        audio.play();
            } else {
              $('#lista_reprovadas').append(retorno);
              removelinha();
              dies = dies + 1;
            }
            testadas = lives + dies;
            $('.aprovadas').text(lives);
            $('.reprovadas').text(dies);
            $('.testadas').text(testadas);

            setTimeout(function() {
              processLine(index + 1); // Chamada recursiva para a prxima linha aps um pequeno atraso
            }, 150); // Ajuste o valor do atraso (em milissegundos) conforme necessrio
          }
        });

        $('.btn-stop').click(function() {
          Swal.fire({
            title: 'Teste Parado!',
            icon: 'warning',
            showConfirmButton: false,
            toast: true,
            position: 'top-end',
            timer: 3000
          });
          $('.btn-play').attr('disabled', false);
          $('.btn-stop').attr('disabled', true);
          callBack.abort();
          return false;
        });
      }

      processLine(0); // Inicia o processamento da primeira linha
    });

    function removelinha() {
      var lines = $('.form-checker').val().split('\n');
      lines.splice(0, 1);
      $('.form-checker').val(lines.join("\n"));
    }

    function getSaldo() {
      $.get('getSaldo.php', function(saldo) {
        $('.saldo').text(saldo);
      });
    }
  });
  
	
</script>
 



    <script src="../js/global.js"></script>

    <script src="../vendor/waves/waves.min.js"></script>

    <script src="../js/scripts.js"></script>
  </body>
</html>

Function Calls

None

Variables

None

Stats

MD5 bacc5b0765490c86409cb03f5b281e94
Eval Count 0
Decode Time 47 ms