- Notifications
You must be signed in to change notification settings - Fork1
badele/ipv6-hexaspeak
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Here is a small tool that allows you to find words that can be inserted into anIPv6 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:: |
| Language | ~ #words |
|---|---|
| English | 9300 |
| French | 4200 |
| Spanish | 65 |
nix shell nixpkgs#wordlistsWORDLISTSPATH=$(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.txtpython generate-ipv6-hexspeak.py wordlist.txt> english.mdawk'{ print length, $0 }'"${WORDLISTSPATH}/${FRENCH}"| sort -n -k1,1 -k2| cut -d'' -f2-> wordlist.txtpython generate-ipv6-hexspeak.py wordlist.txt> french.mdawk'{ print length, $0 }'"${WORDLISTSPATH}/${SPANISH}"| sort -n -k1,1 -k2| cut -d'' -f2-> wordlist.txtpython generate-ipv6-hexspeak.py wordlist.txt> spanish.md
About
generates IPv6 subnets with hexspeak patterns for easier memorization.
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published