Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP8 Decoder for ionCube Encoder)
- *
- * @ Version : 8.1.0.9
- * @ Author : DeZender
- * @ Release on : 27.10.2023
- * @ Official site : http://DeZender.Net
- *
- */
- require_once 'licence.php';
- $api = new LicenseBoxExternalAPI();
- $res = $api->verify_license();
- if ((bool) $res['status']) {
- echo '<meta http-equiv="refresh" content="0; url=../">';
- }
- else {
- echo '<!DOCTYPE html>' . "\n" . '<html>' . "\n" . ' <head>' . "\n" . ' <meta charset="utf-8"/>' . "\n" . ' <title>Eral Bilişim - Licence Verify</title>' . "\n" . ' <meta name="viewport" content="width=device-width,initial-scale=1">' . "\n" . ' <meta name="robots" content="noindex, nofollow">' . "\n" . ' <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.8.2/css/bulma.min.css" crossorigin="anonymous"/>' . "\n" . ' <style type="text/css">' . "\n" . ' body, html {' . "\n" . ' background: #F4F5F7;' . "\n" . ' }' . "\n" . ' </style>' . "\n" . ' </head>' . "\n" . ' <body>' . "\n" . ' <div class="container" style="padding-top: 20px;"> ' . "\n" . ' <div class="section">' . "\n" . ' <div class="columns is-centered">' . "\n" . ' <div class="column is-two-fifths">' . "\n" . ' <center>' . "\n" . ' <h1 class="title" style="padding-top: 20px">Licence Verify</h1><br>' . "\n" . ' </center>' . "\n" . ' <div class="box">' . "\n" . ' ';
- $license_code = NULL;
- $client_name = NULL;
- if (!empty($_POST['license']) && !empty($_POST['client'])) {
- $license_code = strip_tags(trim($_POST['license']));
- $client_name = strip_tags(trim($_POST['client']));
- $activate_response = $api->activate_license($license_code, $client_name);
- if (empty($activate_response)) {
- $msg = 'Server is unavailable.';
- }
- else {
- $msg = $activate_response['message'];
- }
- if (!$activate_response['status']) {
- echo ' <form action="index.php" method="POST">' . "\n" . ' <div class="notification is-danger is-light">';
- echo ucfirst($msg);
- ....................................................................
- .........................................
- ....................
Advertisement
Add Comment
Please, Sign In to add comment