-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscanner.go
More file actions
44 lines (40 loc) · 828 Bytes
/
scanner.go
File metadata and controls
44 lines (40 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package main
import (
"fmt"
"github.com/httpreserve/linkscanner"
"os"
"strings"
)
var linklist []string
var seeds map[string]bool
func init() {
seeds = make(map[string]bool)
}
func httpScanner(fname string, content string) {
extracted, errs := linkscanner.HTTPScanner(content)
if len(extracted) > 0 {
for _, link := range extracted {
var addedValue string
if seedList {
if !seeds[strings.ToLower(link)] {
seeds[strings.ToLower(link)] = true
addedValue = link
}
} else {
if quoteCells {
addedValue = "\"" + fname + "\", \"" + link + "\""
} else {
addedValue = fname + ", " + link
}
}
if addedValue != "" {
linklist = append(linklist, addedValue)
}
}
}
if len(errs) > 0 {
for _, e := range errs {
fmt.Fprintf(os.Stderr, "%s", e.Error())
}
}
}