API Reference
Class
PrivilegeEscalationAnalyzer
Analyzes a graph to locate privilege escalation paths.
Inheritance
- Object
- PrivilegeEscalationAnalyzer
Constructors
public PrivilegeEscalationAnalyzer() #Methods
public Void AddEdges(IEnumerable<GraphEdge> edges) #Returns:
VoidAdds edges to the internal graph.
Parameters
- edges System.Collections.Generic.IEnumerable{ADPlayground.GraphEdge}
- Edges to add.
public IEnumerable<List<String>> FindPaths(String start, String target) #Returns:
IEnumerable<List<String>>Finds escalation paths between two objects.
Parameters
- start System.String
- Starting object.
- target System.String
- Target object.
Returns
Collection of paths, each path is a list of nodes.