git-svn-id: https://beef.googlecode.com/svn/trunk@21 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
29 lines
474 B
PHP
29 lines
474 B
PHP
<?php
|
|
// Copyright (c) 2006-2010, Wade Alcorn
|
|
// All Rights Reserved
|
|
// wade@bindshell.net - http://www.bindshell.net
|
|
|
|
session_start();
|
|
require_once("../include/common.inc.php");
|
|
|
|
?>
|
|
|
|
<div class="entry">
|
|
<p class="title">Raw Log
|
|
|
|
<div id="zombie_header">
|
|
<a href="#" onclick="refreshlog();">[Refresh Log]</a>
|
|
<a href="#" onclick="clearlog();"> [Clear Log]</a>
|
|
</div>
|
|
|
|
</p>
|
|
</div></div>
|
|
|
|
<div class="log">
|
|
<div id="logdata">
|
|
<?php
|
|
echo get_log();
|
|
?>
|
|
</div>
|
|
</div>
|