
analysis.AnalysisResults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of regex-static-analysis Show documentation
Show all versions of regex-static-analysis Show documentation
A tool to perform static analysis on regexes to determine whether they are vulnerable to ReDoS.
package analysis;
import nfa.NFAGraph;
public abstract class AnalysisResults {
protected final NFAGraph originalGraph;
public NFAGraph getOriginalGraph() {
return originalGraph;
}
public AnalysisResults(NFAGraph originalGraph) {
this.originalGraph = originalGraph;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy