Linux base64 encode file

How to base64 encode and decode from command-line

In this tutorial, you will learn how to base64 encode and decode from the command-line on Linux. You will also learn what base64 encoding is and why it should never be used to protect data from unauthorized access.

Base64 encoding and decoding data has many use cases. One being is ensuring data integrity when transferring data over the network, while another is storing Secrets in Kubernetes.

After reading this tutorial you will understand how to easily encode files or strings, and then decode them back.

How to base64 encode on Ubuntu, Debian, OSX, and Red Hat

If you are running popular linux distributions, such as Ubuntu, Debian, CentOS, or Red Hat, the base64 command-line tool is typically pre-installed. You should not have to perform any additional steps.

OSX also comes bundled with its own version of base64.

Why Base64 Encode Data

Transferring an ASCII file over the network can cause corruption if not decoded correctly. The reason is ASCII files are string converted to bytes, and when those bytes are decoded incorrectly back to ASCII your data becomes corrupt.

Base64 was introduced as a way to convert your ASCII data into arbitrary bytes, where they could then be transferred as bytes, and decoded correctly back to ASCII.

In short, base64 encoding ensures the integrity of our data when transferred over the network.

Base64 is not Encryption

Encoding files is not encryption and should never be used to secure sensitive data on disk. Rather it is a useful way of transferring or storing large data in the form of a string.

While it may obfuscate that actual data from should surfers, anyone who has access to base64 encoded data can easily decode it.

Base64 Encoding a String

To base64 encode string you can pipe an echo command into the base64 command-line tool. To ensure no extra, hidden characters are added use the -n flag.

Without the -n flag you may capture a hidden characters, like line returns or spaces, which will corrupt your base64 encoding.

Which will output the following

Base64 Encoding a File

This will output a very long, base64 encoded string. You may want to write the stdout to file instead.

bas64 /path/to/file > output.txt

Decoding Strings

To decode with base64 you need to use the —decode flag. With encoded string, you can pipe an echo command into base64 as you did to encode it.

Читайте также:  Изменить имя группы linux

Using the example encoding shown above, let’s decode it back into its original form.

echo -n 'bXktc3RyaW5n' | base64 --decode

Provided your encoding was not corrupted the output should be your original string.

Decoding Files

To decode a file with contents that are base64 encoded, you simply provide the path of the file with the —decode flag.

As with encoding files, the output will be a very long string of the original file. You may want to output stdout directly to a file.

base64 --decode /path/to/file > output.txt

Conclusion

In this tutorial, you learned how to base64 encode files and strings. This something commonly done to transfer files in such a way that it remains

Источник

Bash base64 encode and decode

To encode or decode standard input/output or any file content, Linux uses base64 encoding and decoding system. Data are encoded and decoded to make the data transmission and storing process easier. Encoding and decoding are not similar to encryption and decryption. Encoded data can be easily revealed by decoding. So, this command line utility tool can’t be used for data security. Alphabet, number and ‘=’ symbol are used to encode any data.

Syntax:

base64 [OPTION] [INFILE] [OUTFILE]

You can use different types of options with base64 command. Data can be taken from any file or standard input while encoding or decoding. After encode or decode, you can send the output in a file or print the output in the terminal.

Options:

-e or –encode

This option is used to encode any data from standard input or from any file. It is the default option.

-d or –decode
This option is used to decode any encoded data from standard input or from any file.

-n or –noerrcheck
By default, base64 checks error while decoding any data. You can use –n or –noerrcheck option to ignore checking at the time of decoding.

-u or –help
This option is used to get information about the usage of this command.

-i, –ignore-garbage
This option is used to ignore non-alphabet character while decoding.

–copyright
It is used to get copyright information.

–version
It is used to get the version information.

How you use the base64 command in Linux is shown in this tutorial by using some examples.

Example#1: Encoding text data

You can encode any text data by using base64 in the command line. When you want to encode any data using base64 then using -e or –encode option is optional. So, if you don’t mention any option with base64 then it will work for encoding. The following command will encode the data, ‘linuxhint.com’ and print the encoded data as output.

Example#2: Decoding text data

The following command will decode the encoded text, ‘bGludXhoaW50LmNvbQ==‘ and print the original text as output.

Example#3: Encoding text file

Create a text file named, ‘sample.txt’ with the following text that will be encoded by using base64.

You can print the encoded text in the command line or store the encoded text into another file. The following command will encode the content of the sample.txt file and print the encoded text in the terminal.

Читайте также:  Операционная система linux особенности преимущества

The following commands will encode the content of the sample.txt file and save the encoded text into the encodedData.txt file.

Example#4: Decoding text file

The following command will decode the content of the encodedData.txt file and print the output in the terminal

The following commands will decode the content of the encodedData.txt file and store the decoded content into the file, originalData.txt.

Example#5: Encoding any user-defined text

Create a bash file named encode_user_data.sh with the following code. The following script will take any text data as input, encode the text by using base64 and print the encoded text as output.

#!/bin/bash
echo «Enter Some text to encode»
read text
etext = ` echo -n $text | base64 `
echo «Encoded text is : $etext «

Validate the text is encoded correctly by piping the encoded text returned from your execution of the script to base64 –decode to confirm the original text is returned. Below you can see how to validate assuming My secret textwas the string encoded.

Example#6: Checking user validity by decoding text

Create a bash file named checkValidity.sh and add the following code. In this example, a secret text is taken from the user. A predefined encoded text is decoded by base64 and compared with the user input. If both values are equal then the output will be ‘You are authenticated’ otherwise the output will be ‘You are not authenticated’. Using this simple decoding code, normal validation can be done very easily. In this example the secret text that will result in success is 777799. This would likely not be hard coded in the script but more dynamic in a real world application.

#!/bin/bash
echo «Type your secret code»
read secret
otext = ` echo ‘Nzc3Nzk5Cg==’ | base64 —decode `
if [ $secret == $otext ] ; then
echo «You are authenticated»
else
echo «You are not authenticated»
fi

Conclusion:

For any sensitive data like password or any confidential data, encoding and decoding system is not suitable at all. You must use encryption and decryption system for securing these type of data.

References:

About the author

Fahmida Yesmin

I am a trainer of web programming courses. I like to write article or tutorial on various IT topics. I have a YouTube channel where many types of tutorials based on Ubuntu, Windows, Word, Excel, WordPress, Magento, Laravel etc. are published: Tutorials4u Help.

Источник

How to Perform base64 Encoding and Decoding Using Linux Command Line

How to Perform base64 Encoding and Decoding Using Linux Command Line 1

In this article, I will take you through different examples to perform base64 Encoding and Decoding Using Linux Command Line but before that let me ask you a quick question — Do you know where exactly base64 encoding and decoding is required ? Well, the first and foremost thing you need to understand is that encoding and decoding is not the same as encryption and decryption. Base64 encoding are mostly used to encode data into ASCII format so that it can be stored or transferred very easily. At the receiving end, it can then be decoded back to the original data. We will see some real world examples to perform base64 Encoding and decoding in below section. More about base64 utility.

Читайте также:  Linux test if file is open

Syntax

base64 [OPTION]. [FILE]

How to Perform base64 Encoding and Decoding Using Linux Command Line

How to Perform base64 Encoding and Decoding Using Linux Command Line

Example 1: How to do base64 Encoding of Data

If you have some sample data to encode then you can pass it to base64 utility using echo «cyberithub.com» | base64 command and get the encoded output as shown below.

root@localhost:~# echo "cyberithub.com" | base64 Y3liZXJpdGh1Yi5jb20K

Example 2: How to do base64 Encoding of a File Data

If you have a text file with some data like below then you can pass this file as an argument to base64 utility to encode the contents.

root@localhost:~# nano example.txt Hi, This is from CyberITHub

You just need to use base64 example.txt command to encode the contents of example.txt file as shown below.

root@localhost:~# base64 example.txt SGksIFRoaXMgaXMgZnJvbSBDeWJlcklUSHViCg==

Example 3: How to do base64 Decoding of Data

If you have sent the data or stored it somewhere in encoded format and now you want to decode it back to the original data then you need to pass that encoded data to base64 utility with —decode option enabled as shown below. You will be able to see the original data on the output.

root@localhost:~# echo Y3liZXJpdGh1Yi5jb20K | base64 --decode cyberithub.com

Example 4: How to do base64 Decoding of a File Data

Similarly, if you have sent any file or stored it somewhere in encoded format and now you are looking to decode it back to the original data then you need to pass the encoded data to base64 utility as shown below.

root@localhost:~# echo "SGksIFRoaXMgaXMgZnJvbSBDeWJlcklUSHViCg= ez-toc-section" >Example 5: How to check base64 version  

If you want to check the current installed version of base64 utility then you need to use base64 --version command. As you can see from the below output, current version is 8.30.

root@localhost:~# base64 --version base64 (GNU coreutils) 8.30 Copyright (C) 2018 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later . This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Simon Josefsson.

Example 6: How to Ignore Non-Alphabet Characters

If you want to ignore Non-Alphabet Characters during decoding then you need to use -i option with base64 utility as shown below.

root@localhost:~# echo "SGksIFRoaXMgaXMgZnJvbSBDeWJlcklUSHViCg= color: #00ff00;">base64 --help Usage: base64 [OPTION]. [FILE] Base64 encode or decode FILE, or standard input, to standard output. With no FILE, or when FILE is -, read standard input. Mandatory arguments to long options are mandatory for short options too. -d, --decode decode data -i, --ignore-garbage when decoding, ignore non-alphabet characters -w, --wrap=COLS wrap encoded lines after COLS character (default 76). Use 0 to disable line wrapping --help display this help and exit --version output version information and exit The data are encoded as described for the base64 alphabet in RFC 4648. When decoding, the input may contain newlines in addition to the bytes of the formal base64 alphabet. Use --ignore-garbage to attempt to recover from any other non-alphabet bytes in the encoded stream. GNU coreutils online help: Full documentation at: or available locally via: info '(coreutils) base64 invocation'

Источник

Оцените статью
Adblock
detector