1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
# dfang Defang IOCs (ips, emails, urls, etc) ## Install ``` cargo install dfang cargo install rfang ``` ## Usage ``` dfang something@somewhere.com rfang something[@]somewhere[.]com ``` ...or pipe in from another application ``` // Extract defanged URLs from a file grep hxxp iocs.txt | rfang // Take your clipboard, defang it, and copy it again pbpaste | dfang | pbcopy ```