fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

8.7K
active users

#wordlists

0 posts0 participants0 posts today
postmodern<p><a href="https://github.com/BlackArch/wordlistctl/blob/master/repo.json" rel="nofollow noopener" target="_blank">wordlistctl</a> lists installable wordlists from SecLists, but lists them by file name (ex: <code>SecLists/Fuzzing/Databases/NoSQL.txt</code> -&gt; <code>NoSQL</code>). Would it be better to list installable wordlists by relative path (ex: <code>Fuzzing/Databases/NoSQL</code>) or file name (ex: <code>NoSQL</code>)?</p><p><a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a></p>
postmodern<p>I saw <a href="https://gitlab.com/initstring/passphrase-wordlist" rel="nofollow noopener" target="_blank">this passphrase wordlist</a> project popup. Just like to remind folks that passphrase passwords (ex: correcthorsebatterystapler), even with character substitution, can be enumerated and that GPUs will eventually be able to bruteforce the inevitable password dumps from data breaches. In fact a certain someone wrote up a blog post two years ago showing how you could <a href="https://postmodern.github.io/blog/2022/01/23/enumerating-xkcd-style-passwords-with-ruby.html" rel="nofollow noopener" target="_blank">enumerate all permutations of passphrases using Ruby</a> to build your own custom passphrase wordlists; which of course was met with immediate poo-pooing upon.<br><a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a> <a href="https://infosec.exchange/tags/passphrase" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>passphrase</span></a> <a href="https://infosec.exchange/tags/enumeration" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>enumeration</span></a> <a href="https://infosec.exchange/tags/ruby" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ruby</span></a></p>
postmodern<p>Does anyone actually use the <code>User-Agent</code> wordlists from SecLists that are grouped by OS/platform? Some of these files only contain a single <code>User-Agent</code> (lol) because apparently LG adds a random string to their UAs. /cc <span class="h-card" translate="no"><a href="https://infosec.exchange/@danielmiessler" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>danielmiessler</span></a></span> <a href="https://github.com/danielmiessler/SecLists/blob/master/Fuzzing/User-Agents/operating-platform/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">github.com/danielmiessler/SecL</span><span class="invisible">ists/blob/master/Fuzzing/User-Agents/operating-platform/</span></a><br><a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a> <a href="https://infosec.exchange/tags/seclists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>seclists</span></a></p>
postmodern<p>Top recommendations so far are:</p><ul><li><a href="https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/Web-Content/raft-small-directories.txt" rel="nofollow noopener" target="_blank">raft-small-directories</a></li><li><a href="https://raw.githubusercontent.com/Isona/dirble/master/dirble_wordlist.txt" rel="nofollow noopener" target="_blank">dirble_wordlist</a><a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a></li></ul>
postmodern<p>If a password is manually typed in, it is probably going to be a combination of a few common words, and maybe some random numbers on the end, and maybe a random deliminator character between the words/numbers. For that purpose you can just do a cartesian product of multiple wordlits, a list of numbers/years, and an array of symbol characters. This can be done using the Ruby <a href="https://postmodern.github.io/blog/2022/01/23/enumerating-xkcd-style-passwords-with-ruby.html" rel="nofollow noopener" target="_blank">wordlist</a> <a href="https://github.com/postmodern/wordlist.rb#examples" rel="nofollow noopener" target="_blank">library</a> and <a href="https://github.com/postmodern/wordlist.rb#synopsis" rel="nofollow noopener" target="_blank">CLI</a>. Do you suspect they did any "leet speak" character substitutions? Both the <code>wordlist</code> library and CLI supports enumerating over every possible substitution mutation of every generated word.</p><p>If a password is generated by a password manager, than all you need to do is pick a character set (usually visible ASCII characters), and generate all strings of a range of lengths. This can be done using using the Ruby <a href="https://github.com/postmodern/chars.rb#readme" rel="nofollow noopener" target="_blank">chars</a> library (ex: <code>Chars::VISIBLE.strings_of_length(10..14).each { |password| ... }</code>).<br><a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a> <a href="https://infosec.exchange/tags/ruby" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ruby</span></a> <a href="https://infosec.exchange/tags/pentesting" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pentesting</span></a></p>
postmodern<p>I want to know what the purpose/value of the highly-specific wordlist generator template syntax that <a href="https://infinitelogins.com/2020/11/16/using-hashcat-rules-to-create-custom-wordlists/" rel="nofollow noopener" target="_blank">hashcat</a>/<a href="https://null-byte.wonderhowto.com/how-to/tutorial-create-wordlists-with-crunch-0165931/" rel="nofollow noopener" target="_blank">crunch</a> use? Like where is the value in specifying that character 2 is alphabetic, but character 3 is symbolic, and character 4 is numeric? How do you even get that highly-specific information about someone's password, yet don't know the full password? Shoulder surfing? Hidden camera? Trying to decode the keystrokes via the microphone? And why do wordlist builder utils always use a confusing and difficult to remember syntax for their wordlist template format (ex: "@ represents lowercase letters").<br><a href="https://infosec.exchange/tags/rant" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rant</span></a> <a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a> <a href="https://infosec.exchange/tags/hashcat" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>hashcat</span></a> <a href="https://infosec.exchange/tags/crunch" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>crunch</span></a></p>
nemo™ 🇺🇦<p><a href="https://mas.to/tags/Create" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Create</span></a> <a href="https://mas.to/tags/Custom" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Custom</span></a> <a href="https://mas.to/tags/Wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Wordlists</span></a> Using <a href="https://mas.to/tags/Crunch" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Crunch</span></a> in <a href="https://mas.to/tags/Kali" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Kali</span></a> <a href="https://mas.to/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> </p><p><a href="https://www.geeksforgeeks.org/create-custom-wordlists-using-crunch-in-kali-linux/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">geeksforgeeks.org/create-custo</span><span class="invisible">m-wordlists-using-crunch-in-kali-linux/</span></a></p>
postmodern<p>Just released wordlist 1.1.0, the Ruby library/CLI for reading, combining, mutating, and building wordlists. It slices, it dices, and it now supports reading and writing zip and 7zip compressed wordlists.<br><a href="https://github.com/postmodern/wordlist.rb#readme" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">github.com/postmodern/wordlist</span><span class="invisible">.rb#readme</span></a><br><a href="https://infosec.exchange/tags/ruby" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ruby</span></a> <a href="https://infosec.exchange/tags/infosec" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>infosec</span></a> <a href="https://infosec.exchange/tags/wordlist" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlist</span></a> <a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a></p>
postmodern<p>If a wordlist generator util has an option to allow digits in words, should it only allow ASCII digits or <em>all</em> <a href="https://www.compart.com/en/unicode/category/Nd" rel="nofollow noopener" target="_blank">unicode digits</a>?<br><a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a> <a href="https://infosec.exchange/tags/unicode" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>unicode</span></a></p>
postmodern<p>What would be a good sub-command name for downloading a wordlist into the <em>current working directory</em>?<br><a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a> <a href="https://infosec.exchange/tags/cli" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>cli</span></a> <a href="https://infosec.exchange/tags/namingthings" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>namingthings</span></a></p>
postmodern<p>What would be a good sub-command name for downloading a wordlist into a cache directory?<br><a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a> <a href="https://infosec.exchange/tags/cli" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>cli</span></a> <a href="https://infosec.exchange/tags/namingthings" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>namingthings</span></a></p>
postmodern<p>What's a good directory bruteforcing wordlist that balances wordlist size with not pissing off the admin?<br><a href="https://infosec.exchange/tags/recon" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>recon</span></a> <a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a></p>
postmodern<p>If you installed a library called "wordlists", would you expect it to come bundled with common wordlists (ex: subdomains-1000), or would it allow downloading those common wordlists upon user selection, maybe even auto-download them on first use?<br><a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a></p>
postmodern<p>Which wordlists do people use the most frequently or know by name?<br><a href="https://infosec.exchange/tags/infosec" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>infosec</span></a> <a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a> <a href="https://infosec.exchange/tags/recon" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>recon</span></a> <a href="https://infosec.exchange/tags/enumeration" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>enumeration</span></a> <a href="https://infosec.exchange/tags/bruteforcing" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>bruteforcing</span></a></p>
woFF<p>Evening fun with <a href="https://infosec.exchange/tags/chatgpt" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>chatgpt</span></a> to write a python script to create custom <a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a> based on google search results. Yeah... I'm relaxing by <a href="https://infosec.exchange/tags/hacking" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>hacking</span></a> in <a href="https://infosec.exchange/tags/bugbounty" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>bugbounty</span></a> programs just for fun: <a href="https://medium.com/@woff/coding-a-custom-wordlist-generator-with-chat-gpt-ca2c60c41a8d" rel="nofollow noopener" target="_blank"><span class="invisible">https://</span><span class="ellipsis">medium.com/@woff/coding-a-cust</span><span class="invisible">om-wordlist-generator-with-chat-gpt-ca2c60c41a8d</span></a></p>
Erik Berndt<p>You&#39;re gonna need a bigger boat.</p><p><a href="https://fosstodon.org/tags/wordlists" class="mention hashtag" rel="tag">#<span>wordlists</span></a> <a href="https://fosstodon.org/tags/crunch" class="mention hashtag" rel="tag">#<span>crunch</span></a></p>
n0kovo 🇩🇰​:anarchy:​:comm:​:terminal:​:vegan:​:debian:​:python:​:tor:​:signal:<p>I've made a collection of Danish base wordlists useful for cracking danish passwords or fuzzing Danish targets:</p><p><a href="https://github.com/n0kovo/danish-wordlists" rel="nofollow noopener" target="_blank"><span class="invisible">https://</span><span class="ellipsis">github.com/n0kovo/danish-wordl</span><span class="invisible">ists</span></a></p><p>Give it a ⭐️ on GitHub and boost the post if you found it useful ❤️</p><p><a href="https://infosec.exchange/tags/InfoSec" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>InfoSec</span></a> <a href="https://infosec.exchange/tags/cybersecurity" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>cybersecurity</span></a> <a href="https://infosec.exchange/tags/passwords" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>passwords</span></a> <a href="https://infosec.exchange/tags/hashcat" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>hashcat</span></a> <a href="https://infosec.exchange/tags/passwordsecurity" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>passwordsecurity</span></a> <a href="https://infosec.exchange/tags/passwordcracking" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>passwordcracking</span></a> <a href="https://infosec.exchange/tags/OSINT" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OSINT</span></a> <a href="https://infosec.exchange/tags/hacking" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>hacking</span></a> <a href="https://infosec.exchange/tags/pentesting" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pentesting</span></a> <a href="https://infosec.exchange/tags/appsec" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>appsec</span></a> <a href="https://infosec.exchange/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a> <a href="https://infosec.exchange/tags/fuzzing" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>fuzzing</span></a></p>
janPiteJanseke<p>Liberator Core Vocabulary Word Lists</p><p><a href="https://www.liberatorsupport.com/Pages/core_words.html" rel="nofollow noopener" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">liberatorsupport.com/Pages/cor</span><span class="invisible">e_words.html</span></a></p><p><a href="https://mastodon.host/tags/english" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>English</span></a> <a href="https://mastodon.host/tags/corewords" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CoreWords</span></a> <a href="https://mastodon.host/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a> <a href="https://mastodon.host/tags/nimi_pasila" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nimi_pasila</span></a> <a href="https://mastodon.host/tags/talika_nimi" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>talika_nimi</span></a> <a href="https://mastodon.host/tags/inli" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Inli</span></a></p>
janPiteJanseke<p>1000 word families (3760 words)</p><p><a href="http://www.robwaring.org/vocab/wordlists/full1000.txt" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="ellipsis">robwaring.org/vocab/wordlists/</span><span class="invisible">full1000.txt</span></a></p><p>2500 words</p><p>GSL</p><p>BAUMAN<br><a href="http://jbauman.com/gsl.html" rel="nofollow noopener" target="_blank"><span class="invisible">http://</span><span class="">jbauman.com/gsl.html</span><span class="invisible"></span></a></p><p>New-GSL</p><p>VACLAV BREZINA and DANA GABLASOVA<br><a href="http://corpora.lancs.ac.uk/vocab/docs/new_GSL_rank.pdf" rel="nofollow noopener" target="_blank"><span class="invisible">http://</span><span class="ellipsis">corpora.lancs.ac.uk/vocab/docs</span><span class="invisible">/new_GSL_rank.pdf</span></a></p><p>NGSL</p><p>CHARLIE BROWNE<br><a href="http://www.newgeneralservicelist.org/" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="">newgeneralservicelist.org/</span><span class="invisible"></span></a></p><p>Dale-Chall List of Simple Words (2942 words)</p><p><a href="https://www.usingenglish.com/resources/wordcheck/list-dale-chall+list+of+simple+words.html" rel="nofollow noopener" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">usingenglish.com/resources/wor</span><span class="invisible">dcheck/list-dale-chall+list+of+simple+words.html</span></a></p><p>3000 words</p><p>Vocabulary Workshop: 3000 Most Common Words in American English </p><p><a href="http://easy-english.com.ua/wp-content/uploads/2014/12/3000_most_common_words.pdf?32d2ec" rel="nofollow noopener" target="_blank"><span class="invisible">http://</span><span class="ellipsis">easy-english.com.ua/wp-content</span><span class="invisible">/uploads/2014/12/3000_most_common_words.pdf?32d2ec</span></a></p><p>3000 Most Common Words in American English</p><p><a href="http://www.pensaremingles.com/3000MostCommonWordsinAmericanEnglish.pdf" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="ellipsis">pensaremingles.com/3000MostCom</span><span class="invisible">monWordsinAmericanEnglish.pdf</span></a></p><p>3000 most common words in English</p><p><a href="http://www.ef.com/english-resources/english-vocabulary/top-3000-words/" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="ellipsis">ef.com/english-resources/engli</span><span class="invisible">sh-vocabulary/top-3000-words/</span></a></p><p>The first three thousand English words</p><p><a href="http://eclexam.eu/the-first-three-thousand-english-words/" rel="nofollow noopener" target="_blank"><span class="invisible">http://</span><span class="ellipsis">eclexam.eu/the-first-three-tho</span><span class="invisible">usand-english-words/</span></a></p><p>English 3000 common words</p><p><a href="http://www.paulnoll.com/Books/Clear-English/English-3000-common-words.html" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="ellipsis">paulnoll.com/Books/Clear-Engli</span><span class="invisible">sh/English-3000-common-words.html</span></a></p><p>Collins COBUILD English Dictionary Frequently Wordlist</p><p><a href="https://wenku.baidu.com/view/644688aedd3383c4bb4cd220.html" rel="nofollow noopener" target="_blank"><span class="invisible">https://</span><span class="ellipsis">wenku.baidu.com/view/644688aed</span><span class="invisible">d3383c4bb4cd220.html</span></a></p><p>Longman Communication 3000</p><p><a href="http://www.lextutor.ca/freq/lists_download/longman_3000_list.pdf" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="ellipsis">lextutor.ca/freq/lists_downloa</span><span class="invisible">d/longman_3000_list.pdf</span></a></p><p>4000 words</p><p>JACET 4000 WORD LIST</p><p><a href="http://www.j-varg.sakura.ne.jp/about/log/4000/4000.html" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="ellipsis">j-varg.sakura.ne.jp/about/log/</span><span class="invisible">4000/4000.html</span></a></p><p>WordZone for 4,000 simple word families</p><p><a href="http://www.textproject.org/assets/library/resources/WordZones_4000-simple-word-families.pdf" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="ellipsis">textproject.org/assets/library</span><span class="invisible">/resources/WordZones_4000-simple-word-families.pdf</span></a></p><p>top 5000 words/lemmas</p><p><a href="http://www.wordfrequency.info/free.asp?s=y" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="ellipsis">wordfrequency.info/free.asp?s=</span><span class="invisible">y</span></a></p><p>6,000 most frequently used English words</p><p><a href="http://www.naturalenglish.club/esl/" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="">naturalenglish.club/esl/</span><span class="invisible"></span></a></p><p>8000 words</p><p>JACET8000</p><p><a href="http://language.sakura.ne.jp/s/doc/voc/j8.xlsx" rel="nofollow noopener" target="_blank"><span class="invisible">http://</span><span class="ellipsis">language.sakura.ne.jp/s/doc/vo</span><span class="invisible">c/j8.xlsx</span></a></p><p>10000 words</p><p>10 000 English words</p><p><a href="http://www.mit.edu/~ecprice/wordlist.10000" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="ellipsis">mit.edu/~ecprice/wordlist.1000</span><span class="invisible">0</span></a></p><p>10 000 Most common English words (Proficiency)</p><p><a href="http://sherwoodschool.ru/vocabulary/proficiency/" rel="nofollow noopener" target="_blank"><span class="invisible">http://</span><span class="ellipsis">sherwoodschool.ru/vocabulary/p</span><span class="invisible">roficiency/</span></a></p><p>List of 10,000 Words from the Brown Corpus </p><p><a href="http://emustru.sourceforge.net/list_words_sfi.pdf" rel="nofollow noopener" target="_blank"><span class="invisible">http://</span><span class="ellipsis">emustru.sourceforge.net/list_w</span><span class="invisible">ords_sfi.pdf</span></a></p><p>Top 10000 English Words</p><p><a href="http://archive.is/Se5yZ" rel="nofollow noopener" target="_blank"><span class="invisible">http://</span><span class="">archive.is/Se5yZ</span><span class="invisible"></span></a></p><p>The most frequent and common 10000 words used in English and Example Sentences</p><p><a href="http://www.use-in-a-sentence.com/english-words/10000-words/the-most-frequent-10000-words-of-english.html" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="ellipsis">use-in-a-sentence.com/english-</span><span class="invisible">words/10000-words/the-most-frequent-10000-words-of-english.html</span></a></p><p>15 000 word(form)s</p><p><a href="http://www.audiencedialogue.net/bnc15knum.txt" rel="nofollow noopener" target="_blank"><span class="invisible">http://www.</span><span class="ellipsis">audiencedialogue.net/bnc15knum</span><span class="invisible">.txt</span></a></p><p>Most-Used Words Online (27 693 words) </p><p>blogoscoped.com/words/word-hits.zip</p><p>28000 word families</p><p><a href="https://enroots.neocities.org/" rel="nofollow noopener" target="_blank"><span class="invisible">https://</span><span class="">enroots.neocities.org/</span><span class="invisible"></span></a></p><p>50 000 English word via OpenSubtitles 2016</p><p><a href="https://github.com/hermitdave/FrequencyWords/blob/master/content/2016/en/en_50k.txt" rel="nofollow noopener" target="_blank"><span class="invisible">https://</span><span class="ellipsis">github.com/hermitdave/Frequenc</span><span class="invisible">yWords/blob/master/content/2016/en/en_50k.txt</span></a></p><p>Wiktionary 100 000 most frequent words</p><p><a href="https://gist.github.com/h3xx/1976236" rel="nofollow noopener" target="_blank"><span class="invisible">https://</span><span class="">gist.github.com/h3xx/1976236</span><span class="invisible"></span></a></p><p>Norvig Google Book Frequencies</p><p><a href="http://norvig.com/google-books-common-words.txt" rel="nofollow noopener" target="_blank"><span class="invisible">http://</span><span class="ellipsis">norvig.com/google-books-common</span><span class="invisible">-words.txt</span></a></p><p><a href="https://mastodon.host/tags/english" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>English</span></a> <a href="https://mastodon.host/tags/wordlists" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wordlists</span></a> <a href="https://mastodon.host/tags/nimi_pasila" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nimi_pasila</span></a> <a href="https://mastodon.host/tags/talika_nimi" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>talika_nimi</span></a> <a href="https://mastodon.host/tags/inli" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Inli</span></a></p>