Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
rajeshk28 opened this issue May 23, 2020 · 7 comments

Comments

@rajeshk28
Copy link

No description provided.

@g0tmi1k
Copy link
Collaborator

g0tmi1k commented May 27, 2020

The main one being?

@g0tmi1k g0tmi1k added the question Question label May 27, 2020
@rajeshk28
Copy link
Author

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

@g0tmi1k
Copy link
Collaborator

g0tmi1k commented May 29, 2020

% 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
Copy link
Collaborator

g0tmi1k commented May 29, 2020

% 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
Copy link
Collaborator

g0tmi1k commented May 29, 2020

% 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
Copy link
Collaborator

g0tmi1k commented May 29, 2020

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 g0tmi1k self-assigned this Feb 11, 2021
@g0tmi1k g0tmi1k removed their assignment Aug 27, 2021
@molangning
Copy link
Contributor

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants