Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
RamanaReddy0M committed May 30, 2024
1 parent ff262a0 commit f4e5fc0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,9 @@ func (r *Runner) process(t string, wg *sizedwaitgroup.SizedWaitGroup, hp *httpx.
}
if scanopts.CSPProbe && result.CSPData != nil {
scanopts.CSPProbe = false
for _, tt := range result.CSPData.Domains {
domains := result.CSPData.Domains
domains = append(domains, result.CSPData.Fqdns...)
for _, tt := range domains {
if !r.testAndSet(tt) {
continue
}
Expand Down

0 comments on commit f4e5fc0

Please sign in to comment.