coolbho3k / manuf

Parser library for Wireshark's OUI database.
Other
120 stars 36 forks source link

Failed downloading OUI database #33

Open joepalm4 opened 2 years ago

joepalm4 commented 2 years ago

I use this excellent tool, but noticed my manuf library wasn't returning the mac vendor successfully. When I started debugging the code, I found the URLError exception was raised "Failed downloading OUI database". I think the MANUF_URL might need some attention:

https://code.wireshark.org/review/gitweb?p=wireshark.git;a=blob_plain;f=manuf

ashishshukla78 commented 2 years ago

I fixed this by changing these in manuf.py: MANUF_URL = "https://gitlab.com/wireshark/wireshark/-/raw/master/manuf" WFA_URL = "https://gitlab.com/wireshark/wireshark/-/raw/master/wka"

tcellerier commented 3 months ago

The manuf file was removed from the Wireshark github repo in 2023. So @ashishshukla78 's solution doesn't work anymore but we can still use the following workaround in manuf.py as a quick fix: MANUF_URL = "https://www.wireshark.org/download/automated/data/manuf" WFA_URL = "https://gitlab.com/wireshark/wireshark/-/raw/master/wka"