Here is how to replace a HEX sequence in your binary file:
$ sed 's/x0Dx4Dx53x48/x0Dx0Ax4Dx53x48/g' file > temp; rm file; mv temp file
Here is how to replace a HEX sequence in your binary file:
$ sed 's/x0Dx4Dx53x48/x0Dx0Ax4Dx53x48/g' file > temp; rm file; mv temp file