SecLists
SecLists copied to clipboard
what is the lowecase.txt is? we it have all the content from the main one?
The main one being?
I am talking regarding Raft lower case wordlists. Are they the same compared to other RAFT wordlists. Means is the content same of different
% 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...
% 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
%
% 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.
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)
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.