Rule Definition
If read access is not properly restricted, then attackers can steal the sensitive information. If write access is not properly restricted, then attackers can modify and possibly delete the data, causing incorrect results and possibly a denial of service.
Remediation
// in your controller
sap.ui.define([
"sap/ui/core/mvc/Controller"
], function(Controller) {
"use strict";
return Controller.extend("my.app.controller.Controller", function() {
onInit: function() {
sap.base.Log.info("view is instantiated"); // view is instantiated
},
onExit: function() {
sap.base.Log.all("view is destroyed"); // view is destroyed
}
});
});
Violation Code Sample
console.log("some message");
Fixed Code Sample
sap.base.Log.info("some message");
Reference
https://inui.io/sapui5-best-practices/#2-use-sapbaselog-instead-of-consolelog
Related Technologies
Technical Criterion
Programming Practices - Structuredness
About CAST Appmarq
CAST Appmarq is by far the biggest repository of data about real IT systems. It's built on thousands of analyzed applications, made of 35 different technologies, by over 300 business organizations across major verticals. It provides IT Leaders with factual key analytics to let them know if their applications are on track.