Skip to content

Commit 8f8b958

Browse files
authored
Updated username
1 parent f962828 commit 8f8b958

15 files changed

+29
-29
lines changed

.github/FUNDING.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# These are supported funding model platforms
22

3-
github: giteshnxtlvl
3+
github: glitchedgitz
44
patreon: #
55
open_collective: # Replace with a single Open Collective username
66
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
99
liberapay: # Replace with a single Liberapay username
1010
issuehunt: # Replace with a single IssueHunt username
1111
otechie: # Replace with a single Otechie username
12-
custom: https://www.buymeacoffee.com/giteshnxtlvl
12+
custom: https://www.buymeacoffee.com/glitchedgitz

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Gitesh Sharma @giteshnxtlvl
3+
Copyright (c) 2021 Gitesh Sharma @glitchedgitz
44

55

66
Permission is hereby granted, free of charge, to any person obtaining a copy

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ Frustration killer! & Customizable!
77

88
### Customizable
99
Cook is highly customizable and it depends on
10-
[cook-ingredients](https://github.com/giteshnxtlvl/cook-ingredients). Cook Ingredients consists YAML Collection of word-sets, extensions, funcitons to generate pattern and wordlists.
10+
[cook-ingredients](https://github.com/glitchedgitz/cook-ingredients). Cook Ingredients consists YAML Collection of word-sets, extensions, funcitons to generate pattern and wordlists.
1111

1212
### Installation
13-
Use Go or download [latest builds](https://github.com/giteshnxtlvl/cook/releases/)
13+
Use Go or download [latest builds](https://github.com/glitchedgitz/cook/releases/)
1414
```
15-
go install -v github.com/giteshnxtlvl/cook/v2/cmd/cook@latest
15+
go install -v github.com/glitchedgitz/cook/v2/cmd/cook@latest
1616
```
1717

18-
> 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.
18+
> 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.
1919
2020
# Basic
2121
Without basics, everything is useless.
@@ -216,7 +216,7 @@ Version 1.6 and Version 2 have signifant breaking changes to improe the usabilit
216216
- Simplyfied ranges
217217

218218
# Contribute
219-
- Add wordlists, wordsets, functions, ports and other things in [cook-ingredients](https://github.com/giteshnxtlvl/cook-ingredients)
219+
- Add wordlists, wordsets, functions, ports and other things in [cook-ingredients](https://github.com/glitchedgitz/cook-ingredients)
220220
- Making **raw string** works like as it works in programming languages. Means better parser.
221221
- I don't know, you might use your creativity and add some awesome features.
222-
Or you can [buy me a coffee](https://www.buymeacoffee.com/giteshnxtlvl)
222+
Or you can [buy me a coffee](https://www.buymeacoffee.com/glitchedgitz)

v2/cmd/cook/cmd.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"sort"
99
"strings"
1010

11-
"github.com/giteshnxtlvl/cook/v2/pkg/cook"
11+
"github.com/glitchedgitz/cook/v2/pkg/cook"
1212
"github.com/manifoldco/promptui"
1313
)
1414

v2/cmd/cook/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/giteshnxtlvl/cook/v2/pkg/cook"
10+
"github.com/glitchedgitz/cook/v2/pkg/cook"
1111
)
1212

1313
var total = 0

v2/cmd/cook/methods.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"github.com/adrg/strutil"
1111
"github.com/adrg/strutil/metrics"
1212
"github.com/ffuf/pencode/pkg/pencode"
13-
"github.com/giteshnxtlvl/cook/v2/pkg/cook"
14-
"github.com/giteshnxtlvl/cook/v2/pkg/methods"
15-
"github.com/giteshnxtlvl/cook/v2/pkg/parse"
13+
"github.com/glitchedgitz/cook/v2/pkg/cook"
14+
"github.com/glitchedgitz/cook/v2/pkg/methods"
15+
"github.com/glitchedgitz/cook/v2/pkg/parse"
1616
)
1717

1818
var methodFunc = map[string]func([]string, string, *[]string){

v2/cmd/cook/params.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"strconv"
88
"strings"
99

10-
"github.com/giteshnxtlvl/cook/v2/pkg/cook"
11-
"github.com/giteshnxtlvl/cook/v2/pkg/methods"
12-
"github.com/giteshnxtlvl/cook/v2/pkg/parse"
10+
"github.com/glitchedgitz/cook/v2/pkg/cook"
11+
"github.com/glitchedgitz/cook/v2/pkg/methods"
12+
"github.com/glitchedgitz/cook/v2/pkg/parse"
1313
)
1414

1515
var home, _ = os.UserHomeDir()

v2/cmd/cook/usage.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"strings"
88

9-
"github.com/giteshnxtlvl/cook/v2/pkg/cook"
9+
"github.com/glitchedgitz/cook/v2/pkg/cook"
1010
)
1111

1212
var version = "2.0"
@@ -24,7 +24,7 @@ var banner = fmt.Sprintf(`
2424
THE WORDLIST'S FRAMEWORK
2525
2626
Version %s
27-
Gitesh Sharma @giteshnxtlvl
27+
Gitesh Sharma @glitchedgitz
2828
`, version)
2929

3030
var helpFunctions = map[string]func(){
@@ -76,7 +76,7 @@ func printHelp(title string, description ...string) {
7676

7777
func flagsHelp() {
7878

79-
printHelp("GITHUB", "https://github.com/giteshnxtlvl/cook")
79+
printHelp("GITHUB", "https://github.com/glitchedgitz/cook")
8080

8181
printHelp(
8282
"USAGE",

v2/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/giteshnxtlvl/cook/v2
1+
module github.com/glitchedgitz/cook/v2
22

33
go 1.17
44

v2/pkg/cook/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func firstRun() {
4343
}
4444

4545
structure := make(map[string][]string)
46-
err = yaml.Unmarshal([]byte(GetData("https://raw.githubusercontent.com/giteshnxtlvl/cook-ingredients/main/structure")), &structure)
46+
err = yaml.Unmarshal([]byte(GetData("https://raw.githubusercontent.com/glitchedgitz/cook-ingredients/main/structure")), &structure)
4747
if err != nil {
4848
log.Fatalf("Err: Parsing YAML %v", err)
4949
}

v2/pkg/cook/parse.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strconv"
99
"strings"
1010

11-
"github.com/giteshnxtlvl/cook/v2/pkg/parse"
11+
"github.com/glitchedgitz/cook/v2/pkg/parse"
1212
)
1313

1414
var (

v2/pkg/cook/update.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ func getLocalFile(m map[string][]string) {
2121
}
2222

2323
func getRepoFile(m map[string][]string) {
24-
content := GetData("https://raw.githubusercontent.com/giteshnxtlvl/cook-ingredients/main/info.yaml")
24+
content := GetData("https://raw.githubusercontent.com/glitchedgitz/cook-ingredients/main/info.yaml")
2525

2626
err := yaml.Unmarshal([]byte(content), &m)
2727
if err != nil {
28-
log.Fatalf("Err: Parsing YAML %s %v", "https://raw.githubusercontent.com/giteshnxtlvl/cook-ingredients/main/info.yaml", err)
28+
log.Fatalf("Err: Parsing YAML %s %v", "https://raw.githubusercontent.com/glitchedgitz/cook-ingredients/main/info.yaml", err)
2929
}
3030
}
3131

@@ -45,7 +45,7 @@ var wg sync.WaitGroup
4545
func updateFile(file string) {
4646
// fmt.Println("Updating : ", file)
4747
defer wg.Done()
48-
content := GetData("https://raw.githubusercontent.com/giteshnxtlvl/cook-ingredients/main/" + file)
48+
content := GetData("https://raw.githubusercontent.com/glitchedgitz/cook-ingredients/main/" + file)
4949
localFile := path.Join(ConfigFolder, file)
5050
WriteFile(localFile, content)
5151
}

v2/pkg/methods/leet.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strconv"
77
"strings"
88

9-
"github.com/giteshnxtlvl/cook/v2/pkg/cook"
9+
"github.com/glitchedgitz/cook/v2/pkg/cook"
1010
)
1111

1212
var leetValues = make(map[string][]string)

v2/pkg/methods/regex.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package methods
22

3-
import "github.com/giteshnxtlvl/cook/v2/pkg/cook"
3+
import "github.com/glitchedgitz/cook/v2/pkg/cook"
44

55
func Regex(values []string, regex string, array *[]string) {
66
data := []byte{}

v2/pkg/methods/urls.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"path/filepath"
88
"strings"
99

10-
"github.com/giteshnxtlvl/cook/v2/pkg/cook"
10+
"github.com/glitchedgitz/cook/v2/pkg/cook"
1111
"golang.org/x/net/publicsuffix"
1212
)
1313

0 commit comments

Comments
 (0)