From cb65f8d82861f560f1f9ea9e4ffaa8e72f9663d3 Mon Sep 17 00:00:00 2001 From: Nidhi Jaiswal <35574348+nidhi0512@users.noreply.github.com> Date: Tue, 5 Sep 2023 16:35:29 +0530 Subject: [PATCH] Integration branch (#18) * GA Changes GA * GA changes 1.0.12 * code changes for encryption and decryption of access_token * code changes for encryption and decryption of access_token * code changes for encryption and decryption of access_token * updated scan summary name and update set * change log level to basic * Update Update_Set_GA_1.0.11.xml * Added Update set From Vendor Instance --------- Co-authored-by: Apoorva --- ...clude_f60f0ee047131110328ca368436d43ba.xml | 16 +- ...clude_716c87ad471f1110328ca368436d438a.xml | 46 +- ...clude_891d8fed471f1110328ca368436d4334.xml | 98 +- ...clude_ba2b3da69769e510026f72021153af1b.xml | 25 +- ...clude_508f0d54471f1110328ca368436d43f8.xml | 16 +- ...clude_5c0f0d18471f1110328ca368436d4357.xml | 2 +- ...clude_d7f2d2e447131110328ca368436d4321.xml | 12 +- ...clude_ec0e828f47f42110328ca368436d433b.xml | 17 +- ...clude_1980bcb147935110328ca368436d435a.xml | 103 +- ...clude_afffecb147935110328ca368436d43ea.xml | 2 +- ...GA_1.0.10.xml => Update_Set_GA_1.0.12.xml} | 16054 ++++++++-------- ...ction_6390cdd847db1110328ca368436d4361.xml | 18 +- 12 files changed, 8468 insertions(+), 7941 deletions(-) rename Scripts/{Update_Set_GA_1.0.10.xml => Update_Set_GA_1.0.12.xml} (66%) diff --git a/Scripts/CheckmarxOneAppListIntegration_sys_script_include_f60f0ee047131110328ca368436d43ba.xml b/Scripts/CheckmarxOneAppListIntegration_sys_script_include_f60f0ee047131110328ca368436d43ba.xml index 2bea7ba..74eff65 100644 --- a/Scripts/CheckmarxOneAppListIntegration_sys_script_include_f60f0ee047131110328ca368436d43ba.xml +++ b/Scripts/CheckmarxOneAppListIntegration_sys_script_include_f60f0ee047131110328ca368436d43ba.xml @@ -1,5 +1,5 @@ - + public true @@ -58,21 +58,26 @@ CheckmarxOneAppListIntegration.prototype = Object.extendsObject(sn_vul.Applicati var groups = ''; var groupval = ' '; for (var item in response.projects) { + var applicationIds = ''; groups = +response.projects[item].groups.toString(); - { + var projectResponse = this.UTIL.getProjectById(this.IMPLEMENTATION, response.projects[item].id); + if (null != projectResponse.applicationIds && projectResponse.applicationIds.length > 0) + applicationIds = projectResponse.applicationIds.toString(); { if (groups == 0) { appListAll += '' + '<' + '![CDATA[' + response.projects[item].name + ']]' + '>'; } else { appListAll += '' + '<' + '![CDATA[' + response.projects[item].name + ']]' + '>'; } -} + } } var reportContent = appListRootNodeStart + appListAll + appListRootNodeEnd; @@ -178,20 +183,19 @@ CheckmarxOneAppListIntegration.prototype = Object.extendsObject(sn_vul.Applicati shouldRetry: function(process) { return true; }, - type: 'CheckmarxOneAppListIntegration' });]]> sys_script_include admin 2022-11-18 05:11:38 f60f0ee047131110328ca368436d43ba -132 +133 CheckmarxOneAppListIntegration 3d20e92d47471110328ca368436d436a 3d20e92d47471110328ca368436d436a sys_script_include_f60f0ee047131110328ca368436d43ba apoorva.singh@checkmarx.com -2023-06-26 17:02:50 +2023-08-08 11:25:54 diff --git a/Scripts/CheckmarxOneAppListProcessor_sys_script_include_716c87ad471f1110328ca368436d438a.xml b/Scripts/CheckmarxOneAppListProcessor_sys_script_include_716c87ad471f1110328ca368436d438a.xml index 0af1115..df705ba 100644 --- a/Scripts/CheckmarxOneAppListProcessor_sys_script_include_716c87ad471f1110328ca368436d438a.xml +++ b/Scripts/CheckmarxOneAppListProcessor_sys_script_include_716c87ad471f1110328ca368436d438a.xml @@ -1,5 +1,5 @@ - + public true @@ -16,15 +16,14 @@ CheckmarxOneAppListProcessor.prototype = Object.extendsObject(sn_vul.Application */ MSG: 'CheckmarxOne AppListProcessor:', UTIL: new x_chec3_chexone.CheckmarxOneUtil(), - process: function (attachment) { + + process: function(attachment) { if (!attachment) { gs.warn(gs.getMessage('CheckmarxOneAppListProcessor: Called with no attachment')); return; } try { - this.UTIL.validateXML(new GlideSysAttachment().getContent(attachment), 'error'); - //Parsing the Project List attachment var appDoc = new XMLDocument2(); appDoc.parseXML(new GlideSysAttachment().getContent(attachment)); @@ -38,17 +37,22 @@ CheckmarxOneAppListProcessor.prototype = Object.extendsObject(sn_vul.Application var errorProcess = ''; while (iter.hasNext()) { try { - - var appNode = iter.next(); var attributes = appNode.getAttributes(); + var applicationId = ''; + var appId; + if (appNode.getAttribute('applicationIds') && appNode.getAttribute('applicationIds') != {}) { + appId ={}; + appId[gs.getMessage("Application Id: ")] = appNode.getAttribute('applicationIds').toString(); + } else + appId = ''; //map attributes from Checkmarx into the servicenow expected format' var appObj = { source_app_id: attributes.id, app_name: appNode.getLastChild().getTextContent().toString(), source_assigned_teams: attributes.groups, description: 'created at' + attributes.createdAt, - + source_additional_info: JSON.stringify(appId), }; //Updating the project information in ServiceNow table var result = this.AVR_API.createOrUpdateApp(appObj); @@ -59,45 +63,33 @@ CheckmarxOneAppListProcessor.prototype = Object.extendsObject(sn_vul.Application this.import_counts.updated++; else if (result.unchanged) this.import_counts.unchanged++; - } + } - } catch (ex) { - errorMessage = gs.getMessage("Error in retriving data for app list integration!"); - gs.error(this.MSG + "errorMessage " + ex); - errorProcess += " | " + ex.getMessage(); + } catch (ex) { + errorMessage = gs.getMessage("Error in retriving data for app list integration!"); + gs.error(this.MSG + "errorMessage " + ex); + errorProcess += " | " + ex.getMessage(); + } } - } if (!gs.nil(errorProcess)) gs.error(this.MSG + "All errors that occurred while processing project lists: " + errorProcess); this.completeProcess(this.integrationProcessGr, this.import_counts); }, - } - - } - } catch (ex) { - errorMessage = gs.getMessage("Error in retriving data for app list integration!"); - gs.error(this.MSG + "errorMessage " + ex); - throw ex; - } - - this.completeProcess(this.integrationProcessGr, this.import_counts); - }, - type: 'CheckmarxOneAppListProcessor' });]]> sys_script_include admin 2022-11-21 12:03:00 716c87ad471f1110328ca368436d438a -48 +49 CheckmarxOneAppListProcessor 3d20e92d47471110328ca368436d436a 3d20e92d47471110328ca368436d436a sys_script_include_716c87ad471f1110328ca368436d438a apoorva.singh@checkmarx.com -2023-06-26 17:18:16 +2023-08-08 11:22:07 diff --git a/Scripts/CheckmarxOneAppVulItemIntegration_sys_script_include_891d8fed471f1110328ca368436d4334.xml b/Scripts/CheckmarxOneAppVulItemIntegration_sys_script_include_891d8fed471f1110328ca368436d4334.xml index 3241775..9d0351c 100644 --- a/Scripts/CheckmarxOneAppVulItemIntegration_sys_script_include_891d8fed471f1110328ca368436d4334.xml +++ b/Scripts/CheckmarxOneAppVulItemIntegration_sys_script_include_891d8fed471f1110328ca368436d4334.xml @@ -1,5 +1,5 @@ - + public true @@ -17,9 +17,32 @@ CheckmarxOneAppVulItemIntegration.prototype = Object.extendsObject(sn_vul.Applic retrieveData: function() { var params = this._getParameters(this.PROCESS.getValue('parameters')); var response = ""; + if (Object.keys(params.run)[0]) { + var appname = ''; + var lastscandate = ''; + var branch = ''; + var appId = ''; + var applicationIds = []; + var applicationIdsStr = ''; + var responseLastScanSummary = this.UTIL.getScanDetails(this.IMPLEMENTATION, Object.keys(params.run)[0]); + var jsonLastScanSummResp = JSON.parse(responseLastScanSummary.getBody()); + //to map value of last_scan_date, project name and project Id in XML + for (var value in jsonLastScanSummResp.scans) { + var projectResponse = this.UTIL.getProjectById(this.IMPLEMENTATION, jsonLastScanSummResp.scans[value].projectId); + if (null != projectResponse.applicationIds && projectResponse.applicationIds.length > 0) + applicationIds = applicationIds.concat(projectResponse.applicationIds); + lastscandate += this.UTIL.parseDate(jsonLastScanSummResp.scans[value].updatedAt); + appname += jsonLastScanSummResp.scans[value].projectName; + branch += jsonLastScanSummResp.scans[value].branch; + appId += jsonLastScanSummResp.scans[value].projectId; + } + if (applicationIds.length > 0) + applicationIdsStr = applicationIds.toString(); + } + if (params.run) { // scanId, offset - response = this.getDetailedReport(Object.keys(params.run)[0], params.run[Object.keys(params.run)[0]]); + response = this.getDetailedReport(Object.keys(params.run)[0], params.run[Object.keys(params.run)[0]], lastscandate, appname, branch, appId, applicationIdsStr); gs.debug(this.MSG + ' getDetailedReport response:' + response); } @@ -45,7 +68,7 @@ CheckmarxOneAppVulItemIntegration.prototype = Object.extendsObject(sn_vul.Applic }; }, - getDetailedReport: function(scanId, offset) { + getDetailedReport: function(scanId, offset, lastscandate, appname, branch, appId, applicationIdsStr) { try { var includesca = this.UTIL.importScaFlaw(this.IMPLEMENTATION); var includesast = this.UTIL.importSastFlaw(this.IMPLEMENTATION); @@ -56,13 +79,9 @@ CheckmarxOneAppVulItemIntegration.prototype = Object.extendsObject(sn_vul.Applic var SCAscanDetailedAll = ''; var SASTscanDetailedAll = ''; var scanDetailedAll = ''; - var lastscandate = ''; var sca = 'sca'; var sast = 'sast'; var description = ''; - var appname = ''; - var branch = ''; - var appId = ''; var line = ''; var ref = ''; var reference = ''; @@ -76,20 +95,11 @@ CheckmarxOneAppVulItemIntegration.prototype = Object.extendsObject(sn_vul.Applic var cvssScore = " "; var cvssVector = " "; var newoffset = offset - 1; - var responseLastScanSummary = this.UTIL.getScanDetails(this.IMPLEMENTATION, scanId); - var jsonLastScanSummResp = JSON.parse(responseLastScanSummary.getBody()); - gs.debug(this.MSG + " getSummaryReport : parsed scanInfoResponse " + JSON.stringify(jsonLastScanSummResp)); - //to map value of last_scan_date, project name and project Id in XML - for (var value in jsonLastScanSummResp.scans) { - lastscandate += this.UTIL.parseDate(jsonLastScanSummResp.scans[value].updatedAt); - appId += jsonLastScanSummResp.scans[value].projectId; - } var responseLastScanReport = this.UTIL.getVulInfo(this.IMPLEMENTATION, scanId, newoffset); gs.debug(this.MSG + " getDetailedReport : scanInfoResponse " + responseLastScanReport); var jsonLastScanReportResp = JSON.parse(responseLastScanReport.getBody()); var scan_type = "static"; var vulnerabilityCountThresholdLevel = config.vulnerability_threshold_level; - for (var item in jsonLastScanReportResp.results) { if (jsonLastScanReportResp.results[item].type == "sast") { for (var j in jsonLastScanReportResp.results[item].data.nodes) { @@ -100,6 +110,8 @@ CheckmarxOneAppVulItemIntegration.prototype = Object.extendsObject(sn_vul.Applic if ((vulnerabilityCountThresholdLevel == 'LOW') || (severity.toUpperCase() == 'HIGH') || (severity.toUpperCase() == vulnerabilityCountThresholdLevel)) { + var owasp = this._getOWASPTop10(jsonLastScanReportResp.results[item].vulnerabilityDetails.compliances); + var sans = this._getSANSTop25(jsonLastScanReportResp.results[item].vulnerabilityDetails.compliances); SASTscanDetailedAll += '' + '<' + '![CDATA[' + reference + ']]' + '>' + '<' + '![CDATA[' + jsonLastScanReportResp.results[item].description + ']]' + '>'; } } - if (jsonLastScanReportResp.results[item].type == "sca") { + if (jsonLastScanReportResp.results[item].type == "sca" || jsonLastScanReportResp.results[item].type == "sca-container") { for (var k in jsonLastScanReportResp.results[item].data.packageData) { var url = jsonLastScanReportResp.results[item].data.packageData[k].url; ref += url + ', '; } - var scaseverity = jsonLastScanReportResp.results[item].severity; if ((vulnerabilityCountThresholdLevel == 'LOW') || (scaseverity.toUpperCase() == 'HIGH') || (scaseverity.toUpperCase() == vulnerabilityCountThresholdLevel)) { - SCAscanDetailedAll += '' + '<' + '![CDATA[' + ref + ']]' + '>' + '<' + '![CDATA[' + jsonLastScanReportResp.results[item].description + ']]' + '>'; } } - + // '" references="' + ref.replace(/admin 2022-11-21 12:06:20 891d8fed471f1110328ca368436d4334 +163 CheckmarxOneAppVulItemIntegration 3d20e92d47471110328ca368436d436a 3d20e92d47471110328ca368436d436a sys_script_include_891d8fed471f1110328ca368436d4334 +apoorva.singh@checkmarx.com +2023-08-29 05:30:33 diff --git a/Scripts/CheckmarxOneAppVulItemProcessor_sys_script_include_ba2b3da69769e510026f72021153af1b.xml b/Scripts/CheckmarxOneAppVulItemProcessor_sys_script_include_ba2b3da69769e510026f72021153af1b.xml index e09f5f9..9970542 100644 --- a/Scripts/CheckmarxOneAppVulItemProcessor_sys_script_include_ba2b3da69769e510026f72021153af1b.xml +++ b/Scripts/CheckmarxOneAppVulItemProcessor_sys_script_include_ba2b3da69769e510026f72021153af1b.xml @@ -1,5 +1,5 @@ - + public true @@ -41,9 +41,11 @@ CheckmarxOneAppVulItemProcessor.prototype = Object.extendsObject(sn_vul.Applicat reportData['last_scan_date'] = new GlideDateTime(node.getAttribute('last_scan_date')); reportData['scan_summary_name'] = reportData['source_scan_id'] + ' ' + reportData['last_scan_date']; reportData['scan_type'] = node.getAttribute('scan_type'); + reportData['application_Id'] = node.getAttribute('application_ids').toString(); var queryData = {}; var nvdData = {}; var resultObj = {}; + var scan_type = node.getAttribute('scan_type'); var source_severity_string = node.getAttribute('source_severity'); if (source_severity_string == 'HIGH') { var source_severity = 1; @@ -64,6 +66,16 @@ CheckmarxOneAppVulItemProcessor.prototype = Object.extendsObject(sn_vul.Applicat queryData['cvss_base_score'] = node.getAttribute('cvssScore'); queryData['cvss_vector'] = node.getAttribute('cvssVector'); queryData['last_detection_date'] = reportData.last_scan_date.getDate(); + + if (scan_type == 'static') { + if (node.getAttribute('OWASPTop10') != '') { + var owaspObj = {}; + owaspObj[gs.getMessage("OWASPTop10")] = node.getAttribute('OWASPTop10'); + queryData['owasp'] = JSON.stringify(owaspObj); + } + queryData['short_description'] = node.getAttribute('SANSTop25'); + } + // to check if first_detection_date checkbox is selected var include_first_detection_date = this.UTIL.getFirstDetectionDate(); if (include_first_detection_date) { @@ -78,7 +90,6 @@ CheckmarxOneAppVulItemProcessor.prototype = Object.extendsObject(sn_vul.Applicat queryData['source_recommendation'] = 'Recommended version-' + node.getAttribute('recommendation'); resultObj['source_recommendation'] = 'Recommended version-' + node.getAttribute('recommendation'); } - var scan_type = node.getAttribute('scan_type'); if (scan_type == 'static') { queryData['source_entry_id'] = 'Checkmarx One' + " CWE-" + queryData['cweId']; @@ -119,17 +130,16 @@ CheckmarxOneAppVulItemProcessor.prototype = Object.extendsObject(sn_vul.Applicat resultObj['source_remediation_status'] = status; var infObj = {}; + infObj[gs.getMessage("Application Id")] = node.getAttribute('application_ids').toString(); infObj[gs.getMessage("Branch Name")] = node.getAttribute('branch'); infObj[gs.getMessage("Project Id")] = node.getAttribute('app_id'); resultObj['source_additional_info'] = JSON.stringify(infObj); resultObj['source_finding_status'] = 'State= ' + node.getAttribute('state'); resultObj['last_found'] = reportData.last_scan_date.getDate(); - resultObj['application_module'] = this.NOT_AVAILABLE; resultObj['source_severity'] = source_severity_string; resultObj['complies_with_policy'] = 'not_applicable'; resultObj['source_entry_id'] = queryData['source_entry_id']; resultObj['category_name'] = queryData['category_name']; - if (scan_type != 'static') { nvdData['cvss_base_score'] = node.getAttribute('cvssScore'); nvdData['cvss_vector'] = node.getAttribute('cvssVector'); @@ -154,6 +164,7 @@ CheckmarxOneAppVulItemProcessor.prototype = Object.extendsObject(sn_vul.Applicat this.completeProcess(this.integrationProcessGr, this.import_counts); } else gs.warn(this.MSG + ':process called with no attachment'); + }, //updating data to app vul entry table @@ -170,6 +181,7 @@ CheckmarxOneAppVulItemProcessor.prototype = Object.extendsObject(sn_vul.Applicat this.import_counts.unchanged++; } catch (err) { gs.error(this.MSG + " _upsert : Error while inserting data into ServiceNow App Vul Entry Table." + err); + } }, //updating data to app vul item table @@ -210,7 +222,6 @@ CheckmarxOneAppVulItemProcessor.prototype = Object.extendsObject(sn_vul.Applicat nvd.setValue("integration_run", this.integrationProcessGr.integration_run + ""); nvdExist = nvd.insert(); } - }, type: 'CheckmarxOneAppVulItemProcessor' });]]> @@ -218,13 +229,13 @@ CheckmarxOneAppVulItemProcessor.prototype = Object.extendsObject(sn_vul.Applicat apoorva.singh@checkmarx.com 2023-03-16 05:04:10 ba2b3da69769e510026f72021153af1b -23 +26 CheckmarxOneAppVulItemProcessor 3d20e92d47471110328ca368436d436a 3d20e92d47471110328ca368436d436a sys_script_include_ba2b3da69769e510026f72021153af1b apoorva.singh@checkmarx.com -2023-06-26 16:47:43 +2023-08-29 05:47:30 diff --git a/Scripts/CheckmarxOneConfigUtilBase_sys_script_include_508f0d54471f1110328ca368436d43f8.xml b/Scripts/CheckmarxOneConfigUtilBase_sys_script_include_508f0d54471f1110328ca368436d43f8.xml index d356b58..cd9d025 100644 --- a/Scripts/CheckmarxOneConfigUtilBase_sys_script_include_508f0d54471f1110328ca368436d43f8.xml +++ b/Scripts/CheckmarxOneConfigUtilBase_sys_script_include_508f0d54471f1110328ca368436d43f8.xml @@ -1,5 +1,5 @@ - + package_private true @@ -22,10 +22,8 @@ CheckmarxOneConfigUtilBase.prototype = { "result": "false", "errorMessage": gs.getMessage("CheckmarxOne configuration not found.") }; - var response = new x_chec3_chexone.CheckmarxOneUtil().getProject(config.getValue("integration_instance")); - } catch (ex) { result = false; errorMessage = gs.getMessage("Credential validation failed!"); @@ -49,7 +47,6 @@ CheckmarxOneConfigUtilBase.prototype = { while (implConfig.next()) { var configName = implConfig.getDisplayValue("configuration"); var configVal = gr.getValue(configName); - if (implConfig.configuration.elem_type == "boolean") implConfig.setValue("value", configVal === "1"); else @@ -63,13 +60,12 @@ CheckmarxOneConfigUtilBase.prototype = { "tenant": gr.getValue("tenant"), "checkmarxone_api_base_url": gr.getValue("checkmarxone_api_base_url"), "checkmarxone_server_url": gr.getValue("checkmarxone_server_url"), - "include_first_detection_date": gr.getValue("include_first_detection_date") === "1", + "include_first_detection_date": gr.getValue("include_first_detection_date") === "1", "import_sca": gr.getValue("import_sca") === "1", "import_sast": gr.getValue("import_sast") === "1", "triaging_in_snow": gr.getValue("triaging_in_snow") === "1", - "vulnerability_threshold_level" : gr.getValue("vulnerability_threshold_level"), - - + "vulnerability_threshold_level": gr.getValue("vulnerability_threshold_level"), + "access_token": gr.access_token.getDecryptedValue(), }; new sn_sec_int.Implementation().setConfiguration(instance, newconfig); @@ -84,11 +80,13 @@ CheckmarxOneConfigUtilBase.prototype = { admin 2022-11-17 05:45:19 508f0d54471f1110328ca368436d43f8 - +37 CheckmarxOneConfigUtilBase 3d20e92d47471110328ca368436d436a 3d20e92d47471110328ca368436d436a sys_script_include_508f0d54471f1110328ca368436d43f8 +admin +2023-08-16 15:13:31 diff --git a/Scripts/CheckmarxOneConfigUtil_sys_script_include_5c0f0d18471f1110328ca368436d4357.xml b/Scripts/CheckmarxOneConfigUtil_sys_script_include_5c0f0d18471f1110328ca368436d4357.xml index 29403fb..cc1b182 100644 --- a/Scripts/CheckmarxOneConfigUtil_sys_script_include_5c0f0d18471f1110328ca368436d4357.xml +++ b/Scripts/CheckmarxOneConfigUtil_sys_script_include_5c0f0d18471f1110328ca368436d4357.xml @@ -1,5 +1,5 @@ - + public true diff --git a/Scripts/CheckmarxOneScanSummaryIntegration_sys_script_include_d7f2d2e447131110328ca368436d4321.xml b/Scripts/CheckmarxOneScanSummaryIntegration_sys_script_include_d7f2d2e447131110328ca368436d4321.xml index 998f130..56693f8 100644 --- a/Scripts/CheckmarxOneScanSummaryIntegration_sys_script_include_d7f2d2e447131110328ca368436d4321.xml +++ b/Scripts/CheckmarxOneScanSummaryIntegration_sys_script_include_d7f2d2e447131110328ca368436d4321.xml @@ -1,5 +1,5 @@ - + public true @@ -21,8 +21,6 @@ CheckmarxOneScanSummaryIntegration.prototype = Object.extendsObject(sn_vul.Appli if (params.run) { // appId, offset response = this.getSummaryReport(Object.keys(params.run)[0], params.run[Object.keys(params.run)[0]]); - this.validateXML(response, 'error'); - } params = this._serializeParameters(this._nextParameters(params)); this.setNextRunParameters(params); @@ -38,7 +36,6 @@ CheckmarxOneScanSummaryIntegration.prototype = Object.extendsObject(sn_vul.Appli if (response == "") { response = ''; } - return { contents: new GlideSysAttachment().write(this.PROCESS, this.FILENAME, "xml", response), contentType: "sys_attachment", @@ -94,7 +91,6 @@ CheckmarxOneScanSummaryIntegration.prototype = Object.extendsObject(sn_vul.Appli } reportContent = scanSummaryRootNodeStart + includescanSummaryAll + scanSummaryRootNodeEnd; - } catch (err) { gs.info(this.MSG + " getSummaryReport : Error while getting the summary report." + err); throw err; @@ -174,7 +170,6 @@ CheckmarxOneScanSummaryIntegration.prototype = Object.extendsObject(sn_vul.Appli return delta; }, - //to get offset(to get offset value as 1 , to get details of last scan) _getoffsets: function(appId) { var offsets = []; @@ -184,7 +179,7 @@ CheckmarxOneScanSummaryIntegration.prototype = Object.extendsObject(sn_vul.Appli if (offsetId) { offsets.push(offsetId); var date = new GlideDateTime(); - } + } return offsets; }, @@ -231,10 +226,13 @@ CheckmarxOneScanSummaryIntegration.prototype = Object.extendsObject(sn_vul.Appli admin 2022-11-18 05:18:19 d7f2d2e447131110328ca368436d4321 +148 CheckmarxOneScanSummaryIntegration 3d20e92d47471110328ca368436d436a 3d20e92d47471110328ca368436d436a sys_script_include_d7f2d2e447131110328ca368436d4321 +apoorva.singh@checkmarx.com +2023-06-26 17:01:21 diff --git a/Scripts/CheckmarxOneScanSummaryProcessor_sys_script_include_ec0e828f47f42110328ca368436d433b.xml b/Scripts/CheckmarxOneScanSummaryProcessor_sys_script_include_ec0e828f47f42110328ca368436d433b.xml index b7bf22a..a2c53db 100644 --- a/Scripts/CheckmarxOneScanSummaryProcessor_sys_script_include_ec0e828f47f42110328ca368436d433b.xml +++ b/Scripts/CheckmarxOneScanSummaryProcessor_sys_script_include_ec0e828f47f42110328ca368436d433b.xml @@ -1,5 +1,5 @@ - + public true @@ -44,9 +44,8 @@ CheckmarxOneScanSummaryProcessor.prototype = Object.extendsObject(sn_vul.Applica sastdata['source_scan_id'] = Sastattributes.id; sastdata['detected_flaw_count'] = +Sastattributes.total_no_flaws; sastdata['last_scan_date'] = new GlideDateTime(Sastattributes.last_scan_date); - sastdata['scan_summary_name'] = Sastattributes.app_name + ' ' + sastdata['last_scan_date']; + sastdata['scan_summary_name'] = Sastattributes.id + ' ' + sastdata['last_scan_date']; this._upsert(sastdata); - } catch (ex) { errorMessage = gs.getMessage("Error in retriving data for scan list integration!"); gs.error(this.MSG + "errorMessage " + ex); @@ -63,16 +62,17 @@ CheckmarxOneScanSummaryProcessor.prototype = Object.extendsObject(sn_vul.Applica gs.error(this.MSG + "Error occurred while validating or parsing the XML: " + ex); throw ex; } - - while (iter.hasNext()) { + var data = {}; + while (iter.hasNext()) { + try { var appNode = iter.next(); var attributes = appNode.getAttributes(); //map attributes from Checkmarx into the servicenow scan summary table data['source_app_id'] = attributes.app_id; - data['source_scan_id'] = attributes.id; + data['source_scan_id'] = attributes.id; data['detected_flaw_count'] = +attributes.total_no_flaws; data['last_scan_date'] = new GlideDateTime(attributes.last_scan_date); - data['scan_summary_name'] = attributes.app_name + ' ' + data['last_scan_date']; + data['scan_summary_name'] = attributes.id + ' ' + data['last_scan_date']; this._upsert(data); } catch (ex) { errorMessage = gs.getMessage("Error in retriving data for scan list integration!"); @@ -89,6 +89,8 @@ CheckmarxOneScanSummaryProcessor.prototype = Object.extendsObject(sn_vul.Applica } else gs.warn(this.MSG + ':process called with no attachment'); }, + + _parseStatic: function(node, data) { try { this._handleScanType(node, data, 'last_static_scan_date'); @@ -126,7 +128,6 @@ CheckmarxOneScanSummaryProcessor.prototype = Object.extendsObject(sn_vul.Applica throw err; } }, - type: 'CheckmarxOneScanSummaryProcessor' });]]> sys_script_include diff --git a/Scripts/CheckmarxOneUtilBase_sys_script_include_1980bcb147935110328ca368436d435a.xml b/Scripts/CheckmarxOneUtilBase_sys_script_include_1980bcb147935110328ca368436d435a.xml index 068f387..e8add3f 100644 --- a/Scripts/CheckmarxOneUtilBase_sys_script_include_1980bcb147935110328ca368436d435a.xml +++ b/Scripts/CheckmarxOneUtilBase_sys_script_include_1980bcb147935110328ca368436d435a.xml @@ -1,5 +1,5 @@ - + public true @@ -29,6 +29,7 @@ CheckmarxOneUtilBase.prototype = { } return this._makeRestCall(apiurl, configId, token, 'projects', "get"); }, + //get one project from project list getProject: function(configId) { try { @@ -37,7 +38,7 @@ CheckmarxOneUtilBase.prototype = { var accesscontrolbaseUrl = config.checkmarxone_server_url; var apibaseurl = config.checkmarxone_api_base_url; var method = "post"; - var token = this.getAccessToken(accesscontrolbaseUrl, config, method, request); + var token = this.getNewToken(accesscontrolbaseUrl, config, method, request, config.client_id, config.client_secret, config.tenant, config.access_token); var query = '/api/projects/?offset=0&limit=1'; } catch (err) { gs.error(this.MSG + " getProject: Error while getting project." + err); @@ -45,6 +46,7 @@ CheckmarxOneUtilBase.prototype = { } return this._makeRestApiCall(apibaseurl, configId, token, query, "get"); }, + //get new project list getNewProjectList: function(configId) { try { @@ -64,6 +66,7 @@ CheckmarxOneUtilBase.prototype = { } return projectJSON; }, + //get 50 project list at a time getNextProjectList: function(configId, offsetno) { try { @@ -86,6 +89,27 @@ CheckmarxOneUtilBase.prototype = { return projectJSON; }, + //get Project By Id + getProjectById: function(configId, projectId) { + try { + var request = new sn_ws.RESTMessageV2(); + var config = this._getConfig(configId); + var accesscontrolbaseUrl = config.checkmarxone_server_url; + var apibaseurl = config.checkmarxone_api_base_url; + var method = "post"; + var token = this.getAccessToken(accesscontrolbaseUrl, config, method, request); + var query = '/api/projects/' + projectId; + var resp = this._makeRestApiCall(apibaseurl, configId, token, query, "get"); + var body = resp.getBody(); + var projectJSON = JSON.parse(body); + + } catch (err) { + gs.error(this.MSG + " getProjectInfo: Error while getting the project info." + err); + throw err; + } + return projectJSON; + }, + //List of scanIds for a given app/project getScanList: function(configId, projectId, last_run_date) { try { @@ -122,6 +146,7 @@ CheckmarxOneUtilBase.prototype = { return this._makeRestApiCall(apibaseurl, configId, token, query, "get"); }, + // to fetch scan details of particular scanId getScanDetails: function(configId, scanId) { try { @@ -168,6 +193,7 @@ CheckmarxOneUtilBase.prototype = { return count; }, + // to get vulnerabilities information of scanId getVulInfo: function(configId, scanId, offsetId) { try { @@ -228,6 +254,7 @@ CheckmarxOneUtilBase.prototype = { return flaws; }, + //Sast scan details of a given scanId getSastScanSummaryInfo: function(configId, scanId) { try { @@ -262,6 +289,7 @@ CheckmarxOneUtilBase.prototype = { return flaws; }, + //To get remediation status for state mapping getSASTRemediationStatus: function(status, state) { try { @@ -278,11 +306,12 @@ CheckmarxOneUtilBase.prototype = { return remediation_status; }, + //To get remediation status for state mapping getSCARemediationStatus: function(status, state) { try { - if (state == 'NOT_IGNORED' || status == 'FIXED' || status == 'RESOLVED') { + if (state == 'NOT_IGNORED' || status == 'FIXED' || status == 'RESOLVED' || state == 'TO_VERIFY') { var remediation_status = status; } else { remediation_status = state; @@ -323,7 +352,7 @@ CheckmarxOneUtilBase.prototype = { "import_sca": gr.getValue("import_sca") === "1", "import_sast": gr.getValue("import_sast") === "1", "triaging_in_snow": gr.getValue("triaging_in_snow") === "1", - "access_token": gr.getValue("access_token"), + "access_token": gr.access_token.getDecryptedValue(), "vulnerability_threshold_level": gr.getValue("vulnerability_threshold_level"), }; } catch (err) { @@ -341,11 +370,12 @@ CheckmarxOneUtilBase.prototype = { try { var accessToken = currentToken; if (accessToken == null || accessToken == "" || this._isTokenExpired(this._getExpTimeFromAccessToken(accessToken)) || !this._checkClientId(username, accessToken)) { + gs.info("Token is expired or client Id is changed, Recreating token.."); var fullUrl = baseUrl + '/auth/realms/' + tenant + '/protocol/openid-connect/token'; var query = "client_id=" + username + "&grant_type=" + "client_credentials" + "&client_secret=" + password; request.setEndpoint(fullUrl); request.setHttpMethod(method); - request.setLogLevel('all'); + request.setLogLevel('basic'); request.setRequestBody(query); request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); request.setRequestHeader("Accept", "application/json"); @@ -365,6 +395,37 @@ CheckmarxOneUtilBase.prototype = { return accessToken; }, + getNewToken: function(baseUrl, config, method, request, username, password, tenant, currentToken) { + + try { + + var fullUrl = baseUrl + '/auth/realms/' + tenant + '/protocol/openid-connect/token'; + var query = "client_id=" + username + "&grant_type=" + "client_credentials" + "&client_secret=" + password; + request.setEndpoint(fullUrl); + request.setHttpMethod(method); + request.setLogLevel('basic'); + request.setRequestBody(query); + request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); + request.setRequestHeader("Accept", "application/json"); + //Convert the object to string and set it to Request Body- + request.setRequestBody(query); + var response = this._checkResponseStatus(request); + var responseBody = response.getBody(); + var tokenResponse = JSON.parse(responseBody); + accessToken = tokenResponse.access_token; + this.saveInstanceTokens(config, accessToken); + + } catch (err) { + + gs.error(this.MSG + " :_getToken : Error while getting the token." + err); + throw err; + + } + + return accessToken; + + }, + //Compare current clientId with accessToken's clientId _checkClientId: function(clientId, accessToken) { try { @@ -376,7 +437,7 @@ CheckmarxOneUtilBase.prototype = { return false; } catch (err) { gs.error(this.MSG + " :checkClientId :Error in checkClientId." + err); - throw err; + return false; } }, @@ -388,13 +449,15 @@ CheckmarxOneUtilBase.prototype = { var expTime = decodedToken.exp; } catch (err) { gs.error(this.MSG + " :getExpTimeFromAccessToken :Error in getExpTimeFromAccessToken."); - throw err; + return 0; } return expTime; }, // This method checks if access token is expired or not. _isTokenExpired: function(tokenExpTime) { try { + if(tokenExpTime == 0) + return true; var dateTime = new GlideDateTime(); var currentTime = dateTime.getNumericValue() / 1000; currentTime = parseInt(currentTime); @@ -437,7 +500,7 @@ CheckmarxOneUtilBase.prototype = { var newHeader = "Bearer " + token; r.setRequestHeader('Authorization', newHeader); r.setHttpTimeout(30000); - r.setLogLevel('all'); + r.setLogLevel('basic'); } catch (err) { gs.error(this.MSG + " :setRequestParams :Error in setting the reuest params for REST API call"); throw err; @@ -482,14 +545,14 @@ CheckmarxOneUtilBase.prototype = { r.setRequestHeader("Accept", "application/json"); r.setRequestHeader("Authorization", newHeader); r.setHttpTimeout(30000); - r.setLogLevel('all'); + r.setLogLevel('basic'); } catch (err) { gs.error(this.MSG + " :_makeRestApiCall :Error in making API call."); throw err; } return this._checkResponseStatus(r); }, - // 2022-12-08T09:33:00.028555Z to 2022-12-08 09:33:00 + // 2022-12-08T09:33:00.028555Z to 2022-12-08 09:33:00 parseDate: function(str) { var a = str.replace('T', ' '); var b = a.replace('T', ' '); @@ -510,6 +573,7 @@ CheckmarxOneUtilBase.prototype = { return str3; }, + // Saves the access tokens to Service Now configuration DB saveInstanceTokens: function(config, accessToken) { try { @@ -518,15 +582,15 @@ CheckmarxOneUtilBase.prototype = { gr.next(); var instance = gr.getValue("integration_instance"); if (accessToken == 'undefined') { - tempAccessToken = gr.getValue("access_token"); //config.access_token; + tempAccessToken = gr.access_token.getDecryptedValue(); //config.access_token; } else { tempAccessToken = accessToken; } - gr.setValue("access_token", tempAccessToken); + gr.access_token.setDisplayValue(tempAccessToken); gr.update(); - var implConfig = new GlideRecord("sn_sec_int_impl_config"); + var implConfig = new GlideRecord("sn_sec_int_impl_config"); implConfig.addQuery("implementation", instance); implConfig.query(); while (implConfig.next()) { @@ -535,13 +599,14 @@ CheckmarxOneUtilBase.prototype = { var configVal = gr.getValue(configName); if (configName == 'access_token') - configVal = tempAccessToken; + configVal = gr.getValue("access_token"); if (implConfig.configuration.elem_type == "boolean") implConfig.setValue("value", configVal === "1"); else implConfig.setValue("value", configVal); implConfig.update(); } + var newconfig = { "client_secret": gr.client_secret.getDecryptedValue(), "client_id": gr.getValue("client_id"), @@ -550,9 +615,10 @@ CheckmarxOneUtilBase.prototype = { "checkmarxone_api_base_url": gr.getValue("checkmarxone_api_base_url"), "checkmarxone_server_url": gr.getValue("checkmarxone_server_url"), "include_first_detection_date": gr.getValue("include_first_detection_date") === "1", - "import_sca": gr.getValue("import_dast") === "1", + "import_sca": gr.getValue("import_sca") === "1", "import_sast": gr.getValue("import_sast") === "1", "triaging_in_snow": gr.getValue("triaging_in_snow") === "1", + "access_token": gr.access_token.getDecryptedValue(), "vulnerability_threshold_level": gr.getValue("vulnerability_threshold_level"), }; new sn_sec_int.Implementation().setConfiguration(instance, newconfig); @@ -590,20 +656,19 @@ CheckmarxOneUtilBase.prototype = { throw this.MSG + 'Error: ' + err; }, - type: 'CheckmarxOneUtilBase' };]]> sys_script_include admin 2022-11-21 19:26:28 1980bcb147935110328ca368436d435a -152 +164 CheckmarxOneUtilBase 3d20e92d47471110328ca368436d436a 3d20e92d47471110328ca368436d436a sys_script_include_1980bcb147935110328ca368436d435a -apoorva.singh@checkmarx.com -2023-06-27 08:25:18 +admin +2023-08-21 11:22:27 diff --git a/Scripts/CheckmarxOneUtil_sys_script_include_afffecb147935110328ca368436d43ea.xml b/Scripts/CheckmarxOneUtil_sys_script_include_afffecb147935110328ca368436d43ea.xml index f4249d0..e036977 100644 --- a/Scripts/CheckmarxOneUtil_sys_script_include_afffecb147935110328ca368436d43ea.xml +++ b/Scripts/CheckmarxOneUtil_sys_script_include_afffecb147935110328ca368436d43ea.xml @@ -1,5 +1,5 @@ - + public true diff --git a/Scripts/Update_Set_GA_1.0.10.xml b/Scripts/Update_Set_GA_1.0.12.xml similarity index 66% rename from Scripts/Update_Set_GA_1.0.10.xml rename to Scripts/Update_Set_GA_1.0.12.xml index aeff76f..2287fbd 100644 --- a/Scripts/Update_Set_GA_1.0.10.xml +++ b/Scripts/Update_Set_GA_1.0.12.xml @@ -1,9 +1,9 @@ - + 3d20e92d47471110328ca368436d436a Checkmarx One Vulnerability Integration x_chec3_chexone -1.0.10 +1.0.12 @@ -15,16 +15,16 @@ -416816fe9740f910026f72021153af86 +40c56dd697c5f110026f72021153af61 loaded sys_remote_update_set -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 -2368d2fe9740f910026f72021153af2d +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:27 +3fc5211a97c5f110026f72021153afeb 0 -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:27 @@ -34,28 +34,28 @@ 3d20e92d47471110328ca368436d436a customer -sys_data_source_36a656a847131110328ca368436d43de -<?xml version="1.0" encoding="UTF-8"?><record_update table="sys_data_source"><sys_data_source action="INSERT_OR_UPDATE"><batch_size>1000</batch_size><category/><connection_override_last_success_time/><connection_timeout>0</connection_timeout><connection_url>attachment://sys_data_source:36a656a847131110328ca368436d43de/</connection_url><connection_url_parameters/><csv_delimiter/><data_in_single_column>false</data_in_single_column><data_loader><![CDATA[(function loadData(import_set_table) { +sys_data_source_61c612a847131110328ca368436d43bf +<?xml version="1.0" encoding="UTF-8"?><record_update table="sys_data_source"><sys_data_source action="INSERT_OR_UPDATE"><batch_size>1000</batch_size><category/><connection_alias/><connection_override_last_success_time/><connection_timeout>0</connection_timeout><connection_url>attachment://sys_data_source:61c612a847131110328ca368436d43bf/</connection_url><connection_url_parameters/><csv_delimiter/><data_in_single_column>false</data_in_single_column><data_loader><![CDATA[(function loadData(import_set_table) { // Add your code here to insert data to import_set_table -})(import_set_table);]]></data_loader><database_name/><database_port/><discard_arrays>true</discard_arrays><expand_node_children>false</expand_node_children><file_path/><file_retrieval_method>Attachment</file_retrieval_method><format>XML</format><glide_keystore>false</glide_keystore><header_row>0</header_row><import_set_table_label>CheckmarxOne Application List Import</import_set_table_label><import_set_table_name>x_chec3_chexone_checkmarxone_application_list_import</import_set_table_name><instance_name/><jdbc_password/><jdbc_server/><jdbc_user_name/><jpath_root_node/><last_run_database_field/><last_run_datetime/><last_success_import_time/><ldap_target/><ldapprobe_result_set_rows>200</ldapprobe_result_set_rows><limit/><maximum_rows/><mid_server/><name>CheckmarxOne Application List3</name><offset>0</offset><oracle_port>1521</oracle_port><oracle_sid>orcl</oracle_sid><parsing_script><![CDATA[// The input value can be accessed through the variables named "line", "lineNumber" and "result"// The function uses result variable to return parse result back. (function(line,lineNumber,result) { // add code here})(line,lineNumber,result);]]></parsing_script><properties/><query>All Rows from Table</query><query_timeout>0</query_timeout><request_action/><scp_authentication>Username and Password</scp_authentication><scp_password/><scp_port/><scp_server/><scp_user_name/><sheet_number>0</sheet_number><sql_statement/><ssh_keyfile_path/><support_pagination>false</support_pagination><sys_class_name>sys_data_source</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2022-11-18 05:33:46</sys_created_on><sys_id>36a656a847131110328ca368436d43de</sys_id><sys_mod_count>2</sys_mod_count><sys_name>CheckmarxOne Application List3</sys_name><sys_package display_value="Checkmarx One Vulnerability Integration" source="x_chec3_chexone">3d20e92d47471110328ca368436d436a</sys_package><sys_policy/><sys_scope display_value="Checkmarx One Vulnerability Integration">3d20e92d47471110328ca368436d436a</sys_scope><sys_update_name>sys_data_source_36a656a847131110328ca368436d43de</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2023-03-02 12:36:40</sys_updated_on><table_name/><type>File</type><use_batch_import>false</use_batch_import><use_integrated_authentication>false</use_integrated_authentication><use_last_run_datetime>false</use_last_run_datetime><xpath_root_node>/ignore/this/path</xpath_root_node><zipped>false</zipped></sys_data_source></record_update> -46781969 -2368d2fe9740f910026f72021153af2d +})(import_set_table);]]></data_loader><data_stream_action/><data_stream_action_inputs/><data_stream_connection_alias/><database_name/><database_port/><discard_arrays>true</discard_arrays><expand_node_children>false</expand_node_children><file_path/><file_retrieval_method>Attachment</file_retrieval_method><format>XML</format><glide_keystore>false</glide_keystore><header_row>0</header_row><import_set_table_label>CheckmarxOne Application List Import</import_set_table_label><import_set_table_name>x_chec3_chexone_checkmarxone_application_list_import</import_set_table_name><instance_name/><jdbc_password/><jdbc_server/><jdbc_user_name/><jpath_root_node/><last_run_database_field/><last_run_datetime/><last_success_import_time/><ldap_target/><ldapprobe_result_set_rows>200</ldapprobe_result_set_rows><limit/><maximum_rows/><mid_server/><name>CheckmarxOne Application List4</name><offset>0</offset><oracle_port>1521</oracle_port><oracle_sid>orcl</oracle_sid><parsing_script><![CDATA[// The input value can be accessed through the variables named "line", "lineNumber" and "result"// The function uses result variable to return parse result back. (function(line,lineNumber,result) { // add code here})(line,lineNumber,result);]]></parsing_script><properties/><query>All Rows from Table</query><query_timeout>0</query_timeout><request_action/><scp_authentication>Username and Password</scp_authentication><scp_password/><scp_port/><scp_server/><scp_user_name/><sheet_number>0</sheet_number><sql_statement/><ssh_keyfile_path/><support_pagination>false</support_pagination><sys_class_name>sys_data_source</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2022-11-18 05:34:13</sys_created_on><sys_id>61c612a847131110328ca368436d43bf</sys_id><sys_mod_count>2</sys_mod_count><sys_name>CheckmarxOne Application List4</sys_name><sys_package display_value="Checkmarx One Vulnerability Integration" source="x_chec3_chexone">3d20e92d47471110328ca368436d436a</sys_package><sys_policy/><sys_scope display_value="Checkmarx One Vulnerability Integration">3d20e92d47471110328ca368436d436a</sys_scope><sys_update_name>sys_data_source_61c612a847131110328ca368436d43bf</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2023-03-02 12:38:24</sys_updated_on><table_name/><type>File</type><use_batch_import>false</use_batch_import><use_integrated_authentication>false</use_integrated_authentication><use_last_run_datetime>false</use_last_run_datetime><xpath_root_node>/ignore/this/path</xpath_root_node><zipped>false</zipped></sys_data_source><sys_variable_value action="delete_multiple" query="document_key=61c612a847131110328ca368436d43bf"/></record_update> +-1512733516 +3fc5211a97c5f110026f72021153afeb false -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 -236896fe9740f910026f72021153af54 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:27 +00d5211a97c5f110026f72021153aff7 0 -1896d41433c0000001 -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 +18a6476b54b0000001 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:27 -CheckmarxOne Application List3 +CheckmarxOne Application List4Data Sourceglobal -53b37d8e893321101cde5bfc263dd26f -0a1fe10a68332110643b62df3a52a953:1871655709,0a1fe10a68332110643b62df3a52a953:1871655709,028416bf6263a1101cbc14d65324fbd3:1871655709,028416bf6263a1101cbc14d65324fbd3:1871655709,7aeaed7fb9af6110354a3ae7f7da9b24:1871655709,7aeaed7fb9af6110354a3ae7f7da9b24:1871655709,1c3625f79baf6110e819406a89915e21:1871655709,1c3625f79baf6110e819406a89915e21:1871655709,b7e5c9f3f12f6110bedddfd245658b27:1871655709,b7e5c9f3f12f6110bedddfd245658b27:1871655709,7ec4547b95a76110d6305eb56fd26109:1871655709,7ec4547b95a76110d6305eb56fd26109:1871655709,16c99b494ae7a5108e0a3a8f763a37c7:1871655709,16c99b494ae7a5108e0a3a8f763a37c7:1871655709,f2fd7b7b309361109e339fc127620d2e:46781969,1ca535deffbf29502f17b44edd6b1dad:-238347270,e43ba37be0e161108447718c84d7f37b:46781969,6cceb5023321a510b86739c6798b206c:-184884811,6cceb5023321a510b86739c6798b206c:-184884811,74dfdff1c4ede110d3da1db296a5474f:-327921942 +2ddabc04df0d3d5072e1acaaf22d6d5f +2ddabc04df0d3d5072e1acaaf22d6d5f:-1512733516,b5231299852cb110f3b971abf3dac916:-1512733516,e456821673e83110d46d805004e00f6f:-1955853272,88905bf5b56871100eb7516358348c19:-1955853272,42297b334860b110a57114dda13054f9:122033156,027c9388bb703110079ff7d19d6f520c:-1518882447,16a453153d90311002983b3dbe653608:122033156,7ac53ac1009431104a389e4ff8fb3e47:122033156,b905528c25f32110a04c4e21c0ef902c:122033156,b905528c25f32110a04c4e21c0ef902c:122033156,ab8ce90c7f3321101232b3e7d2f2cb09:122033156,ab8ce90c7f3321101232b3e7d2f2cb09:122033156,da8bd6bf7c2f21102e2da87eda878b40:122033156,da8bd6bf7c2f21102e2da87eda878b40:122033156,334dc837a2232110380d518526952d4f:122033156,334dc837a2232110380d518526952d4f:122033156,6071a3d77ca32110ac309f505c24ba85:122033156,24f3830ae3a3211065a6a0f386b3869e:122033156,24f3830ae3a3211065a6a0f386b3869e:122033156,c42adbfc32e3a910cbed32ea0d117288:122033156,c42adbfc32e3a910cbed32ea0d117288:122033156,0e552e78b86f69103bb08c14f329e93c:122033156,0e552e78b86f69103bb08c14f329e93c:122033156,0c969e74082f691062525d42508c87a4:122033156,0c969e74082f691062525d42508c87a4:122033156,46a15d6cc1e72910f8493cfcdf4d3be9:122033156,46a15d6cc1e72910f8493cfcdf4d3be9:122033156,8720d518a1e7e510e21b8541d8241ebd:122033156,44b0ec98dae3e510b38ac16d15bb5299:122033156,44b0ec98dae3e510b38ac16d15bb5299:122033156,5f0ecddcd6fa6110bec54d8388586f7f:122033156,3eaec528e243a9104a1eb1bf4c56cc9c:122033156,7e7b73f775103110c71ce33f814263e2:122033156,61561face788f110076abc7630438822:122033156,b5231299852cb110f3b971abf3dac916:-1512733516,f21f250abd332110939aa5ceab570c5d:122033156,f21f250abd332110939aa5ceab570c5d:122033156,e3841abf0063a1100aa6dd2507292f29:122033156,e3841abf0063a1100aa6dd2507292f29:122033156,93eaed7f76af6110de1892e7f59a10ee:122033156,93eaed7f76af6110de1892e7f59a10ee:122033156,243665f7baaf6110b72fef1046776304:122033156,243665f7baaf6110b72fef1046776304:122033156,58f50df3422f61100b1cc88cc9c21916:122033156,58f50df3422f61100b1cc88cc9c21916:122033156,04d4947b8ba761105564bf28a87b6c83:122033156,04d4947b8ba761105564bf28a87b6c83:122033156,9bc91f49c4e7a5108a731a16c3e88f66:122033156,9bc91f49c4e7a5108a731a16c3e88f66:122033156,36fd7b7b11936110fbe71c40d4948f30:-1702840584,0ea5b5deeabf2950eee821389538b071:59603502,5c28fb925de2a1107fa06ef52f5e585b:-1702840584,b4ceb5020b21a51081ca3654a2f362ee:130027749,b4ceb5020b21a51081ca3654a2f362ee:130027749,70dfdff1dbede110db0703eb9db16752:-1313865211 @@ -64,24 +64,29 @@ 3d20e92d47471110328ca368436d436a customer -sys_dictionary_x_chec3_chexone_checkmarxone_application_list_integratio_null -truefalsefalse0falsefalsefalsefalsecollectionfalse40x_chec3_chexone_checkmarxone_application_list_integratiofalsefalsefalsefalsefalsesys_dictionaryVR.System2022-11-28 20:37:15ae65c900472f1110328ca368436d4371x_chec3_chexone_checkmarxone_application_list_integratio3d20e92d47471110328ca368436d436a3d20e92d47471110328ca368436d436asys_dictionary_x_chec3_chexone_checkmarxone_application_list_integratio_nullsystem2023-07-05 10:19:49falsefalsefalsefalsefalsesimplefalsefalse]]> -836975329 -2368d2fe9740f910026f72021153af2d +sys_dictionary_x_chec3_chexone_checkmarxone_appvul_item_import_null +<?xml version="1.0" encoding="UTF-8"?><record_update><sys_dictionary action="INSERT_OR_UPDATE" element="" extends="sys_import_set_row" table="x_chec3_chexone_checkmarxone_appvul_item_import"><active>true</active><array>false</array><attributes/><audit>false</audit><calculation><![CDATA[(function calculatedFieldValue(current) { + + // Add your code here + return ''; // return the calculated value + +})(current);]]></calculation><choice/><choice_field/><choice_table/><column_label/><comments/><create_roles/><default_value/><defaultsort/><delete_roles/><dependent/><dependent_on_field/><display>false</display><dynamic_creation>false</dynamic_creation><dynamic_creation_script/><dynamic_default_value/><dynamic_ref_qual/><element/><element_reference>false</element_reference><foreign_database/><formula/><function_definition/><function_field>false</function_field><internal_type display_value="Collection">collection</internal_type><mandatory>false</mandatory><max_length>40</max_length><name>x_chec3_chexone_checkmarxone_appvul_item_import</name><next_element/><primary>false</primary><read_only>false</read_only><read_roles/><reference/><reference_cascade_rule/><reference_floats>false</reference_floats><reference_key/><reference_qual/><reference_qual_condition/><reference_type/><spell_check>false</spell_check><staged>false</staged><sys_class_name>sys_dictionary</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2022-11-10 12:03:47</sys_created_on><sys_id>9543ee0e47875110328ca368436d43a7</sys_id><sys_name>x_chec3_chexone_checkmarxone_appvul_item_import</sys_name><sys_package display_value="Checkmarx One Vulnerability Integration" source="x_chec3_chexone">3d20e92d47471110328ca368436d436a</sys_package><sys_policy/><sys_scope display_value="Checkmarx One Vulnerability Integration">3d20e92d47471110328ca368436d436a</sys_scope><sys_update_name>sys_dictionary_x_chec3_chexone_checkmarxone_appvul_item_import_NULL</sys_update_name><sys_updated_by>system</sys_updated_by><sys_updated_on>2023-08-17 10:46:28</sys_updated_on><table_reference>false</table_reference><text_index>false</text_index><unique>false</unique><use_dependent_field>false</use_dependent_field><use_dynamic_default>false</use_dynamic_default><use_reference_qualifier>simple</use_reference_qualifier><virtual>false</virtual><virtual_type/><widget/><write_roles/><xml_view>false</xml_view></sys_dictionary></record_update> +1336330122 +3fc5211a97c5f110026f72021153afeb false -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 -236896fe9740f910026f72021153af57 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:27 +00d5211a97c5f110026f72021153affa 0 -1896d4149410000001 -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 -
x_chec3_chexone_checkmarxone_application_list_integratio
-CheckmarxOne Application List Integratio +18a6476bb770000001 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:27 +x_chec3_chexone_checkmarxone_appvul_item_import
+CheckmarxOne AppVul Item Import Dictionary global -21b3f98eee33211082d9bac0686c9c61 -ad0f69c6343321104566da076cca0a8f:1178708909,ad0f69c6343321104566da076cca0a8f:1178708909,4774de7f1263a110564114df78ce986b:1178708909,4774de7f1263a110564114df78ce986b:1178708909,88eaa97f12af61109999c2b5bb3b6403:1178708909,88eaa97f12af61109999c2b5bb3b6403:1178708909,2926edb76caf611056b1f7975bd70d20:1178708909,2926edb76caf611056b1f7975bd70d20:1178708909,05e545f3642f6110eaa8606f501ec8a3:1178708909,05e545f3642f6110eaa8606f501ec8a3:1178708909,8fb49c3b42a761104355bc491323bfd0:1178708909,8fb49c3b42a761104355bc491323bfd0:1178708909,dbb9574974e7a510bfed2f492310da34:1178708909,dbb9574974e7a510bfed2f492310da34:1178708909,21fdf77b6693611037e5cc98398e34a9:836975329,7285bd9ee5bf2950d8d914baf3222656:1178708909,3dbe71022121a510a948936de3408056:1961202836,3dbe71022121a510a948936de3408056:1961202836 +bdb3f98e56332110f5b3146735d1eb75 +801fadc679332110f94df25682e160d3:-60845994,0d464ed20fe8311021c7a1b585c5a3e3:-60845994,558057f50168711078737cc22b3acd2e:-60845994,6c29b733aa60b1108d81d8d252baabb8:-60845994,ad6c1f4871703110ca3009e58705a896:1405826925,b3945fd1b190311018984d1690f2257b:-60845994,f3b536c19c9431103abef64f022d2806:-60845994,37f49e4ce6f321109431c7c6a2d9e420:-60845994,37f49e4ce6f321109431c7c6a2d9e420:-60845994,8d8ce50c2b3321106c72d81a47dcc250:-60845994,8d8ce50c2b3321106c72d81a47dcc250:-60845994,0c8bd2bf5b2f211095edffd763ba6ae8:-60845994,0c8bd2bf5b2f211095edffd763ba6ae8:-60845994,dd4dc4377f23211005765eb0f87669b0:-60845994,dd4dc4377f23211005765eb0f87669b0:-60845994,4661ef97eaa32110709ab7fcd4b4e208:-60845994,92d34fc611a321109a4d39f683b40d7b:-60845994,92d34fc611a321109a4d39f683b40d7b:-60845994,391a1bfc4ce3a910307e3735bc140021:-60845994,391a1bfc4ce3a910307e3735bc140021:-60845994,dc556a78206f6910b1d189d95eabb839:-60845994,dc556a78206f6910b1d189d95eabb839:-60845994,9286da74722f6910f9692641cd68aa9a:-60845994,9286da74722f6910f9692641cd68aa9a:-60845994,9ca1996ccae729103b9e519b86acb8ed:-60845994,9ca1996ccae729103b9e519b86acb8ed:-60845994,1020d11886e7e510009f8769e0b618fb:-60845994,0790a89847e3e510aaab35ff744630cc:-60845994,0790a89847e3e510aaab35ff744630cc:-60845994,740e0ddc8ffa61100f165d653f5ced4f:-60845994,0dae05288f43a9103e29668cbf46e4c1:-60845994,f36b7fb76f1031101c6d8257fc0148f4:-60845994,db4697ac2388f110861778636cd79e74:-60845994,801fadc679332110f94df25682e160d3:-60845994,801fadc679332110f94df25682e160d3:-60845994,748492bf0463a110b7e01ac8c6166fb9:-60845994,748492bf0463a110b7e01ac8c6166fb9:-60845994,e1ea6d7fdbaf611072c4bfadbc20ee14:-60845994,e1ea6d7fdbaf611072c4bfadbc20ee14:-60845994,4726a1f77aaf6110a7fac1344cc69a1d:-60845994,4726a1f77aaf6110a7fac1344cc69a1d:-60845994,66e509f3482f61104712825fec409da0:-60845994,66e509f3482f61104712825fec409da0:-60845994,c9c4907b3da7611063407908b725ef13:-60845994,c9c4907b3da7611063407908b725ef13:-60845994,b4c91b496de7a5100361679e53e7fe2f:-60845994,b4c91b496de7a5100361679e53e7fe2f:-60845994,a1fdf77b1f93611084609cb48b1624ba:1336330122,fd9571dec9bf29501fc542db17136cb3:-60845994,87be3502f621a510f3045b60791fd55f:-1089086530,87be3502f621a510f3045b60791fd55f:-1089086530 @@ -90,29 +95,29 @@ 3d20e92d47471110328ca368436d436a customer -sys_dictionary_x_chec3_chexone_checkmarxone_configuration_null -<?xml version="1.0" encoding="UTF-8"?><record_update><sys_dictionary action="INSERT_OR_UPDATE" element="" table="x_chec3_chexone_checkmarxone_configuration"><active>true</active><array>false</array><attributes/><audit>false</audit><calculation><![CDATA[(function calculatedFieldValue(current) { +sys_dictionary_x_chec3_chexone_checkmarxone_configuration_single_tenant +<?xml version="1.0" encoding="UTF-8"?><record_update><sys_dictionary action="INSERT_OR_UPDATE" element="single_tenant" table="x_chec3_chexone_checkmarxone_configuration"><active>true</active><array>false</array><attributes>edge_encryption_enabled=true</attributes><audit>false</audit><calculation><![CDATA[(function calculatedFieldValue(current) { // Add your code here return ''; // return the calculated value -})(current);]]></calculation><choice/><choice_field/><choice_table/><column_label/><comments/><create_roles/><default_value/><defaultsort/><delete_roles/><dependent/><dependent_on_field/><display>false</display><dynamic_creation>false</dynamic_creation><dynamic_creation_script/><dynamic_default_value/><dynamic_ref_qual/><element/><element_reference>false</element_reference><foreign_database/><formula/><function_definition/><function_field>false</function_field><internal_type display_value="Collection">collection</internal_type><mandatory>false</mandatory><max_length>40</max_length><name>x_chec3_chexone_checkmarxone_configuration</name><next_element/><primary>false</primary><read_only>false</read_only><read_roles/><reference/><reference_cascade_rule/><reference_floats>false</reference_floats><reference_key/><reference_qual/><reference_qual_condition/><reference_type/><spell_check>false</spell_check><staged>false</staged><sys_class_name>sys_dictionary</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2022-11-10 11:31:09</sys_created_on><sys_id>1bcb9e4647875110328ca368436d4315</sys_id><sys_name>x_chec3_chexone_checkmarxone_configuration</sys_name><sys_package display_value="Checkmarx One Vulnerability Integration" source="x_chec3_chexone">3d20e92d47471110328ca368436d436a</sys_package><sys_policy/><sys_scope display_value="Checkmarx One Vulnerability Integration">3d20e92d47471110328ca368436d436a</sys_scope><sys_update_name>sys_dictionary_x_chec3_chexone_checkmarxone_configuration_null</sys_update_name><sys_updated_by>system</sys_updated_by><sys_updated_on>2023-07-05 10:19:49</sys_updated_on><table_reference>false</table_reference><text_index>false</text_index><unique>false</unique><use_dependent_field>false</use_dependent_field><use_dynamic_default>false</use_dynamic_default><use_reference_qualifier>simple</use_reference_qualifier><virtual>false</virtual><virtual_type/><widget/><write_roles/><xml_view>false</xml_view></sys_dictionary></record_update> --271463883 -2368d2fe9740f910026f72021153af2d +})(current);]]></calculation><choice/><choice_field/><choice_table/><column_label>Single Tenant</column_label><comments/><create_roles/><default_value/><defaultsort/><delete_roles/><dependent/><dependent_on_field/><display>false</display><dynamic_creation>false</dynamic_creation><dynamic_creation_script/><dynamic_default_value/><dynamic_ref_qual/><element>single_tenant</element><element_reference>false</element_reference><foreign_database/><formula/><function_definition/><function_field>false</function_field><internal_type display_value="">boolean</internal_type><mandatory>false</mandatory><max_length>40</max_length><name>x_chec3_chexone_checkmarxone_configuration</name><next_element/><primary>false</primary><read_only>false</read_only><read_roles/><reference/><reference_cascade_rule/><reference_floats>false</reference_floats><reference_key/><reference_qual/><reference_qual_condition/><reference_type/><spell_check>false</spell_check><staged>false</staged><sys_class_name>sys_dictionary</sys_class_name><sys_created_by>apoorva.singh@checkmarx.com</sys_created_by><sys_created_on>2023-04-27 04:52:27</sys_created_on><sys_id>af7b8e40976aa150026f72021153afc2</sys_id><sys_name>Single Tenant</sys_name><sys_package display_value="Checkmarx One Vulnerability Integration" source="x_chec3_chexone">3d20e92d47471110328ca368436d436a</sys_package><sys_policy/><sys_scope display_value="Checkmarx One Vulnerability Integration">3d20e92d47471110328ca368436d436a</sys_scope><sys_update_name>sys_dictionary_x_chec3_chexone_checkmarxone_configuration_single_tenant</sys_update_name><sys_updated_by>apoorva.singh@checkmarx.com</sys_updated_by><sys_updated_on>2023-04-27 04:52:27</sys_updated_on><table_reference>false</table_reference><text_index>false</text_index><unique>false</unique><use_dependent_field>false</use_dependent_field><use_dynamic_default>false</use_dynamic_default><use_reference_qualifier>simple</use_reference_qualifier><virtual>false</virtual><virtual_type>script</virtual_type><widget/><write_roles/><xml_view>false</xml_view></sys_dictionary></record_update> +-921739734 +3fc5211a97c5f110026f72021153afeb false -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 -236896fe9740f910026f72021153af5a +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28 +00d5211a97c5f110026f72021153affd 0 -1896d4149680000001 -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 +18a6476b80c0000001 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28 x_chec3_chexone_checkmarxone_configuration
-Checkmarx One Configuration +Checkmarx One Configuration.Single Tenant Dictionary global -82b3f98e23332110a21408bf51768ba6 -d70f6dc69d33211095904a0f848e3718:-1326017279,d70f6dc69d33211095904a0f848e3718:-1326017279,548452bfe063a110d8b917fe48de072d:-1326017279,548452bfe063a110d8b917fe48de072d:-1326017279,8deae97f0caf6110fc88d8367eae03f4:-1326017279,8deae97f0caf6110fc88d8367eae03f4:-1326017279,2e2621f7daaf61106b5856e9b3fb17f6:-1326017279,2e2621f7daaf61106b5856e9b3fb17f6:-1326017279,cae5c5f3622f6110d75b93a26520cf67:-1326017279,cae5c5f3622f6110d75b93a26520cf67:-1326017279,1cc4507b14a761100f46c5784927b002:-1326017279,1cc4507b14a761100f46c5784927b002:-1326017279,14c997497be7a5101a6e24eb400fb9f0:-1326017279,14c997497be7a5101a6e24eb400fb9f0:-1326017279,7dfdf77b3393611000954e19dd8cfef0:-271463883,2c9531dee7bf2950930f255ab6bcf958:-1326017279,aabeb102a921a510cd748a57b6c2d6fc:-1016331107,aabeb102a921a510cd748a57b6c2d6fc:-1016331107 +9db3b98ed63321108e789c3812ac4fee +ef0f6dc6e83321101826f3dd352fabd6:1086370038,94460ed20de8311060f86d901118a8ac:1086370038,208017f5926871108e741dc1db5eb326:1086370038,0c297733d560b110978902fa74f696c0:1086370038,cd6cdb48257031107d6ac0cc094ee85c:231414905,0f941fd16190311006131484dce11183:1086370038,47b5b2c1cd943110905a362afe7a81fa:1086370038,d3f45e4c33f321104fcb4befc5a6bb66:1086370038,d3f45e4c33f321104fcb4befc5a6bb66:1086370038,e48ca50cd93321102bd148e9b5ab0f79:1086370038,e48ca50cd93321102bd148e9b5ab0f79:1086370038,a37bd2bfb32f21101d463fbee64e3d10:1086370038,a37bd2bfb32f21101d463fbee64e3d10:1086370038,b84d8437752321104b81854a8bc273d6:1086370038,b84d8437752321104b81854a8bc273d6:1086370038,2161af973fa32110ef119702d17b4052:1086370038,b1d30fc683a3211047b62a655625f78e:1086370038,b1d30fc683a3211047b62a655625f78e:1086370038,151ad7fcfde3a910b12a66a9406fc82e:1086370038,151ad7fcfde3a910b12a66a9406fc82e:1086370038,77452a78ce6f691013a1d2772f94f752:1086370038,77452a78ce6f691013a1d2772f94f752:1086370038,39869a741b2f6910ec8e89cacba846b3:1086370038,39869a741b2f6910ec8e89cacba846b3:1086370038,f391996cdbe72910cc55b881bc450c36:1086370038,f391996cdbe72910cc55b881bc450c36:1086370038,7f10d1189de7e5104770a3ffa592ec03:1086370038,2690a898b7e3e510900ae2554abfeb31:1086370038,2690a898b7e3e510900ae2554abfeb31:1086370038,5c0ec9dc15fa61107cbb8f57ab1d8157:1086370038,30ae05289743a9105ecdaec1286acc10:1086370038,876b3fb76f1031103dbaf459e1b238f9:1086370038,3e4657acf088f1105fe88eef47c07f27:1086370038,ef0f6dc6e83321101826f3dd352fabd6:1086370038,ef0f6dc6e83321101826f3dd352fabd6:1086370038,948452bf4963a110a0f420145fa873cd:1086370038,948452bf4963a110a0f420145fa873cd:1086370038,51ea2d7f1eaf6110dd7287a6f707a058:1086370038,51ea2d7f1eaf6110dd7287a6f707a058:1086370038,f22661f75eaf611038a5afcdfa805774:1086370038,f22661f75eaf611038a5afcdfa805774:1086370038,06e5c5f36a2f6110f60f6510c9c4e0d1:1086370038,06e5c5f36a2f6110f60f6510c9c4e0d1:1086370038,a4c4507b1ea761100258c4ec07026c55:1086370038,a4c4507b1ea761100258c4ec07026c55:1086370038,ecc9d749d4e7a510a04c34781d1dc550:1086370038,ecc9d749d4e7a510a04c34781d1dc550:1086370038,11fdf77b4c936110d963ca199157596c:513616365,b89531de73bf29508ed31110d64ed1cd:1565669561,91abc280166aa15097166c4d01a4204f:513616365 @@ -121,24 +126,24 @@ 3d20e92d47471110328ca368436d436a customer -sys_documentation_x_chec3_chexone_checkmarxone_configuration_count_of_scans_en -count_of_scansenx_chec3_chexone_checkmarxone_configurationCount of Scanssys_documentationadmin2023-02-28 03:52:290db1d3d147516110328ca368436d43840Count of Scans3d20e92d47471110328ca368436d436a3d20e92d47471110328ca368436d436asys_documentation_x_chec3_chexone_checkmarxone_configuration_count_of_scans_enadmin2023-02-28 03:52:29]]> -1975093649 -2368d2fe9740f910026f72021153af2d +sys_documentation_x_chec3_chexone_checkmarxone_configuration_import_sast_en +import_sastenx_chec3_chexone_checkmarxone_configurationInclude SASTssys_documentationadmin2022-11-14 04:45:210a456ddf47031110328ca368436d43571Include SAST3d20e92d47471110328ca368436d436a3d20e92d47471110328ca368436d436asys_documentation_x_chec3_chexone_checkmarxone_configuration_import_sast_enadmin2023-02-27 04:27:07]]> +-1418040684 +3fc5211a97c5f110026f72021153afeb false -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 -236896fe9740f910026f72021153af5e +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28 +00d5611a97c5f110026f72021153af01 0 -1896d41425a0000001 -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 +18a6476b3cf0000001 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28 x_chec3_chexone_checkmarxone_configuration
-Checkmarx One Configuration.Count of Scans +Checkmarx One Configuration.Include SAST Field Label global -e8b3798eee332110461f046608ded4f0 -be0fe9c654332110cb28bc6998081d79:180721825,be0fe9c654332110cb28bc6998081d79:180721825,b77412bf6163a1105b59b4a66efcd78d:180721825,b77412bf6163a1105b59b4a66efcd78d:180721825,74eae97f79af61105b6d9a9257bc0435:180721825,74eae97f79af61105b6d9a9257bc0435:180721825,562621f7a1af61103e390438674c9e63:180721825,562621f7a1af61103e390438674c9e63:180721825,35e585f3592f6110b7897315af7fd6c9:180721825,35e585f3592f6110b7897315af7fd6c9:180721825,04c4107bdca76110195050a0c06d0727:180721825,04c4107bdca76110195050a0c06d0727:180721825,0cc9974951e7a510a5f0026430ac636a:180721825,0cc9974951e7a510a5f0026430ac636a:180721825,fcfdb77baf936110cb465e8a919a6c93:1975093649,1895fd9eb7bf2950af6026ced5495da1:180721825,aabeb102f721a510dd03c5a5496298c9:1303250951,aabeb102f721a510dd03c5a5496298c9:1303250951 +34b3798e3333211025df80777f3492f6 +b60fe9c654332110604b57a6d4c48675:-1608152084,b60fe9c654332110604b57a6d4c48675:-1608152084,bb7412bfee63a1106737028521c7af88:-1608152084,bb7412bfee63a1106737028521c7af88:-1608152084,78eae97f6daf61103d846aaa82b8ca30:-1608152084,78eae97f6daf61103d846aaa82b8ca30:-1608152084,5a2621f7c0af611052829731d6467f5e:-1608152084,5a2621f7c0af611052829731d6467f5e:-1608152084,79e585f3192f6110476cd2c877e2f8c4:-1608152084,79e585f3192f6110476cd2c877e2f8c4:-1608152084,4cc4107b6aa76110800db8a86ed7f522:-1608152084,4cc4107b6aa76110800db8a86ed7f522:-1608152084,40c99749aae7a51039be24ed10031966:-1608152084,40c99749aae7a51039be24ed10031966:-1608152084,b0fdb77b13936110839deea1b4fb5398:-1418040684,c095fd9eadbf295087289f515dfeb59d:-1608152084,a6beb102cb21a51056594a5e29a607aa:175468124,a6beb102cb21a51056594a5e29a607aa:175468124 @@ -147,50 +152,50 @@ 3d20e92d47471110328ca368436d436a customer -sys_embedded_help_role_329f81ae47131110328ca368436d4332 -1000426fc5ae47131110328ca368436d4305sys_embedded_help_roleadmin2022-11-24 05:30:54329f81ae47131110328ca368436d43320426fc5ae47131110328ca368436d43053d20e92d47471110328ca368436d436a3d20e92d47471110328ca368436d436asys_embedded_help_role_329f81ae47131110328ca368436d4332admin2022-11-24 05:30:54]]> -535782254 -2368d2fe9740f910026f72021153af2d +sys_embedded_help_role_470d9e8647875110328ca368436d4304 +1000870d9e8647875110328ca368436d4301sys_embedded_help_roleadmin2022-11-10 11:36:35470d9e8647875110328ca368436d43040870d9e8647875110328ca368436d43013d20e92d47471110328ca368436d436a3d20e92d47471110328ca368436d436asys_embedded_help_role_470d9e8647875110328ca368436d4304admin2022-11-10 11:36:35]]> +-1305287302 +3fc5211a97c5f110026f72021153afeb false -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 -236896fe9740f910026f72021153af61 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28 +00d5611a97c5f110026f72021153af04 0 -1896d413f330000001 -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 +18a6476adb40000001 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28 -426fc5ae47131110328ca368436d4305 +870d9e8647875110328ca368436d4301Embedded Help Role Priorityglobal -13b37d8eb033211002b9ef39f9ab8f85 -751fe10a4a3321100dfab3197b07dd45:-1218726022,751fe10a4a3321100dfab3197b07dd45:-1218726022,068416bf7963a1101bd449ac86d362c4:-1218726022,068416bf7963a1101bd449ac86d362c4:-1218726022,baeaed7f6eaf61102331bb3ee283dc19:-1218726022,baeaed7f6eaf61102331bb3ee283dc19:-1218726022,d83625f7bcaf61103f045b1b8bd8e116:-1218726022,d83625f7bcaf61103f045b1b8bd8e116:-1218726022,77e5c9f3c42f6110c53494f19ccd420c:-1218726022,77e5c9f3c42f6110c53494f19ccd420c:-1218726022,b6c4147b16a76110a156ad1664fc21fb:-1218726022,b6c4147b16a76110a156ad1664fc21fb:-1218726022,5ac99b49bce7a51086865b047cb906b8:-1218726022,5ac99b49bce7a51086865b047cb906b8:-1218726022,b2fd7b7b9d936110e42bfe5f9a1f4e3d:535782254,90a535de8cbf295080470407e3538b79:539830154,50ceb5023e21a510c2a6062fd910d661:1561452732,50ceb5023e21a510c2a6062fd910d661:1561452732,7cdfdff1e1ede11040bb493ccd0a3562:-969912782 +1fb37d8e643321100fa3bff9f43c4694 +8e1fe10a7a332110e5473a27f744ad7d:1899718790,8e1fe10a7a332110e5473a27f744ad7d:1899718790,528456bfe863a110267bda79e438b025:1899718790,528456bfe863a110267bda79e438b025:1899718790,0feaed7f99af6110121b6f10d7ff8c5d:1899718790,0feaed7f99af6110121b6f10d7ff8c5d:1899718790,5c3625f7d0af611028b3b09e5c0e5c73:1899718790,5c3625f7d0af611028b3b09e5c0e5c73:1899718790,7be5c9f3ba2f611002962ac8a33c6453:1899718790,7be5c9f3ba2f611002962ac8a33c6453:1899718790,4fc4547bc1a76110dc5d5d46d32b7033:1899718790,4fc4547bc1a76110dc5d5d46d32b7033:1899718790,62c9db49a0e7a510a1ba5076492d1521:1899718790,62c9db49a0e7a510a1ba5076492d1521:1899718790,f6fd7b7b25936110abb49efc6e2f173f:-1305287302,e4a535de84bf295020bb594efc4e94dd:-1202948237,68ceb5023a21a510d8145778c45cdb8a:1731014656,68ceb5023a21a510d8145778c45cdb8a:1731014656,f8dfdff10aede1107375ba6327c2c765:-1951310530 -DELETE +INSERT_OR_UPDATE 3d20e92d47471110328ca368436d436a customer -sys_kmf_crypto_caller_policy_5a4ef77d97212510026f72021153afcb -truefalse401fa53c5b6220106cdba88ddc81c7549e1f293c5b6220106cdba88ddc81c797falsed0ae16b4dbe1ed909831ac44d4961975AutoGen-scope-x_chec3_chexone-instance_level_glide_encryptertrackfalsesys_kmf_crypto_caller_policyapoorva.singh@checkmarx.com2023-03-14 06:39:555a4ef77d97212510026f72021153afcb03d20e92d47471110328ca368436d436a3d20e92d47471110328ca368436d436asys_kmf_crypto_caller_policy_5a4ef77d97212510026f72021153afcbapoorva.singh@checkmarx.com2023-03-14 06:39:553d20e92d47471110328ca368436d436a3false]]> --1210043201 -2368d2fe9740f910026f72021153af2d +sys_kmf_crypto_caller_policy_ae9348f897862150026f72021153af99 +truefalse401fa53c5b6220106cdba88ddc81c7549e1f293c5b6220106cdba88ddc81c797falsed0ae16b4dbe1ed909831ac44d4961975AutoGen-scope-x_chec3_chexone-instance_level_glide_encryptertrackfalsesys_kmf_crypto_caller_policyapoorva.singh@checkmarx.com2023-04-04 06:22:07ae9348f897862150026f72021153af990AutoGen-scope-x_chec3_chexone-instance_level_glide_encrypter3d20e92d47471110328ca368436d436a3d20e92d47471110328ca368436d436asys_kmf_crypto_caller_policy_ae9348f897862150026f72021153af99apoorva.singh@checkmarx.com2023-04-04 06:22:073d20e92d47471110328ca368436d436a3false]]> +-39906685 +3fc5211a97c5f110026f72021153afeb false -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 -236896fe9740f910026f72021153af64 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28 +00d5611a97c5f110026f72021153af07 0 -1896d4144c00000001 -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 +18a6476b7da0000001 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28
Module Access Policy global -a4ceb502df21a510d9826bd49fb9d1c1 -a4ceb502df21a510d9826bd49fb9d1c1:-1914329577,924ef77d54212510916dabb633ba30ce:-1003923021 +ebb37d8ea5332110d539008d0dde66bf +4c2f650afe3321104a4feb2fe917aab3:454649115,295606168de83110e01b9b2db2f8b06f:454649115,4590dbf5db6871103cc795c36b813005:454649115,b229fb33aa60b110d1a3917d434d0226:454649115,788c1788be7031104bd909cba5c5d7c1:-230753617,07a49315319031103939f06a1a6cba70:454649115,fbc57ac1a2943110577be93268ae6fc8:454649115,1205928c54f321104d86eac0cab9cd4a:454649115,1205928c54f321104d86eac0cab9cd4a:454649115,109c2d0ccb332110135e0209b05c9836:454649115,109c2d0ccb332110135e0209b05c9836:454649115,1b8b1abfe32f2110c56b462a1d036592:454649115,1b8b1abfe32f2110c56b462a1d036592:454649115,6c5d4c378f2321100f4e56f73b11d35d:454649115,6c5d4c378f2321100f4e56f73b11d35d:454649115,657127d7faa32110e19484ece150483d:454649115,7004470affa321103df4e6baeac8e3e8:454649115,7004470affa321103df4e6baeac8e3e8:454649115,302a1ffcd0e3a910acd4a4e4dd0d31ce:454649115,302a1ffcd0e3a910acd4a4e4dd0d31ce:454649115,32556e78f96f69103aa0080cca11fac4:454649115,32556e78f96f69103aa0080cca11fac4:454649115,3c9612b4052f691047aa2a2d0eca3a1d:454649115,3c9612b4052f691047aa2a2d0eca3a1d:454649115,36a1dd6c87e72910e959d56e45a5a950:454649115,36a1dd6c87e72910e959d56e45a5a950:454649115,7830d918e9e7e51008260c81105b6c20:454649115,a3b0e0d850e3e510fb54654f5d8e48fe:454649115,a3b0e0d850e3e510fb54654f5d8e48fe:454649115,770e0110a23e6110ab443f1ce1901b8f:454649115,97ae0928ac43a910532976d3fb22e8a0:454649115,3f7bf3f7bf1031103bbc437a1230e674:454649115,0a565fac2c88f11073c7e399dcb3c4a5:454649115,4c2f650afe3321104a4feb2fe917aab3:454649115,4c2f650afe3321104a4feb2fe917aab3:454649115,f0945abf7263a110bbc38f7e2e3bd1e3:454649115,f0945abf7263a110bbc38f7e2e3bd1e3:454649115,3fea61bffbaf6110e3a92aef4dad098d:454649115,3fea61bffbaf6110e3a92aef4dad098d:454649115,9536a5f7ebaf611088aeef39138ffb72:454649115,9536a5f7ebaf611088aeef39138ffb72:454649115,38f54df35a2f61101695a21ce4b89e4a:454649115,38f54df35a2f61101695a21ce4b89e4a:454649115,69d4187bb5a76110bccea7df1ae937a0:454649115,69d4187bb5a76110bccea7df1ae937a0:454649115,fbc95f490ee7a510ad59e248f390feb3:454649115,fbc95f490ee7a510ad59e248f390feb3:454649115,72fd7b7ba9936110b67c2b336a26295f:-1813388017,48b579de84bf2950cbf7c230deb4160e:220768698,aa9348f864862150fa089b9a0155969c:-1813388017 @@ -199,39 +204,39 @@ 3d20e92d47471110328ca368436d436a customer -sys_metadata_link_d3bb48a7870fed10a1fc52883cbb356b -<?xml version="1.0" encoding="UTF-8"?><record_update table="sys_metadata_link"><sys_metadata_link action="INSERT_OR_UPDATE"><directory>update</directory><documentkey>aca28e069721a510026f72021153af2b</documentkey><payload><![CDATA[<?xml version="1.0" encoding="UTF-8"?><record_update sys_domain="global" table="sn_vul_int_data_src"> +sys_metadata_link_b64c88a7870fed10a1fc52883cbb35ba +<?xml version="1.0" encoding="UTF-8"?><record_update table="sys_metadata_link"><sys_metadata_link action="INSERT_OR_UPDATE"><directory>update</directory><documentkey>700db1e69769e510026f72021153af60</documentkey><payload><![CDATA[<?xml version="1.0" encoding="UTF-8"?><record_update sys_domain="global" table="sn_vul_int_data_src"> <sn_vul_int_data_src action="INSERT_OR_UPDATE"> <ds_group_number>0</ds_group_number> - <last_used>2023-05-25 10:02:19</last_used> - <sn_vul_integration display_value="Checkmarx One Application List Integration">820d02a047131110328ca368436d43d0</sn_vul_integration> + <last_used>2023-05-25 10:06:45</last_used> + <sn_vul_integration display_value="Checkmarx One Application Vulnerable Item Integration">53ba35e29769e510026f72021153af40</sn_vul_integration> <sys_created_by>apoorva.singh@checkmarx.com</sys_created_by> - <sys_created_on>2023-03-14 16:18:09</sys_created_on> - <sys_data_source display_value="CheckmarxOne Application List4">61c612a847131110328ca368436d43bf</sys_data_source> + <sys_created_on>2023-03-16 05:10:34</sys_created_on> + <sys_data_source display_value="CheckmarxOne App Vulnerable Item 2">751b53e9475f1110328ca368436d439f</sys_data_source> <sys_domain>global</sys_domain> - <sys_id>aca28e069721a510026f72021153af2b</sys_id> - <sys_mod_count>3</sys_mod_count> + <sys_id>700db1e69769e510026f72021153af60</sys_id> + <sys_mod_count>169</sys_mod_count> <sys_updated_by>VR.System</sys_updated_by> - <sys_updated_on>2023-05-25 10:02:19</sys_updated_on> + <sys_updated_on>2023-05-25 10:06:45</sys_updated_on> </sn_vul_int_data_src> </record_update> -]]></payload><sys_class_name>sys_metadata_link</sys_class_name><sys_created_by>apoorva.singh@checkmarx.com</sys_created_by><sys_created_on>2023-06-01 13:03:45</sys_created_on><sys_id>d3bb48a7870fed10a1fc52883cbb356b</sys_id><sys_mod_count>0</sys_mod_count><sys_name>CheckmarxOne Application List4</sys_name><sys_package display_value="Checkmarx One Vulnerability Integration" source="x_chec3_chexone">3d20e92d47471110328ca368436d436a</sys_package><sys_policy/><sys_scope display_value="Checkmarx One Vulnerability Integration">3d20e92d47471110328ca368436d436a</sys_scope><sys_update_name>sys_metadata_link_d3bb48a7870fed10a1fc52883cbb356b</sys_update_name><sys_updated_by>apoorva.singh@checkmarx.com</sys_updated_by><sys_updated_on>2023-06-01 13:03:45</sys_updated_on><tablename>sn_vul_int_data_src</tablename></sys_metadata_link></record_update> -542687124 -2368d2fe9740f910026f72021153af2d +]]></payload><sys_class_name>sys_metadata_link</sys_class_name><sys_created_by>apoorva.singh@checkmarx.com</sys_created_by><sys_created_on>2023-06-01 13:06:11</sys_created_on><sys_id>b64c88a7870fed10a1fc52883cbb35ba</sys_id><sys_mod_count>0</sys_mod_count><sys_name>CheckmarxOne App Vulnerable Item 2</sys_name><sys_package display_value="Checkmarx One Vulnerability Integration" source="x_chec3_chexone">3d20e92d47471110328ca368436d436a</sys_package><sys_policy/><sys_scope display_value="Checkmarx One Vulnerability Integration">3d20e92d47471110328ca368436d436a</sys_scope><sys_update_name>sys_metadata_link_b64c88a7870fed10a1fc52883cbb35ba</sys_update_name><sys_updated_by>apoorva.singh@checkmarx.com</sys_updated_by><sys_updated_on>2023-06-01 13:06:11</sys_updated_on><tablename>sn_vul_int_data_src</tablename></sys_metadata_link></record_update> +-644416585 +3fc5211a97c5f110026f72021153afeb false -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 -236896fe9740f910026f72021153af67 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28 +00d5611a97c5f110026f72021153af0a 0 -1896d4146c80000001 -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 +18a6476b8d70000001 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28
-CheckmarxOne Application List4 +CheckmarxOne App Vulnerable Item 2Metadata Snapshotglobal -ebb37d8e05332110f456dc5189ae58ff -d42fa50a4f332110136c29a44635da52:1297912480,d42fa50a4f332110136c29a44635da52:1297912480,c5949abf1163a110c54761ac28aafc6c:1297912480,c5949abf1163a110c54761ac28aafc6c:1297912480,ccfaa1bfeeaf611072ac5bcc6bd92931:1297912480,ccfaa1bfeeaf611072ac5bcc6bd92931:1297912480,6136a5f7adaf611081523e5ed9226fdc:1297912480,6136a5f7adaf611081523e5ed9226fdc:1297912480,05f54df3fc2f61102e8646bd33078eee:1297912480,05f54df3fc2f61102e8646bd33078eee:1297912480,f9d4587bb1a76110629f0284042db127:1297912480,f9d4587bb1a76110629f0284042db127:1297912480,ccd99f49bfe7a5108066ef243a583d44:1297912480,ccd99f49bfe7a5108066ef243a583d44:1297912480,47fd7b7b3393611077f59599adc42b9e:542687124,6cb579de3abf29503d39ee56f0e422c5:327295126,d3bb48a7920fed109ee87812b1157b6c:542687124 +a7b37d8e9b33211014ef9feaaec969f5 +442f650afd332110b26870b7e76009e7:1325028651,442f650afd332110b26870b7e76009e7:1325028651,34949abfd063a1105ba57730195cde24:1325028651,34949abfd063a1105ba57730195cde24:1325028651,7bea61bfa7af6110cc8239fa8ac246dd:1325028651,7bea61bfa7af6110cc8239fa8ac246dd:1325028651,9d36a5f7aeaf61105402b9773835899c:1325028651,9d36a5f7aeaf61105402b9773835899c:1325028651,05f54df3762f611029070f0a8ecfc67e:1325028651,05f54df3762f611029070f0a8ecfc67e:1325028651,add4187b76a761103b9ff88bf78987d2:1325028651,add4187b76a761103b9ff88bf78987d2:1325028651,c8d95f4999e7a5107fbbd6d85c901df5:1325028651,c8d95f4999e7a5107fbbd6d85c901df5:1325028651,4ffd7b7b2e9361103cb4526ee2181893:-644416585,08b579de6cbf29508887da1db7092343:-1156895222,3a4c88a7bf0fed101b295936663f7dbb:-644416585 @@ -240,50 +245,50 @@ 3d20e92d47471110328ca368436d436a customer -sn_sec_int_config_1275d444476b1110328ca368436d43f9 -CheckmarxOne Application Security - Client SecretstringInsert the CheckmarxOne Secret key heree5dffb5c47575110328ca368436d436btrueclient_secret100sn_sec_int_configadmin2022-11-28 17:13:011275d444476b1110328ca368436d43f91client_secret3d20e92d47471110328ca368436d436a3d20e92d47471110328ca368436d436asn_sec_int_config_1275d444476b1110328ca368436d43f9admin2023-01-03 14:22:51]]> -861891587 -2368d2fe9740f910026f72021153af2d +sys_schema_attribute_0868340847a46110328ca368436d4324 +COLUMNu_edge_encryption_enabledsys_schema_attributeadmin2023-01-17 12:43:250868340847a46110328ca368436d43240Edge Encryption Enabled3d20e92d47471110328ca368436d436a3d20e92d47471110328ca368436d436asys_schema_attribute_0868340847a46110328ca368436d4324admin2023-01-17 12:43:250327382ac611228101bb3e9aaa3b3f11]]> +-1137505669 +3fc5211a97c5f110026f72021153afeb false -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 -2368d2fe9740f910026f72021153af2f +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28 +00d5611a97c5f110026f72021153af0d 0 -1896d41412b0000001 -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 +18a6476b2f70000001 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28
-client_secret -Integration Parameter +Edge Encryption Enabled +Dictionary Attributeglobal -7ab33d8e6b332110aa4b835cbc1a34a3 -ad1fa10a31332110b5c6d9df64082936:989618807,ad1fa10a31332110b5c6d9df64082936:989618807,bd8416bf7063a110bc5dd9259049bc48:989618807,bd8416bf7063a110bc5dd9259049bc48:989618807,aaeaad7ff5af61100910c867666cfba9:989618807,aaeaad7ff5af61100910c867666cfba9:989618807,0c36e1f714af6110d57f02fda93d2c99:989618807,0c36e1f714af6110d57f02fda93d2c99:989618807,a7e589f33f2f6110282f758a15ae205e:989618807,a7e589f33f2f6110282f758a15ae205e:989618807,1ac4d07b06a76110da62710fb0a1edbf:989618807,1ac4d07b06a76110da62710fb0a1edbf:989618807,cac99b4976e7a5103027755b0b1c942d:989618807,cac99b4976e7a5103027755b0b1c942d:989618807,6afd3b7b08936110d088d024d0b45bbe:861891587,af95f1de32bf295078792ef525ef3bce:-108981790,e4df9ff189ede11080620a332d5dd2d8:-1499460869,e4df9ff189ede11080620a332d5dd2d8:-1499460869 +f3b3bd8ec6332110edfcb4f1dd596e3a +b01f610a44332110b1caf678ffb0ca4c:1168006791,b01f610a44332110b1caf678ffb0ca4c:1168006791,e984d2bf1c63a1102125174f5169d6ec:1168006791,e984d2bf1c63a1102125174f5169d6ec:1168006791,5eeaad7fb1af61104d50dd2a170ce028:1168006791,5eeaad7fb1af61104d50dd2a170ce028:1168006791,7326e1f7b3af6110d769f3d1a71f5b57:1168006791,7326e1f7b3af6110d769f3d1a71f5b57:1168006791,dfe589f3f22f61100627ab3418bee40b:1168006791,dfe589f3f22f61100627ab3418bee40b:1168006791,bdc4d07bada76110ca85558312f6225f:1168006791,bdc4d07bada76110ca85558312f6225f:1168006791,61c95b497ae7a51009b2de36de1aa5c4:1168006791,61c95b497ae7a51009b2de36de1aa5c4:1168006791,07fd7b7bd993611088aa05982d3443c9:-1137505669,1b95f1de53bf29500cbaa32a985c9e79:-331042442,b3be75029821a51070422cb74756df70:2125116075,b3be75029821a51070422cb74756df70:2125116075,c9dfdff1d7ede110a8b91ed52fca79d7:1973258941 -INSERT_OR_UPDATE +DELETE 3d20e92d47471110328ca368436d436a customer -sn_sec_int_impl_config_67c243d347d12110328ca368436d43c5 -89d283d347d12110328ca368436d4342ad7fff1c47575110328ca368436d437esn_sec_int_impl_configadmin2023-03-06 07:55:45global67c243d347d12110328ca368436d43c543d20e92d47471110328ca368436d436a3d20e92d47471110328ca368436d436asn_sec_int_impl_config_67c243d347d12110328ca368436d43c5admin2023-03-06 08:26:4150]]> --1994221969 -2368d2fe9740f910026f72021153af2d +sys_scope_privilege_5a63bd3f47131110328ca368436d43f4 +read3d20e92d47471110328ca368436d436aallowedsys_scope_privilegeadmin2022-11-28 05:19:435a63bd3f47131110328ca368436d43f40x_805357_checkma_0_checkmarx_configuration3d20e92d47471110328ca368436d436a3d20e92d47471110328ca368436d436asys_scope_privilege_5a63bd3f47131110328ca368436d43f4admin2022-11-28 05:19:43x_805357_checkma_0_checkmarx_configuration4629a9961bb70110d7948559cc4bcbbfsys_db_object]]> +-912213973 +3fc5211a97c5f110026f72021153afeb false -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 -2368d2fe9740f910026f72021153af32 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28 +00d5611a97c5f110026f72021153af10 0 -1896d4143c30000001 -apoorva.singh@checkmarx.com -2023-07-19 08:25:48 +18a6476b97d0000001 +nidhikumari.jaiswal@checkmarx.com +2023-09-05 08:30:28
- -Integration Instance Parameter +x_805357_checkma_0_checkmarx_configuration +Cross scope privilege global -0fb33d8eed332110c307eca5ba4279d6 -be1f250a12332110854b942781fcc073:1698927739,be1f250a12332110854b942781fcc073:1698927739,fb841abf3763a1104db2ef50e82ced40:1698927739,fb841abf3763a1104db2ef50e82ced40:1698927739,1bea21bf2daf611014f62cbeff30ae05:1698927739,1bea21bf2daf611014f62cbeff30ae05:1698927739,f83665f75baf6110862b57d32d14711b:1698927739,f83665f75baf6110862b57d32d14711b:1698927739,90f50df3a52f6110f2fe323d14adde3a:1698927739,90f50df3a52f6110f2fe323d14adde3a:1698927739,00d4947b49a76110c669d24762880fbf:1698927739,00d4947b49a76110c669d24762880fbf:1698927739,d7c91f49f0e7a51068b2fbbf656d3c79:1698927739,d7c91f49f0e7a51068b2fbbf656d3c79:1698927739,62fd3b7bce93611037e8954c837cbfea:-1994221969,42a5b5de57bf295080858775fe99f68b:502077761,acdf9ff1d7ede110c4b4949b29a628fb:-1437168273,acdf9ff1d7ede110c4b4949b29a628fb:-1437168273 +f301d879e9ffa5505f01e36c8df27640 +f301d879e9ffa5505f01e36c8df27640:1665216013,20ceb502d321a51019315dd7278eaeca:-2114770053,20ceb502d321a51019315dd7278eaeca:-2114770053,dddf133574ede1101734b44cf6345902:987899411 @@ -292,54 +297,50 @@ 3d20e92d47471110328ca368436d436a customer -sys_app_3d20e92d47471110328ca368436d436a -truetruelogfalsefalsehelsinki_es5truenonenoneea93692147871110328ca368436d4333Checkmarx One Vulnerability Integrationfalsefalsepermissivex_chec3_chexonefalseCheckmarx One Vulnerability Integration uses data imported from Checkmarx One Service to help determine the impact and priority of vulnerabilities in the code as well as its dependencies.x_chec3_chexoneREPOAPP0000948128https://tpp.servicenow.com/sn_appstore_ssys_appadmin2022-11-08 17:53:353d20e92d47471110328ca368436d436a25apoorva.singh@checkmarx.com2023-07-13 05:35:46