!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/sms.picotech.app/public_html/storage/framework/views/   drwxrwxrwx
Free 28.35 GB of 117.98 GB (24.03%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     9ee43e8cfc4f29fa44797e5301a921a9.php (6.31 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> Admin Login <?php $__env->stopSection(); ?>

<?php $__env->startSection('extra-css'); ?>
    <style>
        .get-otp button{
            border-radius: 0 !important;
            height: calc(2.25rem + 2px) !important;
        }
    </style>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
    <div class="card-body login-card-body">
        <p class="login-box-msg"><?php echo app('translator')->get('auth.login.title'); ?></p>

        <form action="<?php echo e(route('admin.authenticate')); ?>" method="post">
            <?php echo csrf_field(); ?>
            <div class="input-group mb-3">
                <input id="email" name="email" type="email" class="form-control" placeholder="<?php echo app('translator')->get('auth.login.form.email'); ?>"
                       id="email">
                <div class="input-group-append">
                    <div class="input-group-text">
                        <span class="fas fa-envelope"></span>
                    </div>
                </div>
                <?php if(!env('APP_DEMO')): ?>
                    <?php if($otp_setting == 'enable'): ?>
                        <div class="get-otp text-right">
                            <button type="button" class="btn btn-primary sendVerificationCode"><?php echo app('translator')->get('Get OTP'); ?></button>
                        </div>
                    <?php endif; ?>
                <?php endif; ?>
            </div>
            <?php if(!env('APP_DEMO')): ?>
            <?php if($otp_setting == 'enable'): ?>
            <div class="input-group mb-3">
                <input name="otp" type="text" class="form-control"
                       placeholder="<?php echo app('translator')->get('Enter OTP'); ?>" id="otp_code">
                <div class="input-group-append">
                    <div class="input-group-text">
                        <span class="fas fa-key"></span>
                    </div>
                </div>
            </div>
            <?php endif; ?>
            <?php endif; ?>
            <div class="input-group mb-3">
                <input name="password" type="password" class="form-control"
                       placeholder="<?php echo app('translator')->get('auth.login.form.password'); ?>" id="password">
                <div class="input-group-append">
                    <div class="input-group-text">
                        <span class="fas fa-lock"></span>
                    </div>
                </div>
            </div>
            <div class="row">
                <div class="col-lg-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>

                
                <?php if($otp_setting == 'enable' && !env('APP_DEMO')): ?>
                <button id="login-button"  class="btn btn-primary btn-block mb-2 login-button"><?php echo app('translator')->get('auth.form.button.sign_in'); ?></button>
                <?php else: ?>
                <button id="login-button"  class="btn btn-primary btn-block mb-2"><?php echo app('translator')->get('auth.form.button.sign_in'); ?></button>
                <?php endif; ?>
                <!-- /.col -->
            </div>
        </form>

        <!-- /.social-auth-links -->

        <p class="mb-1">
            <a href="<?php echo e(route('admin.password.request')); ?>"><?php echo app('translator')->get('auth.form.forget_password'); ?></a>
        </p>
    </div>

<?php $__env->stopSection(); ?>
<?php $__env
->startSection('extra-script'); ?>
    <script src="<?php echo e(asset('plugins/datatables/jquery.dataTables.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/datatables-responsive/js/dataTables.responsive.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/datatables-responsive/js/responsive.bootstrap4.min.js')); ?>"></script>
    <script src="<?php echo e(asset('js/readmore.min.js')); ?>"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>

    <script>
        $(document).on('click', '.sendVerificationCode', function (e) {
            e.preventDefault();

            const email = $('#email').val();

            if (!email) {
                toastr.error('Please enter a valid email address', 'Filed!');
                return;
            }

            $('.sendVerificationCode').addClass('disabled');

            $.ajax({
                type: 'POST',
                url: '<?php echo e(route('admin.sendOtp')); ?>',
                data: {
                    email: email, '_token': '<?php echo e(csrf_token()); ?>'
                },

                success: function (res) {
                    if (res.status == 'success') {
                        toastr.success(res.message, 'Success!');

                        $('.sendVerificationCode').removeClass('disabled').html(`<i class="fas fa-sync mr-1"></i> Resend`);
                    } else {
                        toastr.error(res.message, 'Failed!');

                        $('.sendVerificationCode').removeClass('disabled').html(`Get Code`);
                    }
                }
            })
        });
        $(document).on('click', '.login-button', function (e) {
            const otp_code = $('#otp_code').val();
            if (!otp_code) {
                toastr.error('Please enter valid OTP code', 'Filed!');
                return;
            }


            $('#login-button').submit();
        });
    </script>
        <script>

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

<?php echo $__env->make('layouts.auth_admin'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/picotech/domains/test.sms.picotech.app/public_html/resources/views/auth/admin_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.0038 ]--