Skip to content

generates IPv6 subnets with hexspeak patterns for easier memorization.

Notifications You must be signed in to change notification settings

badele/ipv6-hexaspeak

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IPv6 hexspeak

Here is a small tool that allows you to find words that can be inserted into an IPv6 address.

Here are some examples

% word hexspeak IPv6 example
dead DEAD FD00:DEAD::
🟦 cables CAB1E5 FD00:CAB1:E5::
🟦 iot 107 FD00:107::
🟦 acid AC1D FD00:AC1D::
🟦 casa CA5A FD00:CA5A::
🟨 office 0FF1CE FD00:0FF1:CE::
🟨 doc D0C FD00:D0C::
🟨 access ACCE55 FD00:ACCE:55::
🟧 bloc B10C FD00:B10C::

Languages hexspeak

Language ~ #words
English 9300
French 4200
Spanish 65

Generate

On Nixos

nix shell nixpkgs#wordlists
WORDLISTSPATH=$(wordlists_path)
ENGLISH="seclists/Miscellaneous/lang-english.txt"
SPANISH="seclists/Miscellaneous/lang-spanish.txt"
FRENCH="seclists/Miscellaneous/lang-french-full.txt"


awk '{ print length, $0 }' "${WORDLISTSPATH}/${ENGLISH}" | sort -n -k1,1 -k2 | cut -d ' ' -f2- > wordlist.txt
python generate-ipv6-hexspeak.py wordlist.txt > english.md

awk '{ print length, $0 }' "${WORDLISTSPATH}/${FRENCH}" | sort -n -k1,1 -k2 | cut -d ' ' -f2- > wordlist.txt
python generate-ipv6-hexspeak.py wordlist.txt > french.md

awk '{ print length, $0 }' "${WORDLISTSPATH}/${SPANISH}" | sort -n -k1,1 -k2 | cut -d ' ' -f2- > wordlist.txt
python generate-ipv6-hexspeak.py wordlist.txt > spanish.md

About

generates IPv6 subnets with hexspeak patterns for easier memorization.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages