Created
October 8, 2024 10:01
-
-
Save testanull/4c1d13a27c821d061c6191a53fa361a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @kind path-problem | |
*/ | |
import csharp | |
class ODPSetter extends Setter { | |
ODPSetter() { | |
getDeclaringType().getName() = "ObjectDataProvider" and | |
getName() = "set_ObjectInstance" | |
} | |
} | |
class StartMethod extends Setter { | |
StartMethod() { getDeclaringType().getABaseInterface().getName() = "ISerializable" } | |
} | |
class TargetMethod extends Method { | |
TargetMethod() { getName() = "InvokeMember" } | |
} | |
query predicate edges(Method a, Method b) { | |
a.calls(b) and | |
( | |
a.getDeclaringType().getASubType+() = b.getDeclaringType() | |
or a.getDeclaringType().getABaseType+() = b.getDeclaringType() | |
) | |
} | |
from Method end, ODPSetter prestart, Method entryPoint | |
where | |
prestart.calls(entryPoint) and | |
edges+(entryPoint, end) | |
select end, entryPoint, end, "Found a path from start to target." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment