Skip to content

Commit

Permalink
rename package name
Browse files Browse the repository at this point in the history
  • Loading branch information
ayusheek committed Nov 15, 2024
1 parent 7659b1d commit a02dcf2
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion agents/tcp_port_scanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net"
"time"

"github.com/michenriksen/aquatone/core"
"github.com/ayusheek/aquatone/core"
)

type TCPPortScanner struct {
Expand Down
2 changes: 1 addition & 1 deletion agents/url_hostname_resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"net"

"github.com/michenriksen/aquatone/core"
"github.com/ayusheek/aquatone/core"
)

type URLHostnameResolver struct {
Expand Down
2 changes: 1 addition & 1 deletion agents/url_page_title_extractor.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"

"github.com/PuerkitoBio/goquery"
"github.com/michenriksen/aquatone/core"
"github.com/ayusheek/aquatone/core"
)

type URLPageTitleExtractor struct {
Expand Down
2 changes: 1 addition & 1 deletion agents/url_publisher.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net"
"time"

"github.com/michenriksen/aquatone/core"
"github.com/ayusheek/aquatone/core"
)

type URLPublisher struct {
Expand Down
2 changes: 1 addition & 1 deletion agents/url_requester.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"strings"

"github.com/michenriksen/aquatone/core"
"github.com/ayusheek/aquatone/core"
"github.com/parnurzeal/gorequest"
)

Expand Down
2 changes: 1 addition & 1 deletion agents/url_screenshotter.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"strings"
"time"

"github.com/ayusheek/aquatone/core"
"github.com/google/uuid"
"github.com/michenriksen/aquatone/core"
)

type URLScreenshotter struct {
Expand Down
2 changes: 1 addition & 1 deletion agents/url_takeover_detector.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net"
"strings"

"github.com/michenriksen/aquatone/core"
"github.com/ayusheek/aquatone/core"
)

type URLTakeoverDetector struct {
Expand Down
2 changes: 1 addition & 1 deletion agents/url_technology_fingerprinter.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"regexp"

"github.com/PuerkitoBio/goquery"
"github.com/michenriksen/aquatone/core"
"github.com/ayusheek/aquatone/core"
)

type FingerprintRegexp struct {
Expand Down
2 changes: 1 addition & 1 deletion agents/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion core/banner.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/michenriksen/aquatone
module github.com/ayusheek/aquatone

go 1.23.3

Expand Down
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
2 changes: 1 addition & 1 deletion parsers/nmap.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"io"
"io/ioutil"

"github.com/michenriksen/aquatone/core"
"github.com/ayusheek/aquatone/core"

"github.com/lair-framework/go-nmap"
)
Expand Down

0 comments on commit a02dcf2

Please sign in to comment.