Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabLogs.js
1155 views
1
//
2
// Copyright (c) 2006-2025 Wade Alcorn - [email protected]
3
// Browser Exploitation Framework (BeEF) - https://beefproject.com
4
// See the file 'doc/COPYING' for copying permission
5
//
6
7
/*
8
* The log Tab panel for the selected zombie.
9
*/
10
ZombieTab_LogTab = function(zombie) {
11
12
var zombieLog = new LogsDataGrid('/api/logs/' + zombie.session ,30);
13
zombieLog.border = false;
14
15
ZombieTab_LogTab.superclass.constructor.call(this, {
16
id: 'zombie-log-tab' + zombie.session,
17
layout: 'fit',
18
title: 'Logs',
19
items: {
20
layout: 'border',
21
border: false,
22
items:[zombieLog]
23
}
24
});
25
};
26
27
Ext.extend(ZombieTab_LogTab, Ext.Panel, {} );
28
29
30