danielmiessler / SecLists

SecLists is the security tester's companion. It's a collection of multiple types of lists used during security assessments, collected in one place. List types include usernames, passwords, URLs, sensitive data patterns, fuzzing payloads, web shells, and many more.
https://www.owasp.org/index.php/OWASP_Internet_of_Things_Project
MIT License
57.27k stars 23.79k forks source link

Passwords/Leaked Databases: Fortinet list is combined usernames and passwords #856

Closed guffre closed 10 months ago

guffre commented 1 year ago

The fortinet-2021.txt file is a combo of usernames and passwords:

root@kali:/tmp# head /com/tools/seclists/Passwords/Leaked-Databases/fortinet-2021.txt 
egiovetti:G10v3tt1.@carlos.abril:0812508513Caahimi:AHcc2019
FFrancisco:FFrh6800
acaquielo:ACdrh2020
alivingui:ALtc335
AVicente:AVtt021
ddelgado:DDtt046

After splitting usernames from passwords and de-duping, the list of ~450,000 "passwords" becomes a list of ~100,000 usernames and passwords:

root@kali:/tmp# cut -d":" -f 1 /com/tools/seclists/Passwords/Leaked-Databases/fortinet-2021.txt  | head -3
egiovetti
FFrancisco
acaquielo

root@kali:/tmp# cut -d":" -f 2- /com/tools/seclists/Passwords/Leaked-Databases/fortinet-2021.txt  | head -3
G10v3tt1.@carlos.abril:0812508513Caahimi:AHcc2019
FFrh6800
ACdrh2020

root@kali:/tmp# cut -d":" -f 2- /com/tools/seclists/Passwords/Leaked-Databases/fortinet-2021.txt  | sort | uniq | wc
  96478  101451 1794456
root@kali:/tmp# cut -d":" -f 1 /com/tools/seclists/Passwords/Leaked-Databases/fortinet-2021.txt  | sort | uniq | wc
  87986   90053  940096

Would it be possible to split this list, moving the usernames into the "Usernames" folder. Currently, the file is useless as a password file.

g0tmi1k commented 1 year ago

Sounds good to me - could you open up a MR?

ItsIgnacioPortal commented 12 months ago

While preparing the new files for a pull request I noticed that the Fortinet leak .txt file isn't a clean list of username:passwords combos. fortinet-2021.txt contains:

It'll require a substantial amount of work to get useful data out of the Fortinet leak. I'm currently working on a PR for this.