glitchedgitz / cook

A wordlist framework to fullfill your kinks with your wordlists. For security researchers, bug bounty and hackers.
https://twitter.com/glitchedgitz
MIT License
1.03k stars 109 forks source link

Switch wordlists config to string instead of list #46

Closed ocervell closed 6 months ago

ocervell commented 6 months ago
files:
  bo0m_fuzz: [https://raw.githubusercontent.com/Bo0oM/fuzz.txt/master/fuzz.txt]
raw_files:
  bxss: [E:\tools\base\bxss.txt]

Is there a reason why the value of the wordlist is a list here ?

Should we maybe switch to:

files:
  bo0m_fuzz: "https://raw.githubusercontent.com/Bo0oM/fuzz.txt/master/fuzz.txt"
raw_files:
  bxss: "E:\tools\base\bxss.txt"
glitchedgitz commented 6 months ago

It is list because it can combine the wordlists from the multiple urls.

image

Let's say you found multiple good wordlist for a particular thing let say api

files: 
     my-api:
         - URL 1
         - URL 2
         - URL 3
         ....
         - URL n

Now when you call my-api It will combine them.

ocervell commented 6 months ago

Sounds good, and that's a neat feature. I'll close this since there is a use case for it then ! Thanks