This Python script, base64loopdecoenc.py, allows you to repeatedly decode or encode a Base64-encoded file.
python3 base64loopdecoenc.py -f <file name> -t <number of times up to 50> -E <For Encoding> |-D <For Decoding>
-f <file name>
: Specify the input file name.-t <number of times up to 50>
: Set the number of repetitions (limited to 50).-E
: Encode the file.-D
: Decode the file.
To encode a file named input.txt
20 times:
python3 base64loopdecoenc.py -f input.txt -t 20 -E
- Python 3.x
- The script limits the number of repetitions to 50.
- For decoding, the script checks if the content is Base64 encoded before proceeding.
https://youtu.be/ZddiiIjXn_4?si=tH4VXq06nMu5lIFq
Albert Corzo
This project is licensed under the MIT License.