File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ var banner = `
1414╰╯╱╰┻━━━┻━━━┻╯╰┻━━┻━━━┻╯╰┻━┻╯╰╯╰┻━━┻━┻━━┻╯
1515`
1616
17- var version = "v1.0.3 "
17+ var version = "v1.0.4 "
1818
1919func ShowBanner () {
2020 gologger .Print ().Msgf ("%s\n " , banner )
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ func (h *Hurricane) ParseHTML(body io.Reader) {
8989 gologger .Fatal ().Msgf ("%s" , err )
9090 }
9191 var re = regexp .MustCompile (`\/dns\/([^"]+)` )
92- doc .Find ("#dnsrecords " ).Each (func (h int , div * goquery.Selection ) {
92+ doc .Find ("#_dnsrecords " ).Each (func (h int , div * goquery.Selection ) {
9393 div .Find ("tr" ).Each (func (i int , tr * goquery.Selection ) {
9494 var result Result
9595 tr .Find ("td" ).Each (func (j int , td * goquery.Selection ) {
@@ -124,7 +124,7 @@ func (h *Hurricane) ExtractNetwork(ip string) {
124124 var str = h .Request (url )
125125
126126 if ip != "" {
127- var re = regexp .MustCompile (`(?m)href="/net /([^"]+)"` )
127+ var re = regexp .MustCompile (`(?m)href="/dns /([^"]+)"` )
128128 for _ , match := range re .FindAllStringSubmatch (str , - 1 ) {
129129 if ! Contains (Networks , match [1 ]) {
130130 if (! OptionCmd .Silent && ! OptionCmd .Onlydomains ) || OptionCmd .Onlynetworks {
You can’t perform that action at this time.
0 commit comments