Cyber Anakins Lightsaber - A Minishell-based backdoor
<?php
require("design.php");
require("contacts.php");
session_start();
TOP(2);
LEFTCOLUMN();
CHANNELS();
MAINCOLUMN();
?>
<style>
.link
{
font-size:16px;
font-weight:bold;
}
.address
{
font-size:14px;
}
.lib
{
margin-bottom:10;
}
</style>
<h1>Библиотеки<?php
if (AdminAuth(RIGHT_SUPER_ADMIN))
{
FILIALLISTINFO();
print "<script src='contactseditor.js'></script>\n";
print "<img class=editBtn src='edit.png' title='Правка контактов' onclick='editContacts(11)'>";
}
?></h1>
<ul>
<?php
foreach($GLOBALS['filials'] as $key=>$value)
{
if ($key==-1 || $key==100) continue;
print "<li class=lib><a class=link href='filial.php?filial=$key'>"._html_($value)."</a>\n";
print "<div class=address>".$GLOBALS['filialContacts'][$key]['address']."</div></li>\n";
}
?>
</ul>
<p>Выберите ближайшую к Вам библиотеку.</p>
<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.