Closed postmodern closed 3 days ago
Add a command which accepts "de-fanged" URLs or IPs and un-de-fangs them.
hxxps://www[.]evil[.]com/foo/bar/baz
https://www.evil.com/foo/bar/baz
192[.]168[.]1[.]1
192.168.1.1
This command should inherit from ValueProcessorCommand so that it can accept URLs and IPs as command-line arguments or via the --file option.
ValueProcessorCommand
--file
Accidentally duplicated this issue as #233 and implemented it. Closing.
Add a command which accepts "de-fanged" URLs or IPs and un-de-fangs them.
hxxps://www[.]evil[.]com/foo/bar/baz
->https://www.evil.com/foo/bar/baz
192[.]168[.]1[.]1
->192.168.1.1
This command should inherit from
ValueProcessorCommand
so that it can accept URLs and IPs as command-line arguments or via the--file
option.