A python-cli tool to encode text/payloads into base64, url, hex ,octal and alternating text
1.python3 kitty.py encrypt [encoding type] "text to encode"
it currently supports hex,octal,url , base 64, and alternating, it also has an 'all' flag
2.multiple lines with Xargs:
cat test.txt | xargs -I {} python3 kitty.py encrypt all "{}"
with Xargs: