glitchedgitz / cook

A wordlist framework to fullfill your kinks with your wordlists. For security researchers, bug bounty and hackers.

Home Page:https://twitter.com/glitchedgitz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Switch wordlists config to string instead of list

ocervell opened this issue · comments

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"

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.

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