Update context menu
@@ -96,6 +96,12 @@
|
||||
/*
|
||||
* Network Panel
|
||||
****************************************/
|
||||
.network-host-ctxMenu-config {
|
||||
background-image: url(../images/icons/tools.png);
|
||||
background-size: 16px 16px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.network-host-ctxMenu-host {
|
||||
background-image: url(../images/icons/pc.png);
|
||||
background-size: 16px 16px;
|
||||
@@ -120,6 +126,12 @@
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.network-host-ctxMenu-router {
|
||||
background-image: url(../images/icons/router.png);
|
||||
background-size: 16px 16px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.network-host-ctxMenu-fingerprint {
|
||||
background-image: url(../images/icons/magnifier.png);
|
||||
background-size: 16px 16px;
|
||||
|
||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 1.8 KiB |
BIN
extensions/admin_ui/media/images/icons/router.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
extensions/admin_ui/media/images/icons/tools.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 1.7 KiB |
@@ -98,7 +98,7 @@ ZombieTab_Network = function(zombie) {
|
||||
var emptygrid_menu = new Ext.menu.Menu({
|
||||
items: [
|
||||
{
|
||||
text: 'Get Internal IP (WebRTC)',
|
||||
text: 'Get Internal IP Address',
|
||||
iconCls: 'network-host-ctxMenu-adapter',
|
||||
handler: function() {
|
||||
var mod_id = get_module_id("get_internal_ip_webrtc");
|
||||
@@ -193,7 +193,7 @@ ZombieTab_Network = function(zombie) {
|
||||
}
|
||||
},{
|
||||
text: 'Specify IP Range',
|
||||
iconCls: 'network-host-ctxMenu-network',
|
||||
iconCls: 'network-host-ctxMenu-config',
|
||||
handler: function() {
|
||||
var ip_range = prompt("Enter IP range to scan:", '192.168.1.1-192.168.1.254');
|
||||
if (!ip_range) {
|
||||
@@ -251,7 +251,7 @@ ZombieTab_Network = function(zombie) {
|
||||
}
|
||||
},{
|
||||
text: 'Specify IP Range',
|
||||
iconCls: 'network-host-ctxMenu-network',
|
||||
iconCls: 'network-host-ctxMenu-config',
|
||||
handler: function() {
|
||||
var ip_range = prompt("Enter IP range to scan:", '192.168.1.1-192.168.1.254');
|
||||
if (!ip_range) {
|
||||
@@ -309,7 +309,7 @@ ZombieTab_Network = function(zombie) {
|
||||
}
|
||||
},{
|
||||
text: 'Specify IP Range',
|
||||
iconCls: 'network-host-ctxMenu-network',
|
||||
iconCls: 'network-host-ctxMenu-config',
|
||||
handler: function() {
|
||||
var ip_range = prompt("Enter IP range to scan:", '192.168.1.1-192.168.1.254');
|
||||
if (!ip_range) {
|
||||
|
||||