From b3c3982196fb477af619982fb9617de488ad4643 Mon Sep 17 00:00:00 2001 From: sg Date: Sat, 6 Mar 2021 19:43:57 -0800 Subject: [PATCH] Update url --- allbrowsers/import.go | 30 +++++++++++++++--------------- auto_example_test.go | 6 +++--- chrome/chrome_test.go | 6 +++--- chrome/find.go | 8 ++++---- cookiestores_example_test.go | 4 ++-- export_example_test.go | 2 +- filter_example_test.go | 2 +- filtercookies_example_test.go | 4 ++-- find.go | 8 ++++---- firefox/find.go | 8 ++++---- firefox/firefox.go | 4 ++-- firefox/firefox_test.go | 2 +- internal/chrome/chrome.go | 4 ++-- internal/chrome/cookiestore.go | 4 ++-- internal/firefox/cookiestore.go | 4 ++-- internal/firefox/firefox.go | 4 ++-- safari/find.go | 4 ++-- safari/safari.go | 4 ++-- safari/safari_test.go | 4 ++-- 19 files changed, 56 insertions(+), 56 deletions(-) diff --git a/allbrowsers/import.go b/allbrowsers/import.go index 81c0656..56764b3 100644 --- a/allbrowsers/import.go +++ b/allbrowsers/import.go @@ -1,19 +1,19 @@ package allbrowsers import ( - // _ "github.com/zellyn/kooky/browsh" - _ "github.com/zellyn/kooky/chrome" - // _ "github.com/zellyn/kooky/dillo" - // _ "github.com/zellyn/kooky/edge" - // _ "github.com/zellyn/kooky/elinks" - // _ "github.com/zellyn/kooky/epiphany" - _ "github.com/zellyn/kooky/firefox" - // _ "github.com/zellyn/kooky/ie" - // _ "github.com/zellyn/kooky/konqueror" - // _ "github.com/zellyn/kooky/lynx" - // _ "github.com/zellyn/kooky/netscape" - // _ "github.com/zellyn/kooky/opera" - _ "github.com/zellyn/kooky/safari" - // _ "github.com/zellyn/kooky/uzbl" - // _ "github.com/zellyn/kooky/w3m" + // _ "github.com/newnoetic/kooky/browsh" + _ "github.com/newnoetic/kooky/chrome" + // _ "github.com/newnoetic/kooky/dillo" + // _ "github.com/newnoetic/kooky/edge" + // _ "github.com/newnoetic/kooky/elinks" + // _ "github.com/newnoetic/kooky/epiphany" + _ "github.com/newnoetic/kooky/firefox" + // _ "github.com/newnoetic/kooky/ie" + // _ "github.com/newnoetic/kooky/konqueror" + // _ "github.com/newnoetic/kooky/lynx" + // _ "github.com/newnoetic/kooky/netscape" + // _ "github.com/newnoetic/kooky/opera" + _ "github.com/newnoetic/kooky/safari" + // _ "github.com/newnoetic/kooky/uzbl" + // _ "github.com/newnoetic/kooky/w3m" ) diff --git a/auto_example_test.go b/auto_example_test.go index a77999e..6569377 100644 --- a/auto_example_test.go +++ b/auto_example_test.go @@ -3,9 +3,9 @@ package kooky_test import ( "fmt" - "github.com/zellyn/kooky" - _ "github.com/zellyn/kooky/allbrowsers" // This registers all cookiestore finders! - // _ "github.com/zellyn/kooky/chrome" // load only the chrome cookiestore finder + "github.com/newnoetic/kooky" + _ "github.com/newnoetic/kooky/allbrowsers" // This registers all cookiestore finders! + // _ "github.com/newnoetic/kooky/chrome" // load only the chrome cookiestore finder ) func ExampleReadCookies_all() { diff --git a/chrome/chrome_test.go b/chrome/chrome_test.go index 5c54d94..962ce83 100644 --- a/chrome/chrome_test.go +++ b/chrome/chrome_test.go @@ -4,9 +4,9 @@ import ( "testing" "time" - "github.com/zellyn/kooky" - "github.com/zellyn/kooky/internal/chrome" - "github.com/zellyn/kooky/internal/testutils" + "github.com/newnoetic/kooky" + "github.com/newnoetic/kooky/internal/chrome" + "github.com/newnoetic/kooky/internal/testutils" ) // d18f6247db68045dfbab126d814baf2cf1512141391 diff --git a/chrome/find.go b/chrome/find.go index fb6e54c..8c4d01d 100644 --- a/chrome/find.go +++ b/chrome/find.go @@ -1,10 +1,10 @@ package chrome import ( - "github.com/zellyn/kooky" - "github.com/zellyn/kooky/internal" - "github.com/zellyn/kooky/internal/chrome" - "github.com/zellyn/kooky/internal/chrome/find" + "github.com/newnoetic/kooky" + "github.com/newnoetic/kooky/internal" + "github.com/newnoetic/kooky/internal/chrome" + "github.com/newnoetic/kooky/internal/chrome/find" ) type chromeFinder struct{} diff --git a/cookiestores_example_test.go b/cookiestores_example_test.go index 1e4cdc5..cb107c7 100644 --- a/cookiestores_example_test.go +++ b/cookiestores_example_test.go @@ -3,8 +3,8 @@ package kooky_test import ( "fmt" - "github.com/zellyn/kooky" - _ "github.com/zellyn/kooky/allbrowsers" // register cookiestore finders + "github.com/newnoetic/kooky" + _ "github.com/newnoetic/kooky/allbrowsers" // register cookiestore finders ) var filters = []kooky.Filter{ diff --git a/export_example_test.go b/export_example_test.go index 229a359..2e1b00a 100644 --- a/export_example_test.go +++ b/export_example_test.go @@ -3,7 +3,7 @@ package kooky_test import ( "os" - "github.com/zellyn/kooky" + "github.com/newnoetic/kooky" ) var cookieFile = `cookies.txt` diff --git a/filter_example_test.go b/filter_example_test.go index 007e55d..aa96568 100644 --- a/filter_example_test.go +++ b/filter_example_test.go @@ -4,7 +4,7 @@ import ( "fmt" "regexp" - "github.com/zellyn/kooky" + "github.com/newnoetic/kooky" ) // example regex matching base64 strings diff --git a/filtercookies_example_test.go b/filtercookies_example_test.go index 23ddec5..e026d97 100644 --- a/filtercookies_example_test.go +++ b/filtercookies_example_test.go @@ -1,8 +1,8 @@ package kooky_test import ( - "github.com/zellyn/kooky" - _ "github.com/zellyn/kooky/allbrowsers" // register cookiestore finders + "github.com/newnoetic/kooky" + _ "github.com/newnoetic/kooky/allbrowsers" // register cookiestore finders ) var cookieName = `NID` diff --git a/find.go b/find.go index 453b59a..6dd8366 100644 --- a/find.go +++ b/find.go @@ -44,11 +44,11 @@ func RegisterFinder(browser string, finder CookieStoreFinder) { // // Register cookie store finders for all browsers like this: // -// import _ "github.com/zellyn/kooky/allbrowsers" +// import _ "github.com/newnoetic/kooky/allbrowsers" // // Or only a specific browser: // -// import _ "github.com/zellyn/kooky/chrome" +// import _ "github.com/newnoetic/kooky/chrome" func FindAllCookieStores() []CookieStore { var ret []CookieStore @@ -90,11 +90,11 @@ func FindAllCookieStores() []CookieStore { // // Register cookie store finders for all browsers like this: // -// import _ "github.com/zellyn/kooky/allbrowsers" +// import _ "github.com/newnoetic/kooky/allbrowsers" // // Or only a specific browser: // -// import _ "github.com/zellyn/kooky/chrome" +// import _ "github.com/newnoetic/kooky/chrome" func ReadCookies(filters ...Filter) []*Cookie { var ret []*Cookie diff --git a/firefox/find.go b/firefox/find.go index bdaef48..c654dae 100644 --- a/firefox/find.go +++ b/firefox/find.go @@ -1,10 +1,10 @@ package firefox import ( - "github.com/zellyn/kooky" - "github.com/zellyn/kooky/internal" - "github.com/zellyn/kooky/internal/firefox" - "github.com/zellyn/kooky/internal/firefox/find" + "github.com/newnoetic/kooky" + "github.com/newnoetic/kooky/internal" + "github.com/newnoetic/kooky/internal/firefox" + "github.com/newnoetic/kooky/internal/firefox/find" ) type firefoxFinder struct{} diff --git a/firefox/firefox.go b/firefox/firefox.go index 12f90c0..f3bb587 100644 --- a/firefox/firefox.go +++ b/firefox/firefox.go @@ -1,8 +1,8 @@ package firefox import ( - "github.com/zellyn/kooky" - "github.com/zellyn/kooky/internal/firefox" + "github.com/newnoetic/kooky" + "github.com/newnoetic/kooky/internal/firefox" ) func ReadCookies(filename string, filters ...kooky.Filter) ([]*kooky.Cookie, error) { diff --git a/firefox/firefox_test.go b/firefox/firefox_test.go index f3b2e9a..f6832f5 100644 --- a/firefox/firefox_test.go +++ b/firefox/firefox_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/zellyn/kooky/internal/testutils" + "github.com/newnoetic/kooky/internal/testutils" ) func TestReadCookies(t *testing.T) { diff --git a/internal/chrome/chrome.go b/internal/chrome/chrome.go index deb504e..785209b 100644 --- a/internal/chrome/chrome.go +++ b/internal/chrome/chrome.go @@ -12,8 +12,8 @@ import ( "golang.org/x/crypto/pbkdf2" - "github.com/zellyn/kooky" - "github.com/zellyn/kooky/internal/utils" + "github.com/newnoetic/kooky" + "github.com/newnoetic/kooky/internal/utils" ) // Thanks to https://gist.github.com/dacort/bd6a5116224c594b14db diff --git a/internal/chrome/cookiestore.go b/internal/chrome/cookiestore.go index ba69e2f..a0e51e1 100644 --- a/internal/chrome/cookiestore.go +++ b/internal/chrome/cookiestore.go @@ -4,8 +4,8 @@ import ( "errors" "github.com/go-sqlite/sqlite3" - "github.com/zellyn/kooky" - "github.com/zellyn/kooky/internal" + "github.com/newnoetic/kooky" + "github.com/newnoetic/kooky/internal" ) type CookieStore struct { diff --git a/internal/firefox/cookiestore.go b/internal/firefox/cookiestore.go index ab31cc0..9f920d5 100644 --- a/internal/firefox/cookiestore.go +++ b/internal/firefox/cookiestore.go @@ -4,8 +4,8 @@ import ( "errors" "github.com/go-sqlite/sqlite3" - "github.com/zellyn/kooky" - "github.com/zellyn/kooky/internal" + "github.com/newnoetic/kooky" + "github.com/newnoetic/kooky/internal" ) type CookieStore struct { diff --git a/internal/firefox/firefox.go b/internal/firefox/firefox.go index 0b72aee..92daa03 100644 --- a/internal/firefox/firefox.go +++ b/internal/firefox/firefox.go @@ -5,8 +5,8 @@ import ( "fmt" "time" - "github.com/zellyn/kooky" - "github.com/zellyn/kooky/internal/utils" + "github.com/newnoetic/kooky" + "github.com/newnoetic/kooky/internal/utils" "github.com/bobesa/go-domain-util/domainutil" ) diff --git a/safari/find.go b/safari/find.go index 7bb5c4a..78fe4a9 100644 --- a/safari/find.go +++ b/safari/find.go @@ -9,8 +9,8 @@ import ( "os" "path/filepath" - "github.com/zellyn/kooky" - "github.com/zellyn/kooky/internal" + "github.com/newnoetic/kooky" + "github.com/newnoetic/kooky/internal" ) type safariFinder struct{} diff --git a/safari/safari.go b/safari/safari.go index 957104a..4b72184 100644 --- a/safari/safari.go +++ b/safari/safari.go @@ -13,8 +13,8 @@ import ( "math" "time" - "github.com/zellyn/kooky" - "github.com/zellyn/kooky/internal" + "github.com/newnoetic/kooky" + "github.com/newnoetic/kooky/internal" ) type fileHeader struct { diff --git a/safari/safari_test.go b/safari/safari_test.go index 27a46cd..41d01a3 100644 --- a/safari/safari_test.go +++ b/safari/safari_test.go @@ -4,8 +4,8 @@ import ( "testing" "time" - "github.com/zellyn/kooky" - "github.com/zellyn/kooky/internal/testutils" + "github.com/newnoetic/kooky" + "github.com/newnoetic/kooky/internal/testutils" ) // d18f6247db68045dfbab126d814baf2cf1512141391