當前位置: 首頁>>代碼示例>>Python>>正文


Python VulnerabilityDAO.VulnerabilityDAO類代碼示例

本文整理匯總了Python中cairis.data.VulnerabilityDAO.VulnerabilityDAO的典型用法代碼示例。如果您正苦於以下問題:Python VulnerabilityDAO類的具體用法?Python VulnerabilityDAO怎麽用?Python VulnerabilityDAO使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了VulnerabilityDAO類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: get

  def get(self, name):
    session_id = get_session_id(session, request)

    dao = VulnerabilityDAO(session_id)
    vulnerability = dao.get_vulnerability_by_name(name=name)
    dao.close()

    resp = make_response(json_serialize(vulnerability, session_id=session_id), httplib.OK)
    resp.headers['Content-type'] = 'application/json'
    return resp
開發者ID:,項目名稱:,代碼行數:10,代碼來源:

示例2: delete

  def delete(self, name):
    session_id = get_session_id(session, request)

    dao = VulnerabilityDAO(session_id)
    dao.delete_vulnerability(name=name)
    dao.close()

    resp_dict = {'message': 'Vulnerability successfully deleted'}
    resp = make_response(json_serialize(resp_dict), httplib.OK)
    resp.headers['Content-type'] = 'application/json'
    return resp
開發者ID:,項目名稱:,代碼行數:11,代碼來源:

示例3: post

  def post(self):
    session_id = get_session_id(session, request)

    dao = VulnerabilityDAO(session_id)
    new_vuln = dao.from_json(request)
    vuln_id = dao.add_vulnerability(new_vuln)
    dao.close()

    resp_dict = {'message': 'Vulnerability successfully added', 'vulnerability_id': vuln_id}
    resp = make_response(json_serialize(resp_dict), httplib.OK)
    resp.contenttype = 'application/json'
    return resp
開發者ID:,項目名稱:,代碼行數:12,代碼來源:

示例4: delete

  def delete(self, name):
    session_id = get_session_id(session, request)
    environment_name = request.args.get('environment', '')

    dao = VulnerabilityDAO(session_id)
    dao.delete_vulnerability_type(name=name, environment_name=environment_name)
    dao.close()

    resp_dict = {'message': 'Vulnerability type successfully deleted'}
    resp = make_response(json_serialize(resp_dict), OK)
    resp.headers['Content-type'] = 'application/json'
    return resp
開發者ID:failys,項目名稱:cairis,代碼行數:12,代碼來源:VulnerabilityController.py

示例5: get_vulnerable_assets

    def get_vulnerable_assets(self, vulnerability_name, environment_name):
        """
        :type vulnerability_name: str
        :type environment_name: str
        :rtype: list[Asset]
        """
        vulnerability_dao = VulnerabilityDAO(self.session_id)

        try:
            found_vulnerability = vulnerability_dao.get_vulnerability_by_name(vulnerability_name)
            vulnerability_id = found_vulnerability.theVulnerabilityId
        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:
            vulnerable_assets = self.db_proxy.vulnerableAssets(vulnerability_id, environment_id)
        except DatabaseProxyException as ex:
            self.close()
            raise ARMHTTPError(ex)
        except ARMException as ex:
            self.close()
            raise ARMHTTPError(ex)

        return vulnerable_assets
開發者ID:InvalidToken,項目名稱:CAIRIS,代碼行數:39,代碼來源:AssetDAO.py

示例6: put

  def put(self, name):
    session_id = get_session_id(session, request)

    dao = VulnerabilityDAO(session_id)
    req = dao.from_json(request)
    dao.update_vulnerability(req, name=name)
    dao.close()

    resp_dict = {'message': 'Vulnerability successfully updated'}
    resp = make_response(json_serialize(resp_dict), OK)
    resp.headers['Content-type'] = 'application/json'
    return resp
開發者ID:failys,項目名稱:cairis,代碼行數:12,代碼來源:VulnerabilityController.py

示例7: put

  def put(self, name):
    session_id = get_session_id(session, request)
    environment_name = request.args.get('environment', '')

    dao = VulnerabilityDAO(session_id)
    vulnerability_type = dao.type_from_json(request)
    dao.update_vulnerability_type(vulnerability_type, name=name, environment_name=environment_name)
    dao.close()

    resp_dict = {'message': 'Vulnerability type successfully updated'}
    resp = make_response(json_serialize(resp_dict), httplib.OK)
    resp.headers['Content-type'] = 'application/json'
    return resp
開發者ID:,項目名稱:,代碼行數:13,代碼來源:


注:本文中的cairis.data.VulnerabilityDAO.VulnerabilityDAO類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。