Author Topic: [Upload] Collection of Wordlists  (Read 4831 times)

0 Members and 1 Guest are viewing this topic.

Offline 0poitr

  • Peasant
  • *
  • Posts: 149
  • Cookies: 64
    • View Profile
[Upload] Collection of Wordlists
« on: February 12, 2013, 02:49:07 pm »
I collected a lot of word lists from separate places on the web, mostly public ftp servers.
So, here are a bunch of them, all text files, zipped in one.

http://upload.evilzone.org/download.php?id=2515363&type=zip

I also wrote a small shell script that 'd crunch all of 'em into one. Place it outside the directory where you extracted the wordlists and run it with the directory name.

Code: (bash) [Select]
#!/bin/bash

trap "echo && exit 1" SIGINT SIGKILL

[ -z "$1" ] && echo "Pass the dirname for the text files!" && exit 1

cd "$1"
for i in *; do
  cat "$i"|grep -v '\(^#\|^$\)' >> huge.lst #omit comment and blank lines
done

uniq <(sort huge.lst)|sort > final.lst
rm huge.lst

echo "Saved to $1/final.lst."

exit 0

Enjoy! 8)
Imagination is the first step towards Creation.

Offline rasenove

  • Baron
  • ****
  • Posts: 950
  • Cookies: 53
  • ಠ_ಠ
    • View Profile
Re: [Upload] Collection of Wordlists
« Reply #1 on: February 12, 2013, 03:43:58 pm »
Thanks alot +1
My secrets have secrets...

Offline sryker1911

  • /dev/null
  • *
  • Posts: 7
  • Cookies: 0
    • View Profile
Re: [Upload] Collection of Wordlists
« Reply #2 on: February 27, 2013, 01:44:54 am »
Thats a nice little script.  Thanks