29 lines
663 B
JavaScript
29 lines
663 B
JavaScript
//
|
|
// Copyright (c) 2006-2013 Wade Alcorn - wade@bindshell.net
|
|
// Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
// See the file 'doc/COPYING' for copying permission
|
|
//
|
|
|
|
/*
|
|
* The log Tab panel for the selected zombie.
|
|
*/
|
|
ZombieTab_LogTab = function(zombie) {
|
|
|
|
var zombieLog = new DataGrid('<%= @base_path %>/logs/zombie.json',30,{session:zombie.session});
|
|
zombieLog.border = false;
|
|
|
|
ZombieTab_LogTab.superclass.constructor.call(this, {
|
|
id: 'zombie-log-tab' + zombie.session,
|
|
layout: 'fit',
|
|
title: 'Logs',
|
|
items: {
|
|
layout: 'border',
|
|
border: false,
|
|
items:[zombieLog]
|
|
}
|
|
});
|
|
};
|
|
|
|
Ext.extend(ZombieTab_LogTab, Ext.Panel, {} );
|
|
|