Skip to content

Commit

Permalink
Updated username
Browse files Browse the repository at this point in the history
  • Loading branch information
glitchedgitz authored Oct 18, 2022
1 parent f962828 commit 8f8b958
Show file tree
Hide file tree
Showing 15 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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)
2 changes: 1 addition & 1 deletion v2/cmd/cook/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion v2/cmd/cook/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"time"

"github.com/giteshnxtlvl/cook/v2/pkg/cook"
"github.com/glitchedgitz/cook/v2/pkg/cook"
)

var total = 0
Expand Down
6 changes: 3 additions & 3 deletions v2/cmd/cook/methods.go
Original file line number Diff line number Diff line change
Expand Up @@ -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){
Expand Down
6 changes: 3 additions & 3 deletions v2/cmd/cook/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
6 changes: 3 additions & 3 deletions v2/cmd/cook/usage.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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(){
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion v2/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/giteshnxtlvl/cook/v2
module github.com/glitchedgitz/cook/v2

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion v2/pkg/cook/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down
2 changes: 1 addition & 1 deletion v2/pkg/cook/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strconv"
"strings"

"github.com/giteshnxtlvl/cook/v2/pkg/parse"
"github.com/glitchedgitz/cook/v2/pkg/parse"
)

var (
Expand Down
6 changes: 3 additions & 3 deletions v2/pkg/cook/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

Expand All @@ -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)
}
Expand Down
2 changes: 1 addition & 1 deletion v2/pkg/methods/leet.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion v2/pkg/methods/regex.go
Original file line number Diff line number Diff line change
@@ -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{}
Expand Down
2 changes: 1 addition & 1 deletion v2/pkg/methods/urls.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down

0 comments on commit 8f8b958

Please sign in to comment.