本文整理匯總了Python中cairis.data.ThreatDAO.ThreatDAO類的典型用法代碼示例。如果您正苦於以下問題:Python ThreatDAO類的具體用法?Python ThreatDAO怎麽用?Python ThreatDAO使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了ThreatDAO類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: get
def get(self):
session_id = get_session_id(session, request)
dao = ThreatDAO(session_id)
objts = dao.get_threats_summary()
dao.close()
resp = make_response(json_serialize(objts, session_id=session_id))
resp.headers['Content-Type'] = "application/json"
return resp
示例2: delete
def delete(self, name):
session_id = get_session_id(session, request)
dao = ThreatDAO(session_id)
dao.delete_threat(name=name)
dao.close()
resp_dict = {'message': 'Threat successfully deleted'}
resp = make_response(json_serialize(resp_dict), OK)
resp.headers['Content-type'] = 'application/json'
return resp
示例3: post
def post(self):
session_id = get_session_id(session, request)
dao = ThreatDAO(session_id)
new_threat = dao.from_json(request)
threat_id = dao.add_threat(new_threat)
dao.close()
resp_dict = {'message': 'Threat successfully added', 'threat_id': threat_id}
resp = make_response(json_serialize(resp_dict), httplib.OK)
resp.contenttype = 'application/json'
return resp
示例4: get_threatened_assets
def get_threatened_assets(self, threat_name, environment_name):
"""
:type threat_name: str
:type environment_name: str
:rtype: list[Asset]
"""
threat_dao = ThreatDAO(self.session_id)
try:
found_threat = threat_dao.get_threat_by_name(threat_name)
threat_id = found_threat.theId
except ObjectNotFoundHTTPError as ex:
self.close()
raise ex
except ARMHTTPError as ex:
self.close()
raise ex
environment_dao = EnvironmentDAO(self.session_id)
try:
found_environment = environment_dao.get_environment_by_name(environment_name)
environment_id = found_environment.theId
except ObjectNotFoundHTTPError as ex:
self.close()
raise ex
except ARMHTTPError as ex:
self.close()
raise ex
try:
threatened_assets = self.db_proxy.threatenedAssets(threat_id, environment_id)
except DatabaseProxyException as ex:
self.close()
raise ARMHTTPError(ex)
except ARMException as ex:
self.close()
raise ARMHTTPError(ex)
return threatened_assets
示例5: put
def put(self, name):
session_id = get_session_id(session, request)
dao = ThreatDAO(session_id)
req = dao.from_json(request)
dao.update_threat(req, name=name)
dao.close()
resp_dict = {'message': 'Threat successfully updated'}
resp = make_response(json_serialize(resp_dict), httplib.OK)
resp.headers['Content-type'] = 'application/json'
return resp