Results 1 to 1 of 1

Thread: wordlist for WPA and cleanup commands 4u

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    2013-Dec
    Location
    UK
    Posts
    14

    Post wordlist for WPA and cleanup commands 4u

    wordlist http://tpb.unblocked.co/torrent/5945...2813_GB%29.rar (my email is included for any help)
    my Youtube page https://www.youtube.com/user/cyberjackcyberjack/

    ================================================== =====

    Here are some useful commands to clean-up your wordlists (for WPA / Wi-Fi)
    ================================================== ======

    1. To remove all none compatible WPA word-lengths
    (8-63)

    cat yourwordlistfile | pw-inspector -m 8 -M 30 > yournewfile

    This will cut out all words that are NOT 8 - 30 letters in length and put them in "yournewfile". I know the max WPA length is 63 but 30 is more realistic for a potential password
    ================================================== ========

    2. To join multi wordlist files

    cat file1 file2 file3 .. etc > newfile

    This would join file1 file2 file2 and put it in newfile
    ================================================== ========

    3. To remove all duplicate words

    cat wordlistfile | uniq > newfile

    ================================================== =========

    4. to remove all html rubbish, white space and none alphanumeric entries i.e. !"!£"$%$$%^&*&(*)()_+><? (I would run this first)


    cat wordlistfile | sed 's/[^a-zA-Z0-9]//g' > newfile
    ================================================== =========

    5. To convert all to lowercase

    tr '[:upper:]' '[:lower:]' < inputfile > outputfile
    Last edited by cyberjack; 2020-06-02 at 11:37.

Similar Threads

  1. wordlist for WPA and cleanup commands 4u
    By cyberjack in forum General Archive
    Replies: 0
    Last Post: 2015-07-18, 09:00
  2. Cleanup Kali Linux Live Persistant USB
    By hunter86_bg in forum General Archive
    Replies: 1
    Last Post: 2014-04-15, 03:38

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •