diff --git a/Gopkg.lock b/Gopkg.lock index 9c084201..24667521 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -4,7 +4,7 @@ [[projects]] branch = "master" digest = "1:636265d7c62365795e14a5d323a48db1409795adf96241bea7335d054f9d1879" - name = "github.com/Safing/portbase" + name = "github.com/safing/portbase" packages = [ "api", "config", @@ -349,24 +349,24 @@ analyzer-name = "dep" analyzer-version = 1 input-imports = [ - "github.com/Safing/portbase/api", - "github.com/Safing/portbase/config", - "github.com/Safing/portbase/crypto/hash", - "github.com/Safing/portbase/crypto/random", - "github.com/Safing/portbase/database", - "github.com/Safing/portbase/database/dbmodule", - "github.com/Safing/portbase/database/iterator", - "github.com/Safing/portbase/database/query", - "github.com/Safing/portbase/database/record", - "github.com/Safing/portbase/database/storage", - "github.com/Safing/portbase/database/storage/bbolt", - "github.com/Safing/portbase/info", - "github.com/Safing/portbase/log", - "github.com/Safing/portbase/modules", - "github.com/Safing/portbase/notifications", - "github.com/Safing/portbase/utils", - "github.com/Safing/portbase/utils/osdetail", - "github.com/Safing/portbase/utils/testutils", + "github.com/safing/portbase/api", + "github.com/safing/portbase/config", + "github.com/safing/portbase/crypto/hash", + "github.com/safing/portbase/crypto/random", + "github.com/safing/portbase/database", + "github.com/safing/portbase/database/dbmodule", + "github.com/safing/portbase/database/iterator", + "github.com/safing/portbase/database/query", + "github.com/safing/portbase/database/record", + "github.com/safing/portbase/database/storage", + "github.com/safing/portbase/database/storage/bbolt", + "github.com/safing/portbase/info", + "github.com/safing/portbase/log", + "github.com/safing/portbase/modules", + "github.com/safing/portbase/notifications", + "github.com/safing/portbase/utils", + "github.com/safing/portbase/utils/osdetail", + "github.com/safing/portbase/utils/testutils", "github.com/agext/levenshtein", "github.com/cloudflare/cfssl/crypto/pkcs7", "github.com/cookieo9/resources-go", diff --git a/Gopkg.toml b/Gopkg.toml index 4f115cc5..05bf6cc8 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -1,4 +1,4 @@ -ignored = ["github.com/Safing/portbase", "github.com/Safing/safing-core", "github.com/Safing/safing-core/formats/varint"] +ignored = ["github.com/safing/portbase", "github.com/safing/safing-core", "github.com/safing/safing-core/formats/varint"] [prune] go-tests = true diff --git a/README.md b/README.md index 52f64b5f..39663c9b 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ If you want to know more, here are [the docs](http://docs.safing.io/). The `pmctl` command will help you get up and running. It will bootstrap your the environment and download additional files it needs. All commands need the `--db` parameter with the database location, as this is where all the data and also the binaries live. -Just download `pmctl` from the [releases page](https://github.com/Safing/portmaster/releases) and put it somewhere comfortable. You may freely choose where you want to put the database - it needs to be the same for all commands. Here we go - run every command in a seperate terminal window: +Just download `pmctl` from the [releases page](https://github.com/safing/portmaster/releases) and put it somewhere comfortable. You may freely choose where you want to put the database - it needs to be the same for all commands. Here we go - run every command in a seperate terminal window: # start the portmaster: sudo ./pmctl run core --db=/opt/pm_db @@ -48,7 +48,7 @@ Just download `pmctl` from the [releases page](https://github.com/Safing/portmas #### Feedback We'd love to know what you think, drop by on [our forum](https://discourse.safing.community/) and let us know! -If you want to report a bug, please [open an issue on Github](https://github.com/Safing/portmaster/issues/new). +If you want to report a bug, please [open an issue on Github](https://github.com/safing/portmaster/issues/new). ## Documentation diff --git a/build b/build index dd233516..e73c3e74 100755 --- a/build +++ b/build @@ -54,5 +54,5 @@ if [[ $1 == "dev" ]]; then fi # build -BUILD_PATH="github.com/Safing/portbase/info" +BUILD_PATH="github.com/safing/portbase/info" go build $DEV -ldflags "-X ${BUILD_PATH}.commit=${BUILD_COMMIT} -X ${BUILD_PATH}.buildOptions=${BUILD_BUILDOPTIONS} -X ${BUILD_PATH}.buildUser=${BUILD_USER} -X ${BUILD_PATH}.buildHost=${BUILD_HOST} -X ${BUILD_PATH}.buildDate=${BUILD_DATE} -X ${BUILD_PATH}.buildSource=${BUILD_SOURCE}" $* diff --git a/core/databases.go b/core/databases.go index 99c136e3..3373ea6e 100644 --- a/core/databases.go +++ b/core/databases.go @@ -1,13 +1,13 @@ package core import ( - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/modules" - "github.com/Safing/portbase/notifications" + "github.com/safing/portbase/database" + "github.com/safing/portbase/modules" + "github.com/safing/portbase/notifications" // module dependencies - _ "github.com/Safing/portbase/database/dbmodule" - _ "github.com/Safing/portbase/database/storage/bbolt" + _ "github.com/safing/portbase/database/dbmodule" + _ "github.com/safing/portbase/database/storage/bbolt" ) func init() { diff --git a/dnsonly.go b/dnsonly.go index 3d534a89..556a6c79 100644 --- a/dnsonly.go +++ b/dnsonly.go @@ -7,12 +7,12 @@ import ( "runtime" "syscall" - "github.com/Safing/portbase/info" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/modules" + "github.com/safing/portbase/info" + "github.com/safing/portbase/log" + "github.com/safing/portbase/modules" // include packages here - _ "github.com/Safing/portmaster/nameserver/only" + _ "github.com/safing/portmaster/nameserver/only" ) func main() { diff --git a/firewall/config.go b/firewall/config.go index 080ea7fd..8e79e686 100644 --- a/firewall/config.go +++ b/firewall/config.go @@ -1,8 +1,8 @@ package firewall import ( - "github.com/Safing/portbase/config" - "github.com/Safing/portmaster/status" + "github.com/safing/portbase/config" + "github.com/safing/portmaster/status" ) var ( diff --git a/firewall/dialer.go b/firewall/dialer.go index 41f1aec9..b3fab103 100644 --- a/firewall/dialer.go +++ b/firewall/dialer.go @@ -4,7 +4,7 @@ import ( "fmt" "net" - "github.com/Safing/portmaster/intel" + "github.com/safing/portmaster/intel" ) func init() { diff --git a/firewall/firewall.go b/firewall/firewall.go index 563b9470..74fb95bb 100644 --- a/firewall/firewall.go +++ b/firewall/firewall.go @@ -8,16 +8,16 @@ import ( "sync/atomic" "time" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/modules" - "github.com/Safing/portmaster/firewall/inspection" - "github.com/Safing/portmaster/firewall/interception" - "github.com/Safing/portmaster/network" - "github.com/Safing/portmaster/network/packet" + "github.com/safing/portbase/log" + "github.com/safing/portbase/modules" + "github.com/safing/portmaster/firewall/inspection" + "github.com/safing/portmaster/firewall/interception" + "github.com/safing/portmaster/network" + "github.com/safing/portmaster/network/packet" // module dependencies - _ "github.com/Safing/portmaster/core" - _ "github.com/Safing/portmaster/profile" + _ "github.com/safing/portmaster/core" + _ "github.com/safing/portmaster/profile" ) var ( diff --git a/firewall/inspection/inspection.go b/firewall/inspection/inspection.go index 8842f625..a3a536fa 100644 --- a/firewall/inspection/inspection.go +++ b/firewall/inspection/inspection.go @@ -5,8 +5,8 @@ package inspection import ( "sync" - "github.com/Safing/portmaster/network" - "github.com/Safing/portmaster/network/packet" + "github.com/safing/portmaster/network" + "github.com/safing/portmaster/network/packet" ) const ( diff --git a/firewall/inspection/tls/tls.go b/firewall/inspection/tls/tls.go index 36aade25..e6222ca5 100644 --- a/firewall/inspection/tls/tls.go +++ b/firewall/inspection/tls/tls.go @@ -10,13 +10,13 @@ import ( "github.com/google/gopacket/layers" "github.com/google/gopacket/tcpassembly" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/firewall/inspection" - "github.com/Safing/portmaster/firewall/inspection/tls/tlslib" - "github.com/Safing/portmaster/firewall/inspection/tls/verify" - "github.com/Safing/portmaster/network" - "github.com/Safing/portmaster/network/netutils" - "github.com/Safing/portmaster/network/packet" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/firewall/inspection" + "github.com/safing/portmaster/firewall/inspection/tls/tlslib" + "github.com/safing/portmaster/firewall/inspection/tls/verify" + "github.com/safing/portmaster/network" + "github.com/safing/portmaster/network/netutils" + "github.com/safing/portmaster/network/packet" ) // TODO: diff --git a/firewall/inspection/tls/tls_test.go b/firewall/inspection/tls/tls_test.go index 6e7b823b..e000f026 100644 --- a/firewall/inspection/tls/tls_test.go +++ b/firewall/inspection/tls/tls_test.go @@ -6,7 +6,7 @@ import ( "fmt" "testing" - "github.com/Safing/portmaster/firewall/inspection/tls/tlslib" + "github.com/safing/portmaster/firewall/inspection/tls/tlslib" ) var clientHelloSample = []byte{ diff --git a/firewall/inspection/tls/verify/cert.go b/firewall/inspection/tls/verify/cert.go index 27f92012..03d59b3a 100644 --- a/firewall/inspection/tls/verify/cert.go +++ b/firewall/inspection/tls/verify/cert.go @@ -13,9 +13,9 @@ import ( "github.com/cloudflare/cfssl/crypto/pkcs7" - "github.com/Safing/portbase/crypto/hash" - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/database/record" + "github.com/safing/portbase/crypto/hash" + "github.com/safing/portbase/database" + "github.com/safing/portbase/database/record" ) // Cert saves a certificate. diff --git a/firewall/inspection/tls/verify/crl.go b/firewall/inspection/tls/verify/crl.go index 7124ed52..ba02484d 100644 --- a/firewall/inspection/tls/verify/crl.go +++ b/firewall/inspection/tls/verify/crl.go @@ -12,10 +12,10 @@ import ( "sync" "time" - "github.com/Safing/portbase/crypto/hash" - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/database/record" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/crypto/hash" + "github.com/safing/portbase/database" + "github.com/safing/portbase/database/record" + "github.com/safing/portbase/log" ) // CARevocationInfo saves Information on revokation of Certificates of a Certificate Authority. diff --git a/firewall/inspection/tls/verify/ocsp.go b/firewall/inspection/tls/verify/ocsp.go index b4459de5..bb21c03d 100644 --- a/firewall/inspection/tls/verify/ocsp.go +++ b/firewall/inspection/tls/verify/ocsp.go @@ -14,8 +14,8 @@ import ( "golang.org/x/crypto/ocsp" - "github.com/Safing/portbase/crypto/hash" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/crypto/hash" + "github.com/safing/portbase/log" ) var ( diff --git a/firewall/inspection/tls/verify/verify.go b/firewall/inspection/tls/verify/verify.go index f162f842..469a87ce 100644 --- a/firewall/inspection/tls/verify/verify.go +++ b/firewall/inspection/tls/verify/verify.go @@ -6,8 +6,8 @@ import ( "fmt" "time" - "github.com/Safing/portbase/crypto/hash" - "github.com/Safing/portbase/database" + "github.com/safing/portbase/crypto/hash" + "github.com/safing/portbase/database" ) // useful references: diff --git a/firewall/interception/interception_linux.go b/firewall/interception/interception_linux.go index 4fd6897e..bf453449 100644 --- a/firewall/interception/interception_linux.go +++ b/firewall/interception/interception_linux.go @@ -2,7 +2,7 @@ package interception -import "github.com/Safing/portmaster/network/packet" +import "github.com/safing/portmaster/network/packet" var ( // Packets channel for feeding the firewall. diff --git a/firewall/interception/interception_windows.go b/firewall/interception/interception_windows.go index d084ee73..57db89f3 100644 --- a/firewall/interception/interception_windows.go +++ b/firewall/interception/interception_windows.go @@ -3,12 +3,12 @@ package interception import ( "fmt" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/notifications" - "github.com/Safing/portbase/utils/osdetail" - "github.com/Safing/portmaster/firewall/interception/windowskext" - "github.com/Safing/portmaster/network/packet" - "github.com/Safing/portmaster/updates" + "github.com/safing/portbase/log" + "github.com/safing/portbase/notifications" + "github.com/safing/portbase/utils/osdetail" + "github.com/safing/portmaster/firewall/interception/windowskext" + "github.com/safing/portmaster/network/packet" + "github.com/safing/portmaster/updates" ) var Packets chan packet.Packet diff --git a/firewall/interception/nfqueue/multiqueue.go b/firewall/interception/nfqueue/multiqueue.go index 6fd4b71c..2c5aaa41 100644 --- a/firewall/interception/nfqueue/multiqueue.go +++ b/firewall/interception/nfqueue/multiqueue.go @@ -7,7 +7,7 @@ package nfqueue // import ( // "sync" // -// "github.com/Safing/portmaster/network/packet" +// "github.com/safing/portmaster/network/packet" // ) // // type multiQueue struct { diff --git a/firewall/interception/nfqueue/nfqueue.go b/firewall/interception/nfqueue/nfqueue.go index a737312a..1c2d5d08 100644 --- a/firewall/interception/nfqueue/nfqueue.go +++ b/firewall/interception/nfqueue/nfqueue.go @@ -20,7 +20,7 @@ import ( "time" "unsafe" - "github.com/Safing/portmaster/network/packet" + "github.com/safing/portmaster/network/packet" ) var queues map[uint16]*NFQueue diff --git a/firewall/interception/nfqueue/packet.go b/firewall/interception/nfqueue/packet.go index 51143f81..cbbfc27a 100644 --- a/firewall/interception/nfqueue/packet.go +++ b/firewall/interception/nfqueue/packet.go @@ -5,7 +5,7 @@ package nfqueue import ( "fmt" - "github.com/Safing/portmaster/network/packet" + "github.com/safing/portmaster/network/packet" ) var ( diff --git a/firewall/interception/nfqueue_linux.go b/firewall/interception/nfqueue_linux.go index a2142494..17e1fb2a 100644 --- a/firewall/interception/nfqueue_linux.go +++ b/firewall/interception/nfqueue_linux.go @@ -7,7 +7,7 @@ import ( "github.com/coreos/go-iptables/iptables" - "github.com/Safing/portmaster/firewall/interception/nfqueue" + "github.com/safing/portmaster/firewall/interception/nfqueue" ) // iptables -A OUTPUT -p icmp -j", "NFQUEUE", "--queue-num", "1", "--queue-bypass diff --git a/firewall/interception/windowskext/handler.go b/firewall/interception/windowskext/handler.go index d2c91c52..026fab08 100644 --- a/firewall/interception/windowskext/handler.go +++ b/firewall/interception/windowskext/handler.go @@ -6,8 +6,8 @@ import ( "github.com/tevino/abool" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/network/packet" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/network/packet" ) // VerdictRequest is the request structure from the Kext. diff --git a/firewall/interception/windowskext/kext.go b/firewall/interception/windowskext/kext.go index 3613cf33..c1828772 100644 --- a/firewall/interception/windowskext/kext.go +++ b/firewall/interception/windowskext/kext.go @@ -9,8 +9,8 @@ import ( "time" "unsafe" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/network" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/network" "github.com/tevino/abool" "golang.org/x/sys/windows" ) diff --git a/firewall/interception/windowskext/packet.go b/firewall/interception/windowskext/packet.go index 48f4f7de..d45444b2 100644 --- a/firewall/interception/windowskext/packet.go +++ b/firewall/interception/windowskext/packet.go @@ -5,9 +5,9 @@ import ( "github.com/tevino/abool" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/network" - "github.com/Safing/portmaster/network/packet" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/network" + "github.com/safing/portmaster/network/packet" ) // Packet represents an IP packet. diff --git a/firewall/interception/windowskext/test/main.go b/firewall/interception/windowskext/test/main.go index 0fcc0208..0b3642c8 100644 --- a/firewall/interception/windowskext/test/main.go +++ b/firewall/interception/windowskext/test/main.go @@ -6,9 +6,9 @@ import ( "os/signal" "syscall" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/firewall/interception/windowskext" - "github.com/Safing/portmaster/network/packet" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/firewall/interception/windowskext" + "github.com/safing/portmaster/network/packet" ) var ( diff --git a/firewall/master.go b/firewall/master.go index baca986c..9a752cae 100644 --- a/firewall/master.go +++ b/firewall/master.go @@ -7,15 +7,15 @@ import ( "strings" "time" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/notifications" - "github.com/Safing/portmaster/intel" - "github.com/Safing/portmaster/network" - "github.com/Safing/portmaster/network/netutils" - "github.com/Safing/portmaster/network/packet" - "github.com/Safing/portmaster/process" - "github.com/Safing/portmaster/profile" - "github.com/Safing/portmaster/status" + "github.com/safing/portbase/log" + "github.com/safing/portbase/notifications" + "github.com/safing/portmaster/intel" + "github.com/safing/portmaster/network" + "github.com/safing/portmaster/network/netutils" + "github.com/safing/portmaster/network/packet" + "github.com/safing/portmaster/process" + "github.com/safing/portmaster/profile" + "github.com/safing/portmaster/status" "github.com/miekg/dns" "github.com/agext/levenshtein" diff --git a/firewall/ports.go b/firewall/ports.go index 9401532c..fc41727b 100644 --- a/firewall/ports.go +++ b/firewall/ports.go @@ -4,8 +4,8 @@ import ( "sync" "time" - "github.com/Safing/portbase/crypto/random" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/crypto/random" + "github.com/safing/portbase/log" ) type portStatus struct { diff --git a/intel/config.go b/intel/config.go index 0f20ee3f..6cdd0468 100644 --- a/intel/config.go +++ b/intel/config.go @@ -1,8 +1,8 @@ package intel import ( - "github.com/Safing/portbase/config" - "github.com/Safing/portmaster/status" + "github.com/safing/portbase/config" + "github.com/safing/portmaster/status" ) var ( diff --git a/intel/intel.go b/intel/intel.go index c398710e..ce7822ca 100644 --- a/intel/intel.go +++ b/intel/intel.go @@ -6,8 +6,8 @@ import ( "fmt" "sync" - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/database/record" + "github.com/safing/portbase/database" + "github.com/safing/portbase/database/record" ) var ( diff --git a/intel/ipinfo.go b/intel/ipinfo.go index e00921fa..583e34f4 100644 --- a/intel/ipinfo.go +++ b/intel/ipinfo.go @@ -5,9 +5,9 @@ import ( "strings" "sync" - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/database/record" - "github.com/Safing/portbase/utils" + "github.com/safing/portbase/database" + "github.com/safing/portbase/database/record" + "github.com/safing/portbase/utils" ) var ( diff --git a/intel/main.go b/intel/main.go index df8505ae..c2afa943 100644 --- a/intel/main.go +++ b/intel/main.go @@ -5,11 +5,11 @@ import ( "github.com/miekg/dns" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/modules" + "github.com/safing/portbase/log" + "github.com/safing/portbase/modules" // module dependencies - _ "github.com/Safing/portmaster/core" + _ "github.com/safing/portmaster/core" ) func init() { diff --git a/intel/main_test.go b/intel/main_test.go index bcb8e407..add9a295 100644 --- a/intel/main_test.go +++ b/intel/main_test.go @@ -4,9 +4,9 @@ import ( "os" "testing" - "github.com/Safing/portbase/database/dbmodule" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/modules" + "github.com/safing/portbase/database/dbmodule" + "github.com/safing/portbase/log" + "github.com/safing/portbase/modules" ) func TestMain(m *testing.M) { diff --git a/intel/mdns.go b/intel/mdns.go index 35a597c5..a03436a5 100644 --- a/intel/mdns.go +++ b/intel/mdns.go @@ -13,7 +13,7 @@ import ( "github.com/miekg/dns" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" ) // DNS Classes diff --git a/intel/namerecord.go b/intel/namerecord.go index 1b137a92..54163ad9 100644 --- a/intel/namerecord.go +++ b/intel/namerecord.go @@ -5,8 +5,8 @@ import ( "fmt" "sync" - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/database/record" + "github.com/safing/portbase/database" + "github.com/safing/portbase/database/record" ) var ( diff --git a/intel/resolve.go b/intel/resolve.go index 5a760ce6..2ccc8e5e 100644 --- a/intel/resolve.go +++ b/intel/resolve.go @@ -13,9 +13,9 @@ import ( "github.com/miekg/dns" - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/status" + "github.com/safing/portbase/database" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/status" ) // TODO: make resolver interface for http package diff --git a/intel/resolver.go b/intel/resolver.go index 9af94455..e7e830cc 100644 --- a/intel/resolver.go +++ b/intel/resolver.go @@ -11,10 +11,10 @@ import ( "github.com/miekg/dns" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" - "github.com/Safing/portmaster/network/environment" - "github.com/Safing/portmaster/network/netutils" + "github.com/safing/portmaster/network/environment" + "github.com/safing/portmaster/network/netutils" ) // Resolver holds information about an active resolver. diff --git a/intel/reverse.go b/intel/reverse.go index e57bd5a7..fb1251d6 100644 --- a/intel/reverse.go +++ b/intel/reverse.go @@ -4,7 +4,7 @@ import ( "errors" "strings" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" "github.com/miekg/dns" ) diff --git a/main.go b/main.go index e38f8027..5d08b81e 100644 --- a/main.go +++ b/main.go @@ -9,15 +9,15 @@ import ( "syscall" "time" - "github.com/Safing/portbase/info" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/modules" + "github.com/safing/portbase/info" + "github.com/safing/portbase/log" + "github.com/safing/portbase/modules" // include packages here - _ "github.com/Safing/portmaster/core" - _ "github.com/Safing/portmaster/firewall" - _ "github.com/Safing/portmaster/nameserver" - _ "github.com/Safing/portmaster/ui" + _ "github.com/safing/portmaster/core" + _ "github.com/safing/portmaster/firewall" + _ "github.com/safing/portmaster/nameserver" + _ "github.com/safing/portmaster/ui" ) var ( diff --git a/nameserver/nameserver.go b/nameserver/nameserver.go index 0afa5ac0..ed0b9831 100644 --- a/nameserver/nameserver.go +++ b/nameserver/nameserver.go @@ -9,14 +9,14 @@ import ( "github.com/miekg/dns" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/modules" + "github.com/safing/portbase/log" + "github.com/safing/portbase/modules" - "github.com/Safing/portmaster/analytics/algs" - "github.com/Safing/portmaster/firewall" - "github.com/Safing/portmaster/intel" - "github.com/Safing/portmaster/network" - "github.com/Safing/portmaster/network/netutils" + "github.com/safing/portmaster/analytics/algs" + "github.com/safing/portmaster/firewall" + "github.com/safing/portmaster/intel" + "github.com/safing/portmaster/network" + "github.com/safing/portmaster/network/netutils" ) var ( diff --git a/nameserver/only/nameserver.go b/nameserver/only/nameserver.go index 2369086f..07cc5ae8 100644 --- a/nameserver/only/nameserver.go +++ b/nameserver/only/nameserver.go @@ -7,13 +7,13 @@ import ( "github.com/miekg/dns" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/modules" + "github.com/safing/portbase/log" + "github.com/safing/portbase/modules" - "github.com/Safing/portmaster/analytics/algs" - "github.com/Safing/portmaster/intel" - "github.com/Safing/portmaster/network/netutils" - "github.com/Safing/portmaster/status" + "github.com/safing/portmaster/analytics/algs" + "github.com/safing/portmaster/intel" + "github.com/safing/portmaster/network/netutils" + "github.com/safing/portmaster/status" ) var ( diff --git a/nameserver/takeover.go b/nameserver/takeover.go index d2ef510c..82d4e42c 100644 --- a/nameserver/takeover.go +++ b/nameserver/takeover.go @@ -6,10 +6,10 @@ import ( "os" "time" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/notifications" - "github.com/Safing/portmaster/network/packet" - "github.com/Safing/portmaster/process" + "github.com/safing/portbase/log" + "github.com/safing/portbase/notifications" + "github.com/safing/portmaster/network/packet" + "github.com/safing/portmaster/process" ) func checkForConflictingService(err error) { diff --git a/network/clean.go b/network/clean.go index 026ca6c8..92313576 100644 --- a/network/clean.go +++ b/network/clean.go @@ -5,8 +5,8 @@ package network import ( "time" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/process" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/process" ) var ( diff --git a/network/communication.go b/network/communication.go index 8a6c6303..369904fa 100644 --- a/network/communication.go +++ b/network/communication.go @@ -10,13 +10,13 @@ import ( "sync" "time" - "github.com/Safing/portbase/database/record" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/intel" - "github.com/Safing/portmaster/network/netutils" - "github.com/Safing/portmaster/network/packet" - "github.com/Safing/portmaster/process" - "github.com/Safing/portmaster/profile" + "github.com/safing/portbase/database/record" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/intel" + "github.com/safing/portmaster/network/netutils" + "github.com/safing/portmaster/network/packet" + "github.com/safing/portmaster/process" + "github.com/safing/portmaster/profile" ) // Communication describes a logical connection between a process and a domain. diff --git a/network/database.go b/network/database.go index bd97cb2a..72dbb7c3 100644 --- a/network/database.go +++ b/network/database.go @@ -6,12 +6,12 @@ import ( "strings" "sync" - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/database/iterator" - "github.com/Safing/portbase/database/query" - "github.com/Safing/portbase/database/record" - "github.com/Safing/portbase/database/storage" - "github.com/Safing/portmaster/process" + "github.com/safing/portbase/database" + "github.com/safing/portbase/database/iterator" + "github.com/safing/portbase/database/query" + "github.com/safing/portbase/database/record" + "github.com/safing/portbase/database/storage" + "github.com/safing/portmaster/process" ) var ( diff --git a/network/environment/addresses.go b/network/environment/addresses.go index b8828d0f..9a9f8689 100644 --- a/network/environment/addresses.go +++ b/network/environment/addresses.go @@ -4,7 +4,7 @@ import ( "net" "strings" - "github.com/Safing/portmaster/network/netutils" + "github.com/safing/portmaster/network/netutils" ) func GetAssignedAddresses() (ipv4 []net.IP, ipv6 []net.IP, err error) { diff --git a/network/environment/environment.go b/network/environment/environment.go index e67065aa..03d92bf9 100644 --- a/network/environment/environment.go +++ b/network/environment/environment.go @@ -11,7 +11,7 @@ import ( "sync/atomic" "time" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" ) // TODO: find a good way to identify a network diff --git a/network/environment/environment_linux.go b/network/environment/environment_linux.go index 76be75c5..49d48314 100644 --- a/network/environment/environment_linux.go +++ b/network/environment/environment_linux.go @@ -12,8 +12,8 @@ import ( "github.com/miekg/dns" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/network/netutils" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/network/netutils" ) // Gateways returns the currently active gateways diff --git a/network/environment/location.go b/network/environment/location.go index cccc3c09..db765021 100644 --- a/network/environment/location.go +++ b/network/environment/location.go @@ -10,7 +10,7 @@ import ( "os" "time" - "github.com/Safing/portmaster/network/netutils" + "github.com/safing/portmaster/network/netutils" "golang.org/x/net/icmp" "golang.org/x/net/ipv4" diff --git a/network/geoip/database.go b/network/geoip/database.go index 6f8fb740..bff7f217 100644 --- a/network/geoip/database.go +++ b/network/geoip/database.go @@ -6,8 +6,8 @@ import ( maxminddb "github.com/oschwald/maxminddb-golang" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/updates" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/updates" ) var ( diff --git a/network/link.go b/network/link.go index 4b30f900..4dbd07fa 100644 --- a/network/link.go +++ b/network/link.go @@ -8,9 +8,9 @@ import ( "sync" "time" - "github.com/Safing/portbase/database/record" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/network/packet" + "github.com/safing/portbase/database/record" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/network/packet" ) // FirewallHandler defines the function signature for a firewall handle function diff --git a/network/module.go b/network/module.go index 806d7ff9..85b3d170 100644 --- a/network/module.go +++ b/network/module.go @@ -1,7 +1,7 @@ package network import ( - "github.com/Safing/portbase/modules" + "github.com/safing/portbase/modules" ) func init() { diff --git a/network/self.go b/network/self.go index 13aa9fac..60213855 100644 --- a/network/self.go +++ b/network/self.go @@ -5,9 +5,9 @@ import ( "os" "time" - "github.com/Safing/portmaster/network/netutils" - "github.com/Safing/portmaster/network/packet" - "github.com/Safing/portmaster/process" + "github.com/safing/portmaster/network/netutils" + "github.com/safing/portmaster/network/packet" + "github.com/safing/portmaster/process" ) // GetOwnComm returns the communication for the given packet, that originates from diff --git a/network/unknown.go b/network/unknown.go index cfb45c5b..98c47ee4 100644 --- a/network/unknown.go +++ b/network/unknown.go @@ -3,9 +3,9 @@ package network import ( "time" - "github.com/Safing/portmaster/network/netutils" - "github.com/Safing/portmaster/network/packet" - "github.com/Safing/portmaster/process" + "github.com/safing/portmaster/network/netutils" + "github.com/safing/portmaster/network/packet" + "github.com/safing/portmaster/process" ) // Static reasons diff --git a/pmctl/build b/pmctl/build index bbde1f9f..a311b43b 100755 --- a/pmctl/build +++ b/pmctl/build @@ -48,5 +48,5 @@ echo "This information is useful for debugging and license compliance." echo "Run the compiled binary with the -version flag to see the information included." # build -BUILD_PATH="github.com/Safing/portbase/info" +BUILD_PATH="github.com/safing/portbase/info" go build -ldflags "-X ${BUILD_PATH}.commit=${BUILD_COMMIT} -X ${BUILD_PATH}.buildOptions=${BUILD_BUILDOPTIONS} -X ${BUILD_PATH}.buildUser=${BUILD_USER} -X ${BUILD_PATH}.buildHost=${BUILD_HOST} -X ${BUILD_PATH}.buildDate=${BUILD_DATE} -X ${BUILD_PATH}.buildSource=${BUILD_SOURCE}" $* diff --git a/pmctl/get.go b/pmctl/get.go index 300a3ebf..3c01b711 100644 --- a/pmctl/get.go +++ b/pmctl/get.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "github.com/Safing/portmaster/updates" + "github.com/safing/portmaster/updates" ) func getFile(identifier string) (*updates.File, error) { diff --git a/pmctl/main.go b/pmctl/main.go index a300725b..b9dee2ca 100644 --- a/pmctl/main.go +++ b/pmctl/main.go @@ -7,9 +7,9 @@ import ( "os" "path/filepath" - "github.com/Safing/portbase/info" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/updates" + "github.com/safing/portbase/info" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/updates" "github.com/spf13/cobra" ) diff --git a/pmctl/upgrade.go b/pmctl/upgrade.go index cba12fb8..411070bf 100644 --- a/pmctl/upgrade.go +++ b/pmctl/upgrade.go @@ -7,8 +7,8 @@ import ( "path/filepath" "runtime" - "github.com/Safing/portbase/info" - "github.com/Safing/portmaster/updates" + "github.com/safing/portbase/info" + "github.com/safing/portmaster/updates" ) func checkForUpgrade() (update *updates.File) { diff --git a/process/database.go b/process/database.go index e6351273..72b70967 100644 --- a/process/database.go +++ b/process/database.go @@ -7,9 +7,9 @@ import ( processInfo "github.com/shirou/gopsutil/process" - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/profile" + "github.com/safing/portbase/database" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/profile" "github.com/tevino/abool" ) diff --git a/process/find.go b/process/find.go index 903899d1..6a26e00a 100644 --- a/process/find.go +++ b/process/find.go @@ -5,8 +5,8 @@ import ( "errors" "net" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/network/packet" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/network/packet" ) // Errors diff --git a/process/getpid_linux.go b/process/getpid_linux.go index 49f26e17..1788f3e9 100644 --- a/process/getpid_linux.go +++ b/process/getpid_linux.go @@ -1,7 +1,7 @@ package process import ( - "github.com/Safing/portmaster/process/proc" + "github.com/safing/portmaster/process/proc" ) var ( diff --git a/process/getpid_windows.go b/process/getpid_windows.go index 879c9c14..98b200ea 100644 --- a/process/getpid_windows.go +++ b/process/getpid_windows.go @@ -1,7 +1,7 @@ package process import ( - "github.com/Safing/portmaster/process/iphelper" + "github.com/safing/portmaster/process/iphelper" ) var ( diff --git a/process/iphelper/test/main.go b/process/iphelper/test/main.go index 6f2d08ab..5234fbb4 100644 --- a/process/iphelper/test/main.go +++ b/process/iphelper/test/main.go @@ -5,7 +5,7 @@ package main import ( "fmt" - "github.com/Safing/portmaster/process/iphelper" + "github.com/safing/portmaster/process/iphelper" ) func main() { diff --git a/process/matching.go b/process/matching.go index 1edaa966..bf5db2ad 100644 --- a/process/matching.go +++ b/process/matching.go @@ -4,10 +4,10 @@ import ( "context" "fmt" - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/database/query" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/profile" + "github.com/safing/portbase/database" + "github.com/safing/portbase/database/query" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/profile" ) var ( diff --git a/process/proc/processfinder.go b/process/proc/processfinder.go index b2c25ef2..a6391c2c 100644 --- a/process/proc/processfinder.go +++ b/process/proc/processfinder.go @@ -10,7 +10,7 @@ import ( "sync" "syscall" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" ) var ( diff --git a/process/proc/sockets.go b/process/proc/sockets.go index 067847f3..b9c773ea 100644 --- a/process/proc/sockets.go +++ b/process/proc/sockets.go @@ -13,7 +13,7 @@ import ( "sync" "unicode" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" ) /* diff --git a/process/process.go b/process/process.go index 90373de3..cdadc389 100644 --- a/process/process.go +++ b/process/process.go @@ -12,9 +12,9 @@ import ( processInfo "github.com/shirou/gopsutil/process" - "github.com/Safing/portbase/database/record" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/profile" + "github.com/safing/portbase/database/record" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/profile" ) var ( diff --git a/process/process_windows.go b/process/process_windows.go index 1efdb946..31bbdc73 100644 --- a/process/process_windows.go +++ b/process/process_windows.go @@ -4,8 +4,8 @@ import ( "fmt" "strings" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/utils/osdetail" + "github.com/safing/portbase/log" + "github.com/safing/portbase/utils/osdetail" ) // IsUser returns whether the process is run by a normal user. diff --git a/process/xdgicons/humanInfo.go b/process/xdgicons/humanInfo.go index abb05d32..bbab8f75 100644 --- a/process/xdgicons/humanInfo.go +++ b/process/xdgicons/humanInfo.go @@ -10,7 +10,7 @@ import ( "sync" "time" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" ) var ( diff --git a/profile/active.go b/profile/active.go index fdc5ceb8..e70eb13e 100644 --- a/profile/active.go +++ b/profile/active.go @@ -4,7 +4,7 @@ import ( "context" "sync" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" ) var ( diff --git a/profile/database.go b/profile/database.go index 740ab4a9..d8cdee2e 100644 --- a/profile/database.go +++ b/profile/database.go @@ -1,7 +1,7 @@ package profile import ( - "github.com/Safing/portbase/database" + "github.com/safing/portbase/database" ) // core:profiles/user/12345-1234-125-1234-1235 diff --git a/profile/defaults.go b/profile/defaults.go index ed12ae80..2c700645 100644 --- a/profile/defaults.go +++ b/profile/defaults.go @@ -1,7 +1,7 @@ package profile import ( - "github.com/Safing/portmaster/status" + "github.com/safing/portmaster/status" ) func makeDefaultGlobalProfile() *Profile { diff --git a/profile/endpoints.go b/profile/endpoints.go index ad0e9dbc..9809a56a 100644 --- a/profile/endpoints.go +++ b/profile/endpoints.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "github.com/Safing/portmaster/intel" + "github.com/safing/portmaster/intel" ) // Endpoints is a list of permitted or denied endpoints. diff --git a/profile/endpoints_test.go b/profile/endpoints_test.go index 56e1c472..07e43018 100644 --- a/profile/endpoints_test.go +++ b/profile/endpoints_test.go @@ -4,7 +4,7 @@ import ( "net" "testing" - "github.com/Safing/portbase/utils/testutils" + "github.com/safing/portbase/utils/testutils" ) func testEndpointDomainMatch(t *testing.T, ep *EndpointPermission, domain string, expectedResult EPResult) { diff --git a/profile/flags.go b/profile/flags.go index fe8f6c1f..bc0a59a2 100644 --- a/profile/flags.go +++ b/profile/flags.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/Safing/portmaster/status" + "github.com/safing/portmaster/status" ) // Flags are used to quickly add common attributes to profiles diff --git a/profile/flags_test.go b/profile/flags_test.go index 75b85b5f..8f122624 100644 --- a/profile/flags_test.go +++ b/profile/flags_test.go @@ -3,7 +3,7 @@ package profile import ( "testing" - "github.com/Safing/portmaster/status" + "github.com/safing/portmaster/status" ) func TestProfileFlags(t *testing.T) { diff --git a/profile/framework.go b/profile/framework.go index 64cbbefc..dc203098 100644 --- a/profile/framework.go +++ b/profile/framework.go @@ -9,7 +9,7 @@ package profile // "regexp" // "strings" // -// "github.com/Safing/portbase/log" +// "github.com/safing/portbase/log" // ) // // type Framework struct { diff --git a/profile/identifier_linux.go b/profile/identifier_linux.go index d8020e5e..3e6ffc96 100644 --- a/profile/identifier_linux.go +++ b/profile/identifier_linux.go @@ -4,7 +4,7 @@ import ( "path/filepath" "strings" - "github.com/Safing/portbase/utils" + "github.com/safing/portbase/utils" ) // GetPathIdentifier returns the identifier from the given path diff --git a/profile/index/index.go b/profile/index/index.go index c5859990..f206212f 100644 --- a/profile/index/index.go +++ b/profile/index/index.go @@ -6,8 +6,8 @@ import ( "fmt" "sync" - "github.com/Safing/portbase/database/record" - "github.com/Safing/portbase/utils" + "github.com/safing/portbase/database/record" + "github.com/safing/portbase/utils" ) // ProfileIndex links an Identifier to Profiles diff --git a/profile/index/indexer.go b/profile/index/indexer.go index 0776d24f..471c66b9 100644 --- a/profile/index/indexer.go +++ b/profile/index/indexer.go @@ -1,13 +1,13 @@ package index import ( - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/database/query" - "github.com/Safing/portbase/database/record" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/modules" + "github.com/safing/portbase/database" + "github.com/safing/portbase/database/query" + "github.com/safing/portbase/database/record" + "github.com/safing/portbase/log" + "github.com/safing/portbase/modules" - "github.com/Safing/portmaster/profile" + "github.com/safing/portmaster/profile" ) // FIXME: listen for profile changes and update the index diff --git a/profile/matching/database.go b/profile/matching/database.go index 0196d0c5..77a2e4ff 100644 --- a/profile/matching/database.go +++ b/profile/matching/database.go @@ -1,7 +1,7 @@ package matching import ( - "github.com/Safing/portbase/database" + "github.com/safing/portbase/database" ) // core:profiles/user/12345-1234-125-1234-1235 diff --git a/profile/matching/fingerprints.go b/profile/matching/fingerprints.go index e77b7df6..11aebb40 100644 --- a/profile/matching/fingerprints.go +++ b/profile/matching/fingerprints.go @@ -3,8 +3,8 @@ package matcher import ( "strings" - "github.com/Safing/portmaster/process" - "github.com/Safing/portmaster/profile" + "github.com/safing/portmaster/process" + "github.com/safing/portmaster/profile" ) // CheckFingerprints checks what fingerprints match and returns the total score. diff --git a/profile/matching/identpath_linux.go b/profile/matching/identpath_linux.go index b5a27262..e25b8c1a 100644 --- a/profile/matching/identpath_linux.go +++ b/profile/matching/identpath_linux.go @@ -4,8 +4,8 @@ import ( "fmt" "strings" - "github.com/Safing/portmaster/process" - "github.com/Safing/portmaster/profile" + "github.com/safing/portmaster/process" + "github.com/safing/portmaster/profile" ) // GetIdentificationPath returns the identifier for the given process (linux edition). diff --git a/profile/matching/identpath_linux_test.go b/profile/matching/identpath_linux_test.go index 2b480f00..eae72098 100644 --- a/profile/matching/identpath_linux_test.go +++ b/profile/matching/identpath_linux_test.go @@ -3,7 +3,7 @@ package matcher import ( "testing" - "github.com/Safing/portmaster/process" + "github.com/safing/portmaster/process" ) func TestGetIdentifierLinux(t *testing.T) { diff --git a/profile/matching/matcher.go b/profile/matching/matcher.go index b9c69a91..14109113 100644 --- a/profile/matching/matcher.go +++ b/profile/matching/matcher.go @@ -4,10 +4,10 @@ import ( "fmt" "strings" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/process" - "github.com/Safing/portmaster/profile" - "github.com/Safing/portmaster/profile/index" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/process" + "github.com/safing/portmaster/profile" + "github.com/safing/portmaster/profile/index" ) // GetProfileSet finds a local profile. diff --git a/profile/module.go b/profile/module.go index a3e52647..ad7c1dbd 100644 --- a/profile/module.go +++ b/profile/module.go @@ -1,10 +1,10 @@ package profile import ( - "github.com/Safing/portbase/modules" + "github.com/safing/portbase/modules" // module dependencies - _ "github.com/Safing/portmaster/core" + _ "github.com/safing/portmaster/core" ) var ( diff --git a/profile/profile.go b/profile/profile.go index 9ba6929e..b38c3ed9 100644 --- a/profile/profile.go +++ b/profile/profile.go @@ -7,8 +7,8 @@ import ( uuid "github.com/satori/go.uuid" - "github.com/Safing/portbase/database/record" - "github.com/Safing/portmaster/status" + "github.com/safing/portbase/database/record" + "github.com/safing/portmaster/status" ) var ( diff --git a/profile/set.go b/profile/set.go index c21b475b..5afa8f53 100644 --- a/profile/set.go +++ b/profile/set.go @@ -5,7 +5,7 @@ import ( "net" "sync" - "github.com/Safing/portmaster/status" + "github.com/safing/portmaster/status" ) var ( diff --git a/profile/set_test.go b/profile/set_test.go index a5a1df4a..21bf3b2f 100644 --- a/profile/set_test.go +++ b/profile/set_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - "github.com/Safing/portbase/utils/testutils" - "github.com/Safing/portmaster/status" + "github.com/safing/portbase/utils/testutils" + "github.com/safing/portmaster/status" ) var ( diff --git a/profile/specialprofiles.go b/profile/specialprofiles.go index 5011c061..f5c8c346 100644 --- a/profile/specialprofiles.go +++ b/profile/specialprofiles.go @@ -3,7 +3,7 @@ package profile import ( "sync" - "github.com/Safing/portbase/database" + "github.com/safing/portbase/database" ) var ( diff --git a/profile/updates.go b/profile/updates.go index cd923c10..36d57f9b 100644 --- a/profile/updates.go +++ b/profile/updates.go @@ -4,9 +4,9 @@ import ( "strings" "sync/atomic" - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/database/query" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/database" + "github.com/safing/portbase/database/query" + "github.com/safing/portbase/log" ) func initUpdateListener() error { diff --git a/status/database.go b/status/database.go index 8aa34ef7..b0d7b291 100644 --- a/status/database.go +++ b/status/database.go @@ -1,9 +1,9 @@ package status import ( - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/database/query" - "github.com/Safing/portbase/database/record" + "github.com/safing/portbase/database" + "github.com/safing/portbase/database/query" + "github.com/safing/portbase/database/record" ) const ( diff --git a/status/get-config.go b/status/get-config.go index c8641551..b216e4b2 100644 --- a/status/get-config.go +++ b/status/get-config.go @@ -1,7 +1,7 @@ package status import ( - "github.com/Safing/portbase/config" + "github.com/safing/portbase/config" ) type ( diff --git a/status/module.go b/status/module.go index 91404d92..a41147fc 100644 --- a/status/module.go +++ b/status/module.go @@ -1,12 +1,12 @@ package status import ( - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/modules" + "github.com/safing/portbase/database" + "github.com/safing/portbase/log" + "github.com/safing/portbase/modules" // module dependencies - _ "github.com/Safing/portmaster/core" + _ "github.com/safing/portmaster/core" ) var ( diff --git a/status/set.go b/status/set.go index 4d63ac16..ff283200 100644 --- a/status/set.go +++ b/status/set.go @@ -3,7 +3,7 @@ package status import ( "sync/atomic" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" ) // autopilot automatically adjusts the security level as needed diff --git a/status/status.go b/status/status.go index e71d892c..547f3b6c 100644 --- a/status/status.go +++ b/status/status.go @@ -4,8 +4,8 @@ import ( "fmt" "sync" - "github.com/Safing/portbase/database/record" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/database/record" + "github.com/safing/portbase/log" ) var ( diff --git a/threats/all.go b/threats/all.go index 6ec88a42..f4ce20d0 100644 --- a/threats/all.go +++ b/threats/all.go @@ -1,6 +1,6 @@ package threats import ( - _ "github.com/Safing/portmaster/threats/arp" - _ "github.com/Safing/portmaster/threats/portscan" + _ "github.com/safing/portmaster/threats/arp" + _ "github.com/safing/portmaster/threats/portscan" ) diff --git a/threats/arp/os_linux.go b/threats/arp/os_linux.go index 3512d54b..6cf16bc0 100644 --- a/threats/arp/os_linux.go +++ b/threats/arp/os_linux.go @@ -5,7 +5,7 @@ import ( "os" "strings" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" ) const ( diff --git a/ui/module.go b/ui/module.go index 654ded14..4af2a110 100644 --- a/ui/module.go +++ b/ui/module.go @@ -1,8 +1,8 @@ package ui import ( - "github.com/Safing/portbase/api" - "github.com/Safing/portbase/modules" + "github.com/safing/portbase/api" + "github.com/safing/portbase/modules" ) func init() { diff --git a/ui/serve.go b/ui/serve.go index 8c65c9c1..dbf5637f 100644 --- a/ui/serve.go +++ b/ui/serve.go @@ -13,9 +13,9 @@ import ( resources "github.com/cookieo9/resources-go" "github.com/gorilla/mux" - "github.com/Safing/portbase/api" - "github.com/Safing/portbase/log" - "github.com/Safing/portmaster/updates" + "github.com/safing/portbase/api" + "github.com/safing/portbase/log" + "github.com/safing/portmaster/updates" ) var ( diff --git a/updates/fetch.go b/updates/fetch.go index d07a0248..f1cd07de 100644 --- a/updates/fetch.go +++ b/updates/fetch.go @@ -14,7 +14,7 @@ import ( "github.com/google/renameio" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" ) var ( diff --git a/updates/get.go b/updates/get.go index 9f8385f4..3ac13b8e 100644 --- a/updates/get.go +++ b/updates/get.go @@ -8,7 +8,7 @@ import ( "path/filepath" "runtime" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" ) var ( diff --git a/updates/latest.go b/updates/latest.go index 5c90b73f..83bb11b6 100644 --- a/updates/latest.go +++ b/updates/latest.go @@ -10,7 +10,7 @@ import ( "runtime" "sync" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" ) var ( diff --git a/updates/main.go b/updates/main.go index f9d32467..3b9e68cc 100644 --- a/updates/main.go +++ b/updates/main.go @@ -6,10 +6,10 @@ import ( "os" "path/filepath" - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/info" - "github.com/Safing/portbase/log" - "github.com/Safing/portbase/modules" + "github.com/safing/portbase/database" + "github.com/safing/portbase/info" + "github.com/safing/portbase/log" + "github.com/safing/portbase/modules" ) var ( diff --git a/updates/notify.go b/updates/notify.go index f944cf51..cb785952 100644 --- a/updates/notify.go +++ b/updates/notify.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/Safing/portbase/notifications" + "github.com/safing/portbase/notifications" ) const coreIdentifier = "core/portmaster" diff --git a/updates/status.go b/updates/status.go index 7a61c555..c8a69593 100644 --- a/updates/status.go +++ b/updates/status.go @@ -4,11 +4,11 @@ import ( "errors" "sync" - "github.com/Safing/portbase/database" - "github.com/Safing/portbase/database/query" - "github.com/Safing/portbase/database/record" - "github.com/Safing/portbase/info" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/database" + "github.com/safing/portbase/database/query" + "github.com/safing/portbase/database/record" + "github.com/safing/portbase/info" + "github.com/safing/portbase/log" "github.com/tevino/abool" ) diff --git a/updates/updater.go b/updates/updater.go index 10342971..8dab77b2 100644 --- a/updates/updater.go +++ b/updates/updater.go @@ -8,7 +8,7 @@ import ( "runtime" "time" - "github.com/Safing/portbase/log" + "github.com/safing/portbase/log" ) func updater() { diff --git a/updates/uptool/scan.go b/updates/uptool/scan.go index ccb5185d..47b280c3 100644 --- a/updates/uptool/scan.go +++ b/updates/uptool/scan.go @@ -4,7 +4,7 @@ import ( "encoding/json" "fmt" - "github.com/Safing/portmaster/updates" + "github.com/safing/portmaster/updates" "github.com/spf13/cobra" )