diff --git a/firewall/firewall_linux.go b/firewall/firewall_linux.go index 721daf33..cb13c428 100644 --- a/firewall/firewall_linux.go +++ b/firewall/firewall_linux.go @@ -6,7 +6,7 @@ import ( "os" "strings" - "github.com/evilsocket/bettercap/core" + "github.com/bettercap/bettercap/core" "github.com/op/go-logging" ) diff --git a/main.go b/main.go index f8bc6494..ae72d452 100644 --- a/main.go +++ b/main.go @@ -5,9 +5,9 @@ import ( "github.com/op/go-logging" - "github.com/evilsocket/bettercap/core" - "github.com/evilsocket/bettercap/session" - "github.com/evilsocket/bettercap/session/modules" + "github.com/bettercap/bettercap/core" + "github.com/bettercap/bettercap/session" + "github.com/bettercap/bettercap/session/modules" ) var sess *session.Session diff --git a/net/arp.go b/net/arp.go index 3bfba59a..fa9945d4 100644 --- a/net/arp.go +++ b/net/arp.go @@ -8,7 +8,7 @@ import ( "github.com/op/go-logging" - "github.com/evilsocket/bettercap/core" + "github.com/bettercap/bettercap/core" ) type ArpTable map[string]string diff --git a/net/endpoint.go b/net/endpoint.go index a91882df..0d1201a9 100644 --- a/net/endpoint.go +++ b/net/endpoint.go @@ -5,7 +5,7 @@ import ( "fmt" "net" - "github.com/evilsocket/bettercap/core" + "github.com/bettercap/bettercap/core" ) type Endpoint struct { diff --git a/net/net.go b/net/net.go index 93f98296..f05a5e76 100644 --- a/net/net.go +++ b/net/net.go @@ -7,7 +7,7 @@ import ( "strconv" "strings" - "github.com/evilsocket/bettercap/core" + "github.com/bettercap/bettercap/core" ) var IPv4RouteParser = regexp.MustCompile("^([\\d\\.]+)\\s+([\\d\\.]+)\\s+([\\d\\.]+)\\s+([A-Z]+)\\s+\\d+\\s+\\d+\\s+\\d+\\s+(.+)$") diff --git a/session/module_handler.go b/session/module_handler.go index 29c8fe03..36e72fa3 100644 --- a/session/module_handler.go +++ b/session/module_handler.go @@ -2,7 +2,7 @@ package session import ( "fmt" - "github.com/evilsocket/bettercap/core" + "github.com/bettercap/bettercap/core" "regexp" "strconv" ) diff --git a/session/module_param.go b/session/module_param.go index bc55f483..3a7be8c4 100644 --- a/session/module_param.go +++ b/session/module_param.go @@ -2,7 +2,7 @@ package session import ( "fmt" - "github.com/evilsocket/bettercap/core" + "github.com/bettercap/bettercap/core" "regexp" "strconv" "strings" diff --git a/session/modules/arp_spoof.go b/session/modules/arp_spoof.go index 68b5e0b2..563852ac 100644 --- a/session/modules/arp_spoof.go +++ b/session/modules/arp_spoof.go @@ -2,9 +2,9 @@ package session_modules import ( "fmt" - network "github.com/evilsocket/bettercap/net" - "github.com/evilsocket/bettercap/packets" - "github.com/evilsocket/bettercap/session" + network "github.com/bettercap/bettercap/net" + "github.com/bettercap/bettercap/packets" + "github.com/bettercap/bettercap/session" "github.com/malfunkt/iprange" "net" "time" diff --git a/session/modules/http_proxy.go b/session/modules/http_proxy.go index 0d779827..eb3a57fa 100644 --- a/session/modules/http_proxy.go +++ b/session/modules/http_proxy.go @@ -10,8 +10,8 @@ import ( "github.com/elazarl/goproxy" "github.com/elazarl/goproxy/ext/html" - "github.com/evilsocket/bettercap/firewall" - "github.com/evilsocket/bettercap/session" + "github.com/bettercap/bettercap/firewall" + "github.com/bettercap/bettercap/session" ) var log = logging.MustGetLogger("mitm") @@ -116,7 +116,7 @@ func NewHttpProxy(s *session.Session) *HttpProxy { req.URL.Scheme = "http" req.URL.Host = req.Host - // TODO: p.pre_filter.Process + // TODO: p.pre_filter.Process? p.proxy.ServeHTTP(w, req) } else { diff --git a/session/modules/net_probe.go b/session/modules/net_probe.go index 09eee2e2..0b27e066 100644 --- a/session/modules/net_probe.go +++ b/session/modules/net_probe.go @@ -2,8 +2,8 @@ package session_modules import ( "fmt" - // "github.com/evilsocket/bettercap/packets" - "github.com/evilsocket/bettercap/session" + // "github.com/bettercap/bettercap/packets" + "github.com/bettercap/bettercap/session" "github.com/malfunkt/iprange" "net" "time" diff --git a/session/modules/net_recon.go b/session/modules/net_recon.go index 0d06169b..eff6ae6c 100644 --- a/session/modules/net_recon.go +++ b/session/modules/net_recon.go @@ -2,8 +2,8 @@ package session_modules import ( "fmt" - "github.com/evilsocket/bettercap/net" - "github.com/evilsocket/bettercap/session" + "github.com/bettercap/bettercap/net" + "github.com/bettercap/bettercap/session" "time" ) diff --git a/session/modules/net_sniff.go b/session/modules/net_sniff.go index ab0a0ac4..4aa87d62 100644 --- a/session/modules/net_sniff.go +++ b/session/modules/net_sniff.go @@ -2,8 +2,8 @@ package session_modules import ( "fmt" - "github.com/evilsocket/bettercap/core" - "github.com/evilsocket/bettercap/session" + "github.com/bettercap/bettercap/core" + "github.com/bettercap/bettercap/session" "github.com/google/gopacket" "github.com/google/gopacket/layers" "github.com/google/gopacket/pcap" diff --git a/session/session.go b/session/session.go index a2ae574e..979248e2 100644 --- a/session/session.go +++ b/session/session.go @@ -15,10 +15,10 @@ import ( "github.com/chzyer/readline" "github.com/op/go-logging" - "github.com/evilsocket/bettercap/core" - "github.com/evilsocket/bettercap/firewall" - "github.com/evilsocket/bettercap/net" - "github.com/evilsocket/bettercap/packets" + "github.com/bettercap/bettercap/core" + "github.com/bettercap/bettercap/firewall" + "github.com/bettercap/bettercap/net" + "github.com/bettercap/bettercap/packets" ) type Session struct { diff --git a/session/targets.go b/session/targets.go index 882f8cfa..68bb87b0 100644 --- a/session/targets.go +++ b/session/targets.go @@ -7,8 +7,8 @@ import ( "github.com/op/go-logging" - "github.com/evilsocket/bettercap/core" - "github.com/evilsocket/bettercap/net" + "github.com/bettercap/bettercap/core" + "github.com/bettercap/bettercap/net" ) var log = logging.MustGetLogger("mitm")