package main import ( "os/exec" "os" "io/ioutil" "fmt" "strings" "bytes" "github.com/yosssi/gohtml" "github.com/glaslos/ssdeep" "time" ) const ( curlfile = "./curlfile.txt" resultpath = "./results/" diffpath = "./diff/" hashTreshold = 90 ) func main() { var scoreOutput string fullBytes, _ := ioutil.ReadFile(curlfile) fullStr := string(fullBytes) siteList := make([]string, 0) siteList = strings.Split(fullStr, "\n") siteNo := len(siteList)/2 for i:=0; i