diff --git a/agents/tcp_port_scanner.go b/agents/tcp_port_scanner.go index ac895c2..b55a415 100644 --- a/agents/tcp_port_scanner.go +++ b/agents/tcp_port_scanner.go @@ -5,7 +5,7 @@ import ( "net" "time" - "github.com/michenriksen/aquatone/core" + "github.com/ayusheek/aquatone/core" ) type TCPPortScanner struct { diff --git a/agents/url_hostname_resolver.go b/agents/url_hostname_resolver.go index 436325a..3be5e93 100644 --- a/agents/url_hostname_resolver.go +++ b/agents/url_hostname_resolver.go @@ -4,7 +4,7 @@ import ( "fmt" "net" - "github.com/michenriksen/aquatone/core" + "github.com/ayusheek/aquatone/core" ) type URLHostnameResolver struct { diff --git a/agents/url_page_title_extractor.go b/agents/url_page_title_extractor.go index ccdcd92..5c46bfe 100644 --- a/agents/url_page_title_extractor.go +++ b/agents/url_page_title_extractor.go @@ -6,7 +6,7 @@ import ( "strings" "github.com/PuerkitoBio/goquery" - "github.com/michenriksen/aquatone/core" + "github.com/ayusheek/aquatone/core" ) type URLPageTitleExtractor struct { diff --git a/agents/url_publisher.go b/agents/url_publisher.go index 4910e63..a9cce9a 100644 --- a/agents/url_publisher.go +++ b/agents/url_publisher.go @@ -6,7 +6,7 @@ import ( "net" "time" - "github.com/michenriksen/aquatone/core" + "github.com/ayusheek/aquatone/core" ) type URLPublisher struct { diff --git a/agents/url_requester.go b/agents/url_requester.go index 9b699a3..22b2e56 100644 --- a/agents/url_requester.go +++ b/agents/url_requester.go @@ -6,7 +6,7 @@ import ( "os" "strings" - "github.com/michenriksen/aquatone/core" + "github.com/ayusheek/aquatone/core" "github.com/parnurzeal/gorequest" ) diff --git a/agents/url_screenshotter.go b/agents/url_screenshotter.go index 295c31b..5feae8c 100644 --- a/agents/url_screenshotter.go +++ b/agents/url_screenshotter.go @@ -13,8 +13,8 @@ import ( "strings" "time" + "github.com/ayusheek/aquatone/core" "github.com/google/uuid" - "github.com/michenriksen/aquatone/core" ) type URLScreenshotter struct { diff --git a/agents/url_takeover_detector.go b/agents/url_takeover_detector.go index bf7844d..9c99f37 100644 --- a/agents/url_takeover_detector.go +++ b/agents/url_takeover_detector.go @@ -5,7 +5,7 @@ import ( "net" "strings" - "github.com/michenriksen/aquatone/core" + "github.com/ayusheek/aquatone/core" ) type URLTakeoverDetector struct { diff --git a/agents/url_technology_fingerprinter.go b/agents/url_technology_fingerprinter.go index 1451b3c..b995d3e 100644 --- a/agents/url_technology_fingerprinter.go +++ b/agents/url_technology_fingerprinter.go @@ -8,7 +8,7 @@ import ( "regexp" "github.com/PuerkitoBio/goquery" - "github.com/michenriksen/aquatone/core" + "github.com/ayusheek/aquatone/core" ) type FingerprintRegexp struct { diff --git a/agents/util.go b/agents/util.go index 1d93a2d..c05ad48 100644 --- a/agents/util.go +++ b/agents/util.go @@ -11,7 +11,7 @@ import ( "strings" "time" - "github.com/michenriksen/aquatone/core" + "github.com/ayusheek/aquatone/core" "github.com/fatih/color" "github.com/parnurzeal/gorequest" diff --git a/core/banner.go b/core/banner.go index 71a2ea3..fbd6fa9 100644 --- a/core/banner.go +++ b/core/banner.go @@ -4,5 +4,5 @@ const ( Name = "aquatone" Version = "1.7.0" Author = "Michael Henriksen" - Website = "https://github.com/michenriksen/aquatone" + Website = "https://github.com/ayusheek/aquatone" ) diff --git a/go.mod b/go.mod index 26ceb75..677ba07 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/michenriksen/aquatone +module github.com/ayusheek/aquatone go 1.23.3 diff --git a/main.go b/main.go index 649aaf0..996ca19 100644 --- a/main.go +++ b/main.go @@ -10,10 +10,10 @@ import ( "strings" "time" + "github.com/ayusheek/aquatone/agents" + "github.com/ayusheek/aquatone/core" + "github.com/ayusheek/aquatone/parsers" "github.com/google/uuid" - "github.com/michenriksen/aquatone/agents" - "github.com/michenriksen/aquatone/core" - "github.com/michenriksen/aquatone/parsers" ) var ( diff --git a/parsers/nmap.go b/parsers/nmap.go index c6d3c08..b1f7e40 100644 --- a/parsers/nmap.go +++ b/parsers/nmap.go @@ -4,7 +4,7 @@ import ( "io" "io/ioutil" - "github.com/michenriksen/aquatone/core" + "github.com/ayusheek/aquatone/core" "github.com/lair-framework/go-nmap" )