-
All classes seem to be based on angular.module calls but ignores references to the returned instance stored in a variable. Example of perfectly valid code: var t;
(t = angular.module('myModule', []))
.controller('MyController', ['$scope', 'depA', 'depB', function($scope, depA) {
var yolo = 7+2
}]);
var example, example2 = (
(t.controller('MyController2', ['$scope', 'depA', 'depB', function($scope, depA) {var test = 1+3;}])),
(t.controller('MyController3', ['$scope', 'depA', 'depB', function($scope, depA) {var test = 1+3;}])),
1+5); Example queries:
import javascript
from AngularJS::ControllerDefinition controllerDef
select controllerDef.getAFactoryFunction() I should be getting all the definitions but everything seems to be based on Am I missing something? The way I am trying to solve this(except trying to read all the AngularJS CodeQL library 🤯 ), is manually matching expressions and then attempting to "lift"(dunno if its the correct context) into whatever AngularJS construct I want to, for example import javascript
from DataFlow::CallNode callnode
,DataFlow::Node possibleInjArr
where
DataFlow::globalVarRef("FishBowlAdminApp").getAMethodCall() = callnode
and callnode.getLastArgument() = possibleInjArr
// and possibleInjArr instanceof AngularJS::InjectableFunction
select
possibleInjArr//.(AngularJS::DependencyInjection).getAnInjectableFunction()
,possibleInjArr//.(AngularJS::InjectableFunction)//.getDependencyParameter() Then I started copying code out of the relevant parts of the AngularJS CodeQL libraries for figuring how to use those classes from the references I want to. Which hurt my brain. Which made me think I must be doing something wrong 🤷 I'm thinking I have to either extend the classes to match the structures defined in the code with the module reference I want to, which I cant really wrap my head around, ANY hints would be lovely ( 💋 ) OR I am missing something terrible, so please relieve me from my misery OR That's a bug in the logic of the library KINDLY HELP |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 2 replies
-
Dont know how to put labels :/ |
Beta Was this translation helpful? Give feedback.
-
Hi @testgita, Thanks for your question. I've asked our CodeQL JS experts to take a look. |
Beta Was this translation helpful? Give feedback.
-
@adityasharad any chance you can help with this? |
Beta Was this translation helpful? Give feedback.
-
So after looking this a bit more, and from my potentially inadequate perspective, it looks like most of the classes I have looked at, for example InjectableFunction (could be ControllerDefinition or anything actually) are not considered valid if they are not connected to an angular module call at their "base"(possibly correct term but not sure), which makes the library classes uncustomizable/rigid for alternative, valid and perfectly legal usage of AngularJS, which loses the meaning of modularizing logic and shipping it in a library -- I verified by modifying my source code examples appropriately (if anyone is interested I can provide examples):
NOTE: AngularJS is an old framework, but there are a TON of web apps out there using it, just noting :) |
Beta Was this translation helpful? Give feedback.
-
Hello @testgita I have tried your example and yes, indeed only direct By placing your code within a function scope, you define a more predictable, structured environment, which allows CodeQL to track variables and references more effectively. You can try this modified version: function name(){
var t;
(t = angular.module('myModule', []))
.controller('MyController', ['$scope', 'depA', 'depB', function($scope, depA) {
var yolo = 7+2
}]);
var example, example2 = (
(t.controller('MyController2', ['$scope', 'depA', 'depB', function($scope, depA) {var test = 1+3;}])),
(t.controller('MyController3', ['$scope', 'depA', 'depB', function($scope, depA) {var test = 1+3;}])),
1+5);
} |
Beta Was this translation helpful? Give feedback.
Hello @testgita
I have tried your example and yes, indeed only direct
references
were captured. The CodeQL library forJavaScript
has limitations when analyzing theglobal
scope becauseJavaScript
's global context can be unpredictable. Inglobal
contexts, variables andreferences
can be loosely defined, making it harder for CodeQL's analysis engine to capture them accurately. The global scope is shared between all the files, which makes the analysis of global variables extremely challenging.By placing your code within a function scope, you define a more predictable, structured environment, which allows CodeQL to track variables and references more effectively. You can try this modified v…