Exemple #1
0
        public ReportingVulnerabilityStorage(IVulnerabilityReporter reporter, FunctionsHandler functionsHandler)
        {
            Preconditions.NotNull(reporter, "reporter");
            Preconditions.NotNull(functionsHandler, "functionsHandler");

            this.reporter = reporter;
            this.reporter.RegisterFunctionsHandler(functionsHandler);
        }
        public ReportingVulnerabilityStorage(IVulnerabilityReporter reporter)
        {
            Preconditions.NotNull(reporter, "reporter");

            this.reporter = reporter;
        }
Exemple #3
0
 public XSSSinkAnalyzer(IVulnerabilityReporter vulnerabilityReporter)
 {
     Preconditions.NotNull(vulnerabilityReporter, "vulnerabilityReporter");
     this.vulnerabilityReporter = vulnerabilityReporter;
 }
Exemple #4
0
 public XSSSinkAnalyzer(IVulnerabilityReporter vulnerabilityReporter)
 {
     Preconditions.NotNull(vulnerabilityReporter, "vulnerabilityReporter");
     this.vulnerabilityReporter = vulnerabilityReporter;
 }