That bash script is utterly terrible... a ton of redundant nonsense, unused commandline options, and completely unnecessary use of files with dd. I would recommend using read, or simply cat, for much cleaner input. Use variables instead of files to store the key. Using a file also poses a security risk. base64 takes either stdin or a file; here you've specified both, so the stdin-as-file is ignored.
thank you so much for the awsome tutorial and ofcourse the bash script... i am kinda new to all this, my question is how do i decode back the encrypted message..say, maybe u sent me an encrypted message how do i access the content ? do you have some sort of bash script to decode the message..?
That bash script is utterly terrible... a ton of redundant nonsense, unused commandline options, and completely unnecessary use of files with dd. I would recommend using read, or simply cat, for much cleaner input. Use variables instead of files to store the key. Using a file also poses a security risk. base64 takes either stdin or a file; here you've specified both, so the stdin-as-file is ignored.
rainbacknet 3 months ago
thank you so much for the awsome tutorial and ofcourse the bash script... i am kinda new to all this, my question is how do i decode back the encrypted message..say, maybe u sent me an encrypted message how do i access the content ? do you have some sort of bash script to decode the message..?
brayo85 1 year ago