[docs]classTuoniDataService:""" A class that provides data and functionality for a service data model entry. Attributes: id (GUID): The unique identifier (GUID) for the service. address (str): The service address. port (int): Port number. protocol (str): Service protocol. banner (str): Service banner. note (str): Additional notes. status (str): Status of the entry. """def__init__(self,conf,c2):""" Constructor for the service 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.port=conf["port"]self.protocol=conf["protocol"]self.banner=conf["banner"]self.note=conf["note"]self.status=conf["status"]
[docs]defreload(self):""" Reload the service data from the C2 server. """ifself.idisNone:raiseExceptionTuoniDeleted("")data=self.c2.request_get("/api/v1/discovery/service/%s"%self.id)self._load_conf(data)
[docs]defarchive(self):""" Archive the service. """ifself.idisNone:raiseExceptionTuoniDeleted("")self.c2.request_post("/api/v1/discovery/services/bulk-archive",{"serviceIds":[self.id]})
[docs]defupdate(self):""" Update data on the server. """ifself.idisNone:raiseExceptionTuoniDeleted("")req={"protocol":self.protocol,"banner":self.banner,"note":self.note}self.c2.request_patch("/api/v1/discovery/service/%s"%self.id,req)self.reload()