pygui moved observers to menu class, added initial functioning ip address tool

This commit is contained in:
Blake Harnden 2020-04-21 22:56:56 -07:00
parent 20ecdf70d0
commit ba6a6f06b1
7 changed files with 254 additions and 29 deletions

View file

@ -31,17 +31,6 @@ if TYPE_CHECKING:
from core.gui.app import Application
GUI_SOURCE = "gui"
OBSERVERS = {
"List Processes": "ps",
"Show Interfaces": "ip address",
"IPV4 Routes": "ip -4 ro",
"IPV6 Routes": "ip -6 ro",
"Listening Sockets": "netstat -tuwnl",
"IPv4 MFC Entries": "ip -4 mroute show",
"IPv6 MFC Entries": "ip -6 mroute show",
"Firewall Rules": "iptables -L",
"IPSec Policies": "setkey -DP",
}
class CoreServer: