fix mac not recovered properly

This commit is contained in:
Thomas Nahuel Rusiecki 2024-11-06 17:14:39 -03:00
parent 79951f3c4b
commit f2660dd877
1 changed files with 10 additions and 21 deletions

View File

@ -6,22 +6,13 @@ from dmidecode import DMIParse
from json_repair import repair_json
from evidence.models import Annotation
from evidence.parse_details import get_lshw_child
from evidence.xapian import index
from utils.constants import CHASSIS_DH
logger = logging.getLogger('django')
def get_network_cards(child, nets):
if child['id'] == 'network' and "PCI:" in child.get("businfo"):
nets.append(child)
if child.get('children'):
[get_network_cards(x, nets) for x in child['children']]
logger = logging.getLogger(__name__)
def get_mac(lshw):
nets = []
try:
if type(lshw) is dict:
hw = lshw
@ -30,19 +21,17 @@ def get_mac(lshw):
except json.decoder.JSONDecodeError:
hw = json.loads(repair_json(lshw))
try:
get_network_cards(hw, nets)
except Exception as ss:
logger.warning("%s", ss)
return
networks = []
get_lshw_child(hw, networks, 'network')
nets_sorted = sorted(nets, key=lambda x: x['businfo'])
nets_sorted = sorted(networks, key=lambda x: x['businfo'])
# This funcion get the network card integrated in motherboard
# integrate = [x for x in nets if "pci@0000:00:" in x.get('businfo', '')]
if nets_sorted:
return nets_sorted[0]['serial']
mac = nets_sorted[0]['serial']
logger.debug(f"The snapshot has the following MAC: " + mac)
return mac
class Build:
def __init__(self, evidence_json, user, check=False):
@ -131,9 +120,9 @@ class Build:
if not snapshot["data"].get('lshw'):
return f"{manufacturer}{model}{chassis}{serial_number}{sku}"
lshw = snapshot["data"]["lshw"]
lshw = snapshot["data"].get("lshw")
# mac = get_mac2(hwinfo_raw) or ""
mac = get_mac(lshw) or ""
mac = get_mac(lshw)
if not mac:
txt = "Could not retrieve MAC address in snapshot %s"
logger.warning(txt, snapshot['uuid'])