Skip to content

Instantly share code, notes, and snippets.

@testanull
Created October 8, 2024 10:01
Show Gist options
  • Save testanull/4c1d13a27c821d061c6191a53fa361a8 to your computer and use it in GitHub Desktop.
Save testanull/4c1d13a27c821d061c6191a53fa361a8 to your computer and use it in GitHub Desktop.
/**
* @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