@ -1,4 +1,4 @@
module ApiGuesser
module github.com/daffainfo/ApiGuesser
go 1.16
@ -68,7 +68,7 @@ func Regex_api(contents string) {
re := regexp.MustCompile(data[i].Regex)
if re.MatchString(contents) {
res1 := re.FindAllString(contents, 1)
fmt.Println("[+] "+data[i].Name, " ", res1)
fmt.Println(data[i].Name, res1)
}