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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/storage/framework/views/   drwxr-xr-x
Free 13.2 GB of 57.97 GB (22.77%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     4a2b95a881bd35e80c17167b52a66864a8ccba09.php (10.42 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!doctype html>
<html class="no-js" lang="">
<head>
  <meta charset="utf-8">
  <meta http-equiv="x-ua-compatible" content="ie=edge">
  <title><?php echo e(__('Installer')); ?></title>
  <meta name="description" content="">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="shortcut icon" type="image/x-icon" href="<?php echo e(asset('uploads/favicon.ico')); ?>">
  <!-- Place favicon.ico in the root directory -->

  <!-- CSS here -->
  <link rel="stylesheet" href="<?php echo e(asset('frontend/assets/css/installer/bootstrap.min.css')); ?>">
  <link rel="stylesheet" href="<?php echo e(asset('frontend/assets/css/installer/all.min.css')); ?>">
  <link rel="stylesheet" href="<?php echo e(asset('frontend/assets/css/installer/font.css')); ?>">
  <link rel="stylesheet" href="<?php echo e(asset('frontend/assets/css/installer/default.css')); ?>">
  <link rel="stylesheet" href="<?php echo e(asset('frontend/assets/css/installer/style.css')); ?>">

</head>
<body class="install">

        <!--[if lte IE 9]>
            <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
          <![endif]-->

          <?php
          $phpversion 
phpversion();
          
$mbstring extension_loaded('mbstring');
          
$bcmath extension_loaded('bcmath');
          
$ctype extension_loaded('ctype');
          
$json extension_loaded('json');
          
$openssl extension_loaded('openssl');
          
$pdo extension_loaded('pdo');
          
$tokenizer extension_loaded('tokenizer');
          
$xml extension_loaded('xml');
          
$fileinfo extension_loaded('fileinfo');
          
$fopen ini_get('allow_url_fopen');
          
$permission=true;
          
$info = [
            
'phpversion' => $phpversion,
            
'mbstring' => $mbstring,
            
'bcmath' => $bcmath,
            
'ctype' => $ctype,
            
'json' => $json,
            
'openssl' => $openssl,
            
'pdo' => $pdo,
            
'tokenizer' => $tokenizer,
            
'xml' => $xml,
            
'fileinfo' => $fileinfo,
            
'allow_url_fopen' => $fopen,
          ];

          
          
$permissions =new \App\Providers\Permissions;
          
$permissions=$permissions->check();
          
?>

          <!-- requirments-section-start -->
          <section class="mt-50 mb-50">
            <div class="requirments-section">
              <div class="content-requirments d-flex justify-content-center">
                <div class="requirments-main-content">
                  <div class="installer-header text-center">
                    <h2><?php echo e(__('Requirments')); ?></h2>
                    <p><?php echo e(__('Please make sure the PHP extentions listed below are installed')); ?></p>
                  </div>
                  <table class="table requirments">
                    <thead class="thead-light">
                      <tr>
                        <th scope="col"><?php echo e(__('Extentions')); ?></th>
                        <th scope="col"><?php echo e(__('Status')); ?></th>
                      </tr>
                    </thead>
                    <tbody>
                      <tr>
                        <td><?php echo e(__('PHP >= 7.3')); ?></td>
                        <td>
                          <?php
                          
if ($info['phpversion'] >= 7.3) { ?>
                            <i class="fas fa-check"></i>
                            <?php
                          
}else{ ?>
                            <i class="fas fa-times"></i>
                            <?php
                          
}
                          
?>
                        </td>
                      </tr>
                      <tr>
                        <td><?php echo e(__('BCMath PHP Extension')); ?></td>
                        <td>
                          <?php
                          
if ($info['bcmath'] == 1) { ?>
                            <i class="fas fa-check"></i>
                            <?php
                          
}else{ ?>
                            <i class="fas fa-times"></i>
                            <?php
                          
}
                          
?>
                        </td>
                      </tr>
                      <tr>
                        <td><?php echo e(__('Ctype PHP Extension')); ?></td>
                        <td>
                         <?php
                         
if ($info['ctype'] == 1) { ?>
                          <i class="fas fa-check"></i>
                          <?php
                        
}else{ ?>
                          <i class="fas fa-times"></i>
                          <?php
                        
}
                        
?>
                      </td>
                    </tr>
                    <tr>
                      <td><?php echo e(__('JSON PHP Extension')); ?></td>
                      <td>
                       <?php
                       
if ($info['json'] == 1) { ?>
                        <i class="fas fa-check"></i>
                        <?php
                      
}else{ ?>
                        <i class="fas fa-times"></i>
                        <?php
                      
}
                      
?>
                    </td>
                  </tr>
                  <tr>
                    <td><?php echo e(__('Mbstring PHP Extension')); ?></td>
                    <td>
                      <?php
                      
if ($info['mbstring'] == 1) { ?>
                        <i class="fas fa-check"></i>
                        <?php
                      
}else{ ?>
                        <i class="fas fa-times"></i>
                        <?php
                      
}
                      
?>
                    </td>
                  </tr>
                  <tr>
                    <td><?php echo e(__('OpenSSL PHP Extension')); ?></td>
                    <td>
                      <?php
                      
if ($info['openssl'] == 1) { ?>
                        <i class="fas fa-check"></i>
                        <?php
                      
}else{ ?>
                        <i class="fas fa-times"></i>
                        <?php
                      
}
                      
?>
                    </td>
                  </tr>
                  <tr>
                    <td><?php echo e(__('PDO PHP Extension')); ?></td>
                    <td>
                      <?php
                      
if ($info['pdo'] == 1) { ?>
                        <i class="fas fa-check"></i>
                        <?php
                      
}else{ ?>
                        <i class="fas fa-times"></i>
                        <?php
                      
}
                      
?>
                    </td>
                  </tr>
                  <tr>
                    <td><?php echo e(__('Tokenizer PHP Extension')); ?></td>
                    <td>
                      <?php
                      
if ($info['tokenizer'] == 1) { ?>
                        <i class="fas fa-check"></i>
                        <?php
                      
}else{ ?>
                        <i class="fas fa-times"></i>
                        <?php
                      
}
                      
?>
                    </td>
                  </tr>
                  <tr>
                    <td><?php echo e(__('XML PHP Extension')); ?></td>
                    <td>
                      <?php
                      
if ($info['xml'] == 1) { ?>
                        <i class="fas fa-check"></i>
                        <?php
                      
}else{ ?>
                        <i class="fas fa-times"></i>
                        <?php
                      
}
                      
?>
                    </td>
                  </tr>
                  <tr>
                    <td><?php echo e(__('Fileinfo PHP Extension')); ?></td>
                    <td>
                      <?php
                      
if ($info['fileinfo'] == 1) { ?>
                        <i class="fas fa-check"></i>
                        <?php
                      
}else{ ?>
                        <i class="fas fa-times"></i>
                        <?php
                      
}
                      
?>
                    </td>
                  </tr>
                  <tr>
                    <td><?php echo e(__('Fopen PHP Extension')); ?></td>
                    <td>
                      <?php
                      
if ($info['allow_url_fopen'] == 1) { ?>
                        <i class="fas fa-check"></i>
                        <?php
                      
}else{ ?>
                        <i class="fas fa-times"></i>
                        <?php
                      
}
                      
?>
                    </td>
                  </tr>

                 <?php $__currentLoopData $permissions['permissions']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $row): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                
                 <?php if($row['isSet'] == false): ?>
                 <?php
                 $permission
=false;
                 
?>
                  <tr>
                    <td><?php echo e($row['folder']); ?></td>
                    <td>Required permission: 777</td>
                  </tr>
                  <?php endif; ?>
                  <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                </tbody>
              </table>
              <?php
              $page_url 
= (isset($_SERVER['HTTPS']) ? "https" "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
              if (
$info['phpversion'] >= 7.2 && $info['mbstring'] == && $info['bcmath'] == && $info['ctype'] == && $info['json'] == && $info['openssl'] == && $info['pdo'] == && $info['tokenizer'] == && $info['xml'] == && $info['fileinfo'] == && $info['allow_url_fopen'] == && $permission == true) { ?>
                <a href="<?php echo e(route('purchase')); ?>" class="btn btn-primary install-btn f-right"><?php echo e(__('Next')); ?></a>
                <?php

              
}else{ ?>
               <a href="#" class="btn btn-primary f-right disabled"><?php echo e(__('next')); ?></a>
               <?php
             
}
             
?>
           </div>
         </div>
       </div>
     </section>

     <!-- requirments-section-end -->

   </body>
   </html>
<?php /**PATH /Volumes/my-works/laravel/dokans/script/vendor/laravel/vendor/src/views/requirments.blade.php ENDPATH**/ ?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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