-
-
Notifications
You must be signed in to change notification settings - Fork 58
Open
Labels
Milestone
Description
Add a --bytes BYTE,... option to the Ronin::CLI::StringProcessorCommand to make it easier to pass in a string represented as a comma-separated list of bytes. It should be able to parse decimal, hexadecimal, octal, or binary byte values; this can be accomplished using Integer().
Example Usage
ronin decode --bytes 65,66,67,...
ronin decode --bytes 0x41,0x42,0x43,...
ronin decode --bytes 0101,0102,0103,...
ronin decode --bytes 0o101,0o102,0o103,...
ronin decode --bytes 0b1000001,0b1000010,0b1000011,...
Reactions are currently unavailable