Cyber Anakins Lightsaber - A Minishell-based backdoor

Current Path : /home/bjb2293782/xn--80abaeoqbbrbgf8aea5a2a2z.xn--p1ai/docs/
Upload File :
Current File : /home/bjb2293782/xn--80abaeoqbbrbgf8aea5a2a2z.xn--p1ai/docs/faq.php

<?php
require("design.php");

session_start();

TOP(-1);


LEFTCOLUMN();
CHANNELS();
MAINCOLUMN();

$inx = _GET_('inx');

$q = '';
$a = '';
$f = @fopen("faq.txt", "r");
if ($f)
{
	$line = '';
	for($i=0; $i <= $inx && !feof($f); $i++)
	{
		$line = fgets($f);
	}
	fclose($f);

	if (preg_match("/^(.*)\t(.*)$/", $line, $g))
	{
		$q = $g[1];
		$a = $g[2];
	}
}
?>

<h1><?php print $q; ?></h1>

<p><?php print $a; ?></p>
<hr>
<br>
<center>[ <a href='#' onclick='history.back(); return false;'>«Назад</a> ]</center>

<br><br>


<?php

MIDDLECOLUMN2();
print "<center><table><tr><td>";
ACTUALLINKS('actualLinksH');
print "</tr></td></table></center>";
FAQ();

MIDDLECOLUMN();
CHANNELS("channelBlockH");
RIGHTCOLUMN();

ACTUALLINKS();
FAQ();

?>




<?php BOTTOM(); ?>

May the force be with you, always.