Skip to content

Commit

Permalink
Edit help function and moved a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
babylard committed Nov 24, 2023
1 parent 24eb641 commit 293d9f9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions GUI/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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)
Expand Down Expand Up @@ -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 [email protected]')]
[sg.Text('Please report any bugs or issues you may find to [email protected], and view the Documentation for more information.')]
]

help_window = sg.Window('NetScan Help', layout2, resizable=True)
Expand Down

0 comments on commit 293d9f9

Please sign in to comment.