本文整理汇总了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