Skip to content

Commit

Permalink
fixed: minor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3r-04 committed Jun 22, 2024
1 parent e094998 commit 94f13a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agents/url_technology_fingerprinter.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func (a *URLTechnologyFingerprinter) loadFingerprints() {
os.Exit(1)
}
json.Unmarshal(fingerprints, &a.fingerprints)
for i, _ := range a.fingerprints {
for i := range a.fingerprints {
a.fingerprints[i].LoadPatterns()
}
}
Expand Down

0 comments on commit 94f13a3

Please sign in to comment.