Вход Регистрация
Файл: online_paypal.php
Строк: 117
<?
$full_home_path 
dirname(__FILE__);
require_once(
$full_home_path."/_rootload.php");

$input '';
$post_string '';
foreach (
$_POST as $field=>$value) { 
    
$input .= $field." ".$value."n";
    
$post_string .= $field.'='.urlencode(htmlDecode($value)).'&'
}
$post_string.="cmd=_notify-validate";
$input "Входящие параметры:nn$input";

if (
getenv("REQUEST_METHOD") != "POST") {
    
mconnect();

    
$manager_email=GetSetting('manager_email');

    
$msg "С IP-адреса $ip произошло обращение к скрипту online_paypal.php по GET-протоколу.nnБудьте внимательны, т.к. возможно кто-то пытается взломать систему.nn$inputnn--nRootPanel";
    
$subject "Возможная попытка взлома билинга [PayPal]";

    
$admEmails=GetAdminEmailsWhereTrueParam("senderror");
    if (
count($admEmails) > 0) {
        
WriteMailLog($subject,$msg);
    }
    while (list(
$i,$em) = @each($admEmails)) {
        
sendmail($em,'',$manager_email,$subject,$msg);
    }

    
mclose();
    exit; 
}

if (
$business) {
    
mconnect();
    
EnableLanguages();

    
$bill GetBillById(intval($item_number));
    
$payy GetPaymentSystemById($bill->paymentSystemId);

    
###
    
$merchantCurrency $payy->currency; if (!$merchantCurrency) {$merchantCurrency="USD";}
    
$bill->merchantmoney = ($bill->money_host+$bill->money_domain+$bill->money_addons+$bill->money_shop+$bill->money) * GetCurrencyKoeficientByCode($merchantCurrency);
    
$bill->merchantmoney $bill->merchantmoney + ($bill->merchantmoney/100)*$payy->small1$bill->merchantmoney round($bill->merchantmoney,2);
    
###


    
if (!$item_number) { $error_msg "Отсутствует номер счета биллинг-системы."; }
    else if (!
$bill->id) { $error_msg "Счет # $BILL_ID не найден."; }
    else if (
floatval($payment_gross) < $bill->merchantmoney and floatval($mc_gross) < $bill->merchantmoney) { $error_msg "Неправильная сумма оплаты. Сумма счета в биллинге $bill->merchantmoney."; }
    else if (
$business != $payy->text1) { $error_msg "Неправильный e-mail продавца."; }
    else if (
$receiver_email != $payy->text1) { $error_msg "Неправильный e-mail получателя платежа."; }
    else if (
$payment_status != "Completed") { $error_msg "Неправильный статус платежа."; }
    else {
        
$fp curl_init(); 
        
curl_setopt($fpCURLOPT_URL"https://www.paypal.com/cgi-bin/webscr");
#        curl_setopt($fp, CURLOPT_URL, "https://www.sandbox.paypal.com/cgi-bin/webscr");
        
curl_setopt($fpCURLOPT_SSL_VERIFYPEER0);
        
curl_setopt($fpCURLOPT_SSL_VERIFYHOST0);
        
curl_setopt($fpCURL_HTTP_VERSION_1_11);
        
curl_setopt($fpCURLOPT_POST1);
        
curl_setopt($fpCURLOPT_POSTFIELDS$post_string);
        
curl_setopt($fpCURLOPT_FAILONERROR0); 
        
curl_setopt($fpCURLOPT_RETURNTRANSFER,1);
        
curl_setopt($fpCURLOPT_TIMEOUT120);
        
$result curl_exec($fp);
        
curl_close($fp);  

        if (
preg_match("/VERIFIED/ui",$result)) {
            
MakeBillPayed($bill->id,1,"PayPal ($payer_email)");
            
mclose();
            exit;
        } else {
            
$error_msg "Не удалось верифицировать платёж.";
        }
    }

    
$manager_email=GetSetting('manager_email');

    
$msg "Автоматическая оплата через PayPal отклонена биллинг-системой по причине:nn$error_msgnn$inputnnpost string:n$post_stringnnIP$ipnn--nRootPanel";
    
$subject "Ошибка автоматической оплаты [PayPal]";

    
$admEmails=GetAdminEmailsWhereTrueParam("senderror");
    if (
count($admEmails) > 0) {
        
WriteMailLog($subject,$msg);
    }
    while (list(
$i,$em) = @each($admEmails)) {
        
sendmail($em,'',$manager_email,$subject,$msg);
    }
    
mclose();
}

?>
Онлайн: 1
Реклама