Replies: 4 comments 2 replies
|
When you run without anything to follow it up, You might want to first run: which will show you a list of the files that can be extracted. Then, assuming you want to dump all of these files to disk, you can run the following command: which will write all the files that were previously listed to a subdirectory called Finally, if you only want the setup script, since that one is printable, you could type: to extract just the disassembly of that script that and print it to STDOUT. |
|
Great, thanks! I figured it was user error. Good stuff with binary refinery. |
|
One more followup question: I see that setup.nsis is the decompiled representation of the scirpt. Is there a way to have binref output the original bytecode representation of the script/s in addition to the decompilation? |
|
Sounds good. Thanks! |


When you run
without anything to follow it up,
xtnsiswill simply extract all the files in the archive and write them to STDOUT, separated by newlines. This is a good default for units that produce text, but with an archive extraction tool likextnsisyou likely want to proceed differently.You might want to first run:
which will show you a list of the files that can be extracted. Then, assuming you want to dump all of these files to disk, you can run the following command:
which will write all the files that were previously listed to a subdirectory called
extracted. If you do not want to dump all…