SecLists icon indicating copy to clipboard operation
SecLists copied to clipboard

what is the lowecase.txt is? we it have all the content from the main one?

Open rajeshk28 opened this issue 4 years ago • 7 comments

rajeshk28 avatar May 23 '20 18:05 rajeshk28

The main one being?

g0tmi1k avatar May 27 '20 08:05 g0tmi1k

I am talking regarding Raft lower case wordlists. Are they the same compared to other RAFT wordlists. Means is the content same of different

rajeshk28 avatar May 27 '20 10:05 rajeshk28

% wc -l raft-small-words*
   38267 raft-small-words-lowercase.txt
   43003 raft-small-words.txt
   81270 total
%

Looks like the content is different. Wonder if thats because the duplicates have been removed when they put into lowercase...

g0tmi1k avatar May 29 '20 14:05 g0tmi1k

% grep -i phpmyadmin raft-small-words* | sort
raft-small-words-lowercase.txt:_phpmyadmin
raft-small-words-lowercase.txt:phpmyadmin
raft-small-words-lowercase.txt:phpmyadmin-2
raft-small-words-lowercase.txt:phpmyadmin2
raft-small-words-lowercase.txt:phpmyadmin3
raft-small-words.txt:PHPMyAdmin
raft-small-words.txt:PhpMyAdmin
raft-small-words.txt:_phpMyAdmin
raft-small-words.txt:_phpmyadmin
raft-small-words.txt:phpMyAdmin
raft-small-words.txt:phpMyAdmin-2
raft-small-words.txt:phpMyAdmin2
raft-small-words.txt:phpmyadmin
raft-small-words.txt:phpmyadmin2
raft-small-words.txt:phpmyadmin3
% 

g0tmi1k avatar May 29 '20 14:05 g0tmi1k

% cat raft-small-words.txt| tr '[:upper:]' '[:lower:]' | sort -u > raft-small-words-new.txt
% wc -l raft-small-words* | sort
   38267 raft-small-words-lowercase.txt
   38267 raft-small-words-new.txt
   43003 raft-small-words.txt
  119537 total
%

So yeah, same content - just with the duplicates from making it lowercase removed.

g0tmi1k avatar May 29 '20 14:05 g0tmi1k

I wonder how much value it is then having the lowercase ones (I guess it depends on if its used in something which is case insensitive)

g0tmi1k avatar May 29 '20 14:05 g0tmi1k

I surpose it is useful when you have a target that somehows transform everything into lowercases or mixed cases requests get a redirect to its lowercase version.

molangning avatar Nov 25 '23 02:11 molangning