From 293d9f984a4d714f28df7a855ceebf2211ea2f1b Mon Sep 17 00:00:00 2001 From: babylard Date: Fri, 24 Nov 2023 07:30:28 -0800 Subject: [PATCH] Edit help function and moved a comment --- GUI/main.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/GUI/main.py b/GUI/main.py index 3afebf2..4d66d5d 100644 --- a/GUI/main.py +++ b/GUI/main.py @@ -10,6 +10,8 @@ show_short_oui = True now = datetime.datetime.now() +# Network stuff + def get_device_type(mac_address): global show_short_oui p = manuf.MacParser() @@ -19,7 +21,6 @@ def get_device_type(mac_address): manufacturer = p.get_manuf_long(mac_address) return manufacturer or "Unknown" -# Network stuff def scan(ip): print("Sending ARP requests...") arp_request = scapy.ARP(pdst=ip) @@ -72,9 +73,10 @@ def help(): [sg.Text(' This can also occur because the IP Range you entered was Invalid. 24 is set by default which should work just fine.')], [sg.Text('')], [sg.Text(" 2. OUI Manufacturer information is only 8 characters long. This issue has been resolved as of 0.0.4, however I thought this would also")], - [sg.Text(" make a good feature. So there is now a checkbox located at the top to show Short OUIs, or long OUIs.")], + [sg.Text(" make a good feature. So there is now a checkbox located at the top to show Short OUIs, or long OUIs. If you want the full version,")], + [sg.Text(" make sure you've unchecked the box.")], [sg.Text('')], - [sg.Text('Please report any bugs or issues you may find to williamchiozza@protonmail.com')] + [sg.Text('Please report any bugs or issues you may find to williamchiozza@protonmail.com, and view the Documentation for more information.')] ] help_window = sg.Window('NetScan Help', layout2, resizable=True)