OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
_backup
/
news
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/22/2024 04:05:28 AM
rwxr-xr-x
📄
index.php
2.46 KB
02/14/2020 04:39:47 AM
rw-r--r--
📄
view.php
2.76 KB
02/13/2020 02:13:07 PM
rw-r--r--
Editing: view.php
Close
<?php include 'dbConfig.php'; $id = $_GET['pd']; $name = $_GET['nombre']; $ciphering = "AES-128-CTR"; $iv_length = openssl_cipher_iv_length($ciphering); $options = 0; $decryption_iv = '1234567891011121'; $decryption_keyname = 'creamuser'; $user=openssl_decrypt ($name, $ciphering, $decryption_keyname, $options, $decryption_iv); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="description" content=""> <meta name="author" content=""> <title>Cream</title> <!-- Bootstrap core CSS --> <link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- Custom fonts for this template --> <link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet"> <!-- Custom styles for this template --> <link href="css/grayscale.min.css" rel="stylesheet"> <style> .box-warning{ padding: 10px; border-radius: 3px; background: #ECF0F5; /*margin-bottom: 20px;*/ /*width: 100%;*/ box-shadow: 0 1px 1px rgba(0,0,0,0.1); border-top-color: #F87F20; } </style> </head> <body> <div class="container-fluid"> <div class="row"> <div class="col-md-3 col-lg-3 col-xl-3"></div> <div class="col-md-6 col-lg-6 col-xl-6 d-flex justifiy-content-center"> <img class="mx-auto" src="images/cream logo crop.png"> </div> </div> <div class="row"> <div class="col-md-3 col-lg-3 col-xl-3"></div> <div class="col-md-6 col-lg-6 col-xl-6 d-flex justifiy-content-center"> <h2 class=" mx-auto mt-2">Create <span>·</span> Reach <span>·</span> Measure</h2> </div> </div> <?php $sql = "SELECT * FROM mycollection where user_email = '$user' and art_id = '$id'"; $result = mysqli_query($db, $sql); while($row = mysqli_fetch_assoc($result)) { $cid=$row['art_id']; $ctitle=$row['title']; $clink=$row['link']; $cdesc=$row['description']; ?> <div class="row box-warning"> <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 col-xl-12"> <h4><b><?php echo $ctitle; ?></b></h4> <p style="color: #9e9e9e;margin-left: 0%;"><?php echo $cdesc ; ?></p> <p class="small" style="margin-top: 25px;color: #189eb5;"><?php $publisher = substr($clink, strpos($clink, ".") + 1); $publisher = strtok($publisher, '.'); echo 'Publisher: '.ucfirst($publisher?$publisher:'Cream'); ?></p> </div> </div> <?php } ?> </div> </body>