Cyber Anakins Lightsaber - A Minishell-based backdoor
<?php
require("design.php");
session_start();
TOP(-1);
LEFTCOLUMN();
CHANNELS();
MAINCOLUMN();
?>
<h1>О нас<?php if (AdminAuth(RIGHT_SUPER_ADMIN))
{
print "<script src='htmleditor.js?1'></script>\n";
print "<img src='edit.png' class=editBtn title='Правка текста `О нас`' onclick='editHTML(\"О нас\",\"aboutus.html\")'>\n";
}
?></h1>
<?php readfile("aboutus.html"); ?>
<hr>
<center>См. также [ <A href='history.php'>История ЦБС</a> ]</center>
<h1>Контакты</h1>
<table>
<tr><td align=right>Телефон:</td><td>+7(495) 511-49-54</td></tr>
<tr><td align=right>E-mail:</td><td><a href='mailto:cbs-korolev@yandeх.ru'>cbs-korolev@yandeх.ru</a></td></tr>
<tr><td align=right>Адрес:</td><td>141078, Московская обл., г. Королёв, ул. 50-летия ВЛКСМ, 5/16</td></tr>
</table>
<br>
<iframe src="https://yandex.ru/map-widget/v1/?um=constructor%3A6671e508e899976f0f985bd2f6ab35b5f73545946abc2b5fb7ab2f35cf57bf03&source=constructor" width="100%" height="400" frameborder="0"></iframe>
<a name=contacts></a>
<h1>Отделы ЦБС<?php
if (AdminAuth(RIGHT_SUPER_ADMIN))
{
print "<script src='maincontactseditor.js'></script>\n";
print "<img src='edit.png' class=editBtn title='Правка отделов ЦБС' onclick='editMainContacts()'>\n";
}
?></h1>
<table cellspacing=0 cellpadding=4 border=1 bordercolor=#cccccc>
<?php
require("maincontacts.php");
foreach($mainContacts as $contact)
{
print "<tr>\n";
print "<td>"._html_($contact['director'])."</td>\n";
print "<td align=center>"._html_($contact['person'])."</td>\n";
print "<td nowrap>\n";
$first = true;
foreach($contact as $key=>$value)
{
if ($key == "phone")
{
if ($first) $first = false; else print "<br>\n";
print "Тел.: $value";
}
else
if ($key == "email")
{
if ($first) $first = false; else print "<br>\n";
print "e-mail: <a href='mailto:$value'>$value</a>";
}
else
if ($key == "vk")
{
if ($first) $first = false; else print "<br>\n";
print "<a href='$value' target=_blank>ВКонтакте</a>";
}
else
if ($key == "telegram")
{
if ($first) $first = false; else print "<br>\n";
print "<a href='$value' target=_blank>Телеграм</a>";
}
}
print "</td>\n";
print "</tr>\n";
}
?>
</table>
<?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.