Golang : Embed secret text string into binary(executable) file
Problem:
You want to hide certain plain text string that you plan to embed(include) in your executable or binary file. There are few reasons to do this, such as you don't want to the plain text information to be viewed from a hex editor, cat
or more
command. How to hide a plain text string that you plan to embed?
Solution:
Use the encoding/hex
package EncodeToString()
function to convert plain text string into hexadecimal value and use it in your code as constant. The code below will demonstrate how to read a plain text string from a file and convert it with EncodeToString()
function before converting it back to plain text with DecodeString()
function.
The code is only an example, in your production code, you need to embed the hexadecimal value as constant.
package main
import (
"encoding/hex"
"fmt"
"io/ioutil"
"os"
)
func ConvertFileToHexString(filepath string) (string, error) {
byteString, err := ioutil.ReadFile(filepath)
if err != nil {
return "", err
}
return hex.EncodeToString(byteString), nil
}
func main() {
if len(os.Args) != 2 {
fmt.Printf("Usage : %s <filename>\n", os.Args[0])
os.Exit(0)
}
filename := os.Args[1]
hexDataString, err := ConvertFileToHexString(filename)
// will display
// 746869732069732061207365637265742066696c652077697468207365637265742064617461210a
// for this example string "this is a secret file with secret data!"
//fmt.Println(hexDataString)
if err != nil {
panic(err)
}
bytesDataString, err := hex.DecodeString(hexDataString)
if err != nil {
panic(err)
}
fmt.Println("This is generated from reading : ", filename)
fmt.Print(string(bytesDataString))
// ok, we translated the data from file, but that's not what we want to achieve.
// we want to embed the data inside this executable.
// we will assign a constant with a slightly different message to indicate that it is NOT from file
const secretMessageInsideExecutable = "746869732069732061207365637265742066696c652077697468207365637265742064617461210a"
bytesDataString2, _ := hex.DecodeString(secretMessageInsideExecutable)
fmt.Println("------------------------------------")
fmt.Println("This is generated from embedded hexadecimal string found inside this executable")
fmt.Println(string(bytesDataString2))
}
Sample output:
secret.txt
file content:
this is a secret text message from a file!
$ ./embedtext secret.txt
This is generated from reading : secret.txt
this is a secret text message from a file!
------------------------------------
This is generated from embedded hexadecimal string found inside this executable
this is a secret file with secret data!
References:
http://stackoverflow.com/questions/17796043/embedding-text-file-into-compiled-executable
See also : Golang : Embedded or data bundling example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+21.5k Golang : How to reverse slice or array elements order
+7.3k Golang : Set horizontal, vertical scroll bars policies and disable interaction on Qt image
+4.6k Javascript : How to get width and height of a div?
+7.8k Golang : Get all countries phone codes
+12.9k CodeIgniter : "Fatal error: Cannot use object of type stdClass as array" message
+5.3k Python : Print unicode escape characters and string
+8.3k Python : Fix SyntaxError: Non-ASCII character in file, but no encoding declared
+19.3k Golang : Example for DSA(Digital Signature Algorithm) package functions
+18.3k Golang : Iterating Elements Over A List
+9.5k Golang : Load ASN1 encoded DSA public key PEM file example
+15k nginx: [emerg] unknown directive "ssl"