From 8f8b958817c75cafbee4a143e49fe9985b1e5577 Mon Sep 17 00:00:00 2001 From: Gitesh Sharma <58145476+glitchedgitz@users.noreply.github.com> Date: Tue, 18 Oct 2022 12:56:44 +0530 Subject: [PATCH] Updated username --- .github/FUNDING.yml | 4 ++-- LICENSE | 2 +- README.md | 12 ++++++------ v2/cmd/cook/cmd.go | 2 +- v2/cmd/cook/main.go | 2 +- v2/cmd/cook/methods.go | 6 +++--- v2/cmd/cook/params.go | 6 +++--- v2/cmd/cook/usage.go | 6 +++--- v2/go.mod | 2 +- v2/pkg/cook/config.go | 2 +- v2/pkg/cook/parse.go | 2 +- v2/pkg/cook/update.go | 6 +++--- v2/pkg/methods/leet.go | 2 +- v2/pkg/methods/regex.go | 2 +- v2/pkg/methods/urls.go | 2 +- 15 files changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 0d1830f..9eb6f9d 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,6 +1,6 @@ # These are supported funding model platforms -github: giteshnxtlvl +github: glitchedgitz patreon: # open_collective: # Replace with a single Open Collective username ko_fi: # Replace with a single Ko-fi username @@ -9,4 +9,4 @@ community_bridge: # Replace with a single Community Bridge project-name e.g., cl liberapay: # Replace with a single Liberapay username issuehunt: # Replace with a single IssueHunt username otechie: # Replace with a single Otechie username -custom: https://www.buymeacoffee.com/giteshnxtlvl +custom: https://www.buymeacoffee.com/glitchedgitz diff --git a/LICENSE b/LICENSE index 055174c..f01bfc5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Gitesh Sharma @giteshnxtlvl +Copyright (c) 2021 Gitesh Sharma @glitchedgitz Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/README.md b/README.md index f7b5c69..e19913f 100644 --- a/README.md +++ b/README.md @@ -7,15 +7,15 @@ Frustration killer! & Customizable! ### Customizable Cook is highly customizable and it depends on -[cook-ingredients](https://github.com/giteshnxtlvl/cook-ingredients). Cook Ingredients consists YAML Collection of word-sets, extensions, funcitons to generate pattern and wordlists. +[cook-ingredients](https://github.com/glitchedgitz/cook-ingredients). Cook Ingredients consists YAML Collection of word-sets, extensions, funcitons to generate pattern and wordlists. ### Installation -Use Go or download [latest builds](https://github.com/giteshnxtlvl/cook/releases/) +Use Go or download [latest builds](https://github.com/glitchedgitz/cook/releases/) ``` -go install -v github.com/giteshnxtlvl/cook/v2/cmd/cook@latest +go install -v github.com/glitchedgitz/cook/v2/cmd/cook@latest ``` -> After installation, run `cook` for one time, it will download [cook-ingredients](https://github.com/giteshnxtlvl/cook-ingredients) automatically at `%USERPROFILE%/cook-ingredients` for windows and `$home/cook-ingredients` for linux. +> After installation, run `cook` for one time, it will download [cook-ingredients](https://github.com/glitchedgitz/cook-ingredients) automatically at `%USERPROFILE%/cook-ingredients` for windows and `$home/cook-ingredients` for linux. # Basic Without basics, everything is useless. @@ -216,7 +216,7 @@ Version 1.6 and Version 2 have signifant breaking changes to improe the usabilit - Simplyfied ranges # Contribute -- Add wordlists, wordsets, functions, ports and other things in [cook-ingredients](https://github.com/giteshnxtlvl/cook-ingredients) +- Add wordlists, wordsets, functions, ports and other things in [cook-ingredients](https://github.com/glitchedgitz/cook-ingredients) - Making **raw string** works like as it works in programming languages. Means better parser. - I don't know, you might use your creativity and add some awesome features. -Or you can [buy me a coffee](https://www.buymeacoffee.com/giteshnxtlvl)☕ +Or you can [buy me a coffee](https://www.buymeacoffee.com/glitchedgitz)☕ diff --git a/v2/cmd/cook/cmd.go b/v2/cmd/cook/cmd.go index 8ec5b89..e5f77fb 100644 --- a/v2/cmd/cook/cmd.go +++ b/v2/cmd/cook/cmd.go @@ -8,7 +8,7 @@ import ( "sort" "strings" - "github.com/giteshnxtlvl/cook/v2/pkg/cook" + "github.com/glitchedgitz/cook/v2/pkg/cook" "github.com/manifoldco/promptui" ) diff --git a/v2/cmd/cook/main.go b/v2/cmd/cook/main.go index 2a07038..95be52e 100644 --- a/v2/cmd/cook/main.go +++ b/v2/cmd/cook/main.go @@ -7,7 +7,7 @@ import ( "strings" "time" - "github.com/giteshnxtlvl/cook/v2/pkg/cook" + "github.com/glitchedgitz/cook/v2/pkg/cook" ) var total = 0 diff --git a/v2/cmd/cook/methods.go b/v2/cmd/cook/methods.go index d829713..72eb4fb 100644 --- a/v2/cmd/cook/methods.go +++ b/v2/cmd/cook/methods.go @@ -10,9 +10,9 @@ import ( "github.com/adrg/strutil" "github.com/adrg/strutil/metrics" "github.com/ffuf/pencode/pkg/pencode" - "github.com/giteshnxtlvl/cook/v2/pkg/cook" - "github.com/giteshnxtlvl/cook/v2/pkg/methods" - "github.com/giteshnxtlvl/cook/v2/pkg/parse" + "github.com/glitchedgitz/cook/v2/pkg/cook" + "github.com/glitchedgitz/cook/v2/pkg/methods" + "github.com/glitchedgitz/cook/v2/pkg/parse" ) var methodFunc = map[string]func([]string, string, *[]string){ diff --git a/v2/cmd/cook/params.go b/v2/cmd/cook/params.go index 4ee29d9..73235e9 100644 --- a/v2/cmd/cook/params.go +++ b/v2/cmd/cook/params.go @@ -7,9 +7,9 @@ import ( "strconv" "strings" - "github.com/giteshnxtlvl/cook/v2/pkg/cook" - "github.com/giteshnxtlvl/cook/v2/pkg/methods" - "github.com/giteshnxtlvl/cook/v2/pkg/parse" + "github.com/glitchedgitz/cook/v2/pkg/cook" + "github.com/glitchedgitz/cook/v2/pkg/methods" + "github.com/glitchedgitz/cook/v2/pkg/parse" ) var home, _ = os.UserHomeDir() diff --git a/v2/cmd/cook/usage.go b/v2/cmd/cook/usage.go index 53d2338..ce68826 100644 --- a/v2/cmd/cook/usage.go +++ b/v2/cmd/cook/usage.go @@ -6,7 +6,7 @@ import ( "os" "strings" - "github.com/giteshnxtlvl/cook/v2/pkg/cook" + "github.com/glitchedgitz/cook/v2/pkg/cook" ) var version = "2.0" @@ -24,7 +24,7 @@ var banner = fmt.Sprintf(` THE WORDLIST'S FRAMEWORK Version %s - Gitesh Sharma @giteshnxtlvl + Gitesh Sharma @glitchedgitz `, version) var helpFunctions = map[string]func(){ @@ -76,7 +76,7 @@ func printHelp(title string, description ...string) { func flagsHelp() { - printHelp("GITHUB", "https://github.com/giteshnxtlvl/cook") + printHelp("GITHUB", "https://github.com/glitchedgitz/cook") printHelp( "USAGE", diff --git a/v2/go.mod b/v2/go.mod index 0b61617..91e789a 100644 --- a/v2/go.mod +++ b/v2/go.mod @@ -1,4 +1,4 @@ -module github.com/giteshnxtlvl/cook/v2 +module github.com/glitchedgitz/cook/v2 go 1.17 diff --git a/v2/pkg/cook/config.go b/v2/pkg/cook/config.go index 8b1fe8f..8489341 100644 --- a/v2/pkg/cook/config.go +++ b/v2/pkg/cook/config.go @@ -43,7 +43,7 @@ func firstRun() { } structure := make(map[string][]string) - err = yaml.Unmarshal([]byte(GetData("https://raw.githubusercontent.com/giteshnxtlvl/cook-ingredients/main/structure")), &structure) + err = yaml.Unmarshal([]byte(GetData("https://raw.githubusercontent.com/glitchedgitz/cook-ingredients/main/structure")), &structure) if err != nil { log.Fatalf("Err: Parsing YAML %v", err) } diff --git a/v2/pkg/cook/parse.go b/v2/pkg/cook/parse.go index 28a3277..a73fa75 100644 --- a/v2/pkg/cook/parse.go +++ b/v2/pkg/cook/parse.go @@ -8,7 +8,7 @@ import ( "strconv" "strings" - "github.com/giteshnxtlvl/cook/v2/pkg/parse" + "github.com/glitchedgitz/cook/v2/pkg/parse" ) var ( diff --git a/v2/pkg/cook/update.go b/v2/pkg/cook/update.go index 4c37f41..f134753 100644 --- a/v2/pkg/cook/update.go +++ b/v2/pkg/cook/update.go @@ -21,11 +21,11 @@ func getLocalFile(m map[string][]string) { } func getRepoFile(m map[string][]string) { - content := GetData("https://raw.githubusercontent.com/giteshnxtlvl/cook-ingredients/main/info.yaml") + content := GetData("https://raw.githubusercontent.com/glitchedgitz/cook-ingredients/main/info.yaml") err := yaml.Unmarshal([]byte(content), &m) if err != nil { - log.Fatalf("Err: Parsing YAML %s %v", "https://raw.githubusercontent.com/giteshnxtlvl/cook-ingredients/main/info.yaml", err) + log.Fatalf("Err: Parsing YAML %s %v", "https://raw.githubusercontent.com/glitchedgitz/cook-ingredients/main/info.yaml", err) } } @@ -45,7 +45,7 @@ var wg sync.WaitGroup func updateFile(file string) { // fmt.Println("Updating : ", file) defer wg.Done() - content := GetData("https://raw.githubusercontent.com/giteshnxtlvl/cook-ingredients/main/" + file) + content := GetData("https://raw.githubusercontent.com/glitchedgitz/cook-ingredients/main/" + file) localFile := path.Join(ConfigFolder, file) WriteFile(localFile, content) } diff --git a/v2/pkg/methods/leet.go b/v2/pkg/methods/leet.go index f3a87b1..588d610 100644 --- a/v2/pkg/methods/leet.go +++ b/v2/pkg/methods/leet.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "github.com/giteshnxtlvl/cook/v2/pkg/cook" + "github.com/glitchedgitz/cook/v2/pkg/cook" ) var leetValues = make(map[string][]string) diff --git a/v2/pkg/methods/regex.go b/v2/pkg/methods/regex.go index 0a120a3..e735e86 100644 --- a/v2/pkg/methods/regex.go +++ b/v2/pkg/methods/regex.go @@ -1,6 +1,6 @@ package methods -import "github.com/giteshnxtlvl/cook/v2/pkg/cook" +import "github.com/glitchedgitz/cook/v2/pkg/cook" func Regex(values []string, regex string, array *[]string) { data := []byte{} diff --git a/v2/pkg/methods/urls.go b/v2/pkg/methods/urls.go index f893647..d0ae590 100644 --- a/v2/pkg/methods/urls.go +++ b/v2/pkg/methods/urls.go @@ -7,7 +7,7 @@ import ( "path/filepath" "strings" - "github.com/giteshnxtlvl/cook/v2/pkg/cook" + "github.com/glitchedgitz/cook/v2/pkg/cook" "golang.org/x/net/publicsuffix" )