[docs]classTuoniDataHost:""" A class that provides data and functionality for a host data model entry. Attributes: id (GUID): The unique identifier (GUID) for the host. address (str): The host address. name (str): Given name to the host. note (str): Additional notes. status (str): Status of the entry. """def__init__(self,conf,c2):""" Constructor for the host data class. Args: conf (dict): Data from the server. c2 (TuoniC2): The related server object that manages communication. """self._load_conf(conf)self.c2=c2def_load_conf(self,conf):self.id=conf["id"]self.address=conf["address"]self.name=conf["name"]self.note=conf["note"]self.status=conf["status"]
[docs]defreload(self):""" Reload the host data from the C2 server. """ifself.idisNone:raiseExceptionTuoniDeleted("")data=self.c2.request_get("/api/v1/discovery/host/%s"%self.id)self._load_conf(data)
[docs]defarchive(self):""" Archive the host. """ifself.idisNone:raiseExceptionTuoniDeleted("")self.c2.request_post("/api/v1/discovery/hosts/bulk-archive",{"hostIds":[self.id]})
[docs]defupdate(self):""" Update data on the server. """ifself.idisNone:raiseExceptionTuoniDeleted("")req={"name":self.name,"note":self.note}self.c2.request_patch("/api/v1/discovery/host/%s"%self.id,req)self.reload()