bin2src

bin2src is a simple command line that converts a binary file to an array of bytes, defined at a source of another language, so you can embed it into your program.

Currently supported output languages:

Overview

bin2src reads a binary file (.jpg, .wav, .mp3, etc.) and generate a source file with the binary data embeded into it as a byte array.

Sometimes, maybe you don't want to distribute a binary file inside your program's package and users can access it directly.

With bin2src you can embed it inside the executable and read the bytes direct from memory.

Keep in mind that it's always possible for an "advanced" user extract the file, even inside the executable.

Give a Star! :star:

If you like this project and find it useful, please give it a star. I appreciate very much! Thanks!

Usage

bin2src < -l LANG | --out-lang LANG > [ OPTIONS ] < FILE >

LANG and FILE are required.

Options:

        -l, --out-language LANG         specify the language, where LANG={c|cshell|pascal|python|rust}

        -d, --out-dir PATH              specify where to output source(s) file(s);
                                        if not specified, generate in current directory

        -f, --out-file OUTFILE          specify the output file(s) name (* without extension *);
                                        if not specified, output file(s) will have the same name
                                        of input file (without extra dots).

        -h, --hex                       output bytes in hexadecimal (for C shellcode this flag has
                                        diferent behaviors. See the Github site for more information)

Currently supported languages:

  - C
  - C for shellcode
  - Pascal
  - Python
  - Rust    

Examples

Suppose you have an image myimage.jpg:

Example 1:

bin2src --out-language pascal --out-dir "X:\My Projects\project01" --out-file image01 myimage.jpg

Windows paths with spaces needs quotation marks

will create the file ...\image01.pas with bytes in decimal format: [210, 0, ...].

Example 2:

bin2src -l c -d "X:\My Projects\project02" -f image01 -h myimage.jpg

will create the files (with bytes in hexadecimal: [0x10, 0xfa, ...]):


Example 3:

bin2src --out-language python myimage.jpg

will create the file "myimage.py" at the current directory.

Check the examples directory for some practical uses of bin2src.

Atention

License

Developed by Alexandre Gomiero de Oliveira under the GPL-3.0 License.

Any code generated by bin2src are under MIT License.

Please contact me if you need a different license.

If you'll use the tool to develop commercial products, please, consider make a donation to help me with future projects. :smiley: :thumbsup: :pray: