Uma ferramenta para extrair conteúdo (assemblies, configuração, etc.) de um aplicativo de arquivo único para um diretório, adequado para fins como análise de malware.
Para usar esta ferramenta, instale-a como uma ferramenta dotnet global:
dotnet tool install -g sfextract
sfextract [file] -o|--output [directory]
Extrair arquivos
sfextract Application.exe -o path/to/output/
Listar arquivos
A omissão do diretório de saída listará todos os arquivos no único arquivo executável.
sfextract Application.exe
Instale o pacote SingleFileExtractor.Core
NuGet para usá-lo programaticamente:
var leitor = new ExecutableReader("application.exe");
Quando você quiser saber o que é a montagem do ponto de entrada, você pode ler as informações de inicialização
var leitor = new ExecutableReader("application.exe");var startupInfo = leitor.StartupInfo;
var reader = new ExecutableReader("application.exe");// Valida se o executável é um único arquivo executável e pode ser extraídovar isSingleFile = reader.IsSingleFile;if (isSingleFile){// Extrai entrada de arquivo específicaawait reader.Manifest.Entries [0].ExtractToFileAsync("example.dll");// ou crie um fluxo na memória de um fluxo de entrada de arquivo específico = await reader.Manifest.Entries[0].AsStreamAsync()// Extrai todos os arquivos para um diretórioawait reader.ExtractToDirectoryAsync("caminho/para/saída");}
var leitor = new ExecutableReader("application.exe");await reader.Manifest.Entries[0].ExtractToFileAsync("example.dll");
var leitor = new ExecutableReader("application.exe");var stream = aguardar leitor.Manifest.Entries[0].AsStreamAsync()
Outro aplicativo em que estou trabalhando exige que eu extraia o conteúdo de um único arquivo. Como também vi pessoas pedindo uma maneira de fazer isso, decidi transformá-lo em uma ferramenta dotnet e em um pacote NuGet.
GitHub: dotnet/runtime para inventar aplicativos de arquivo único.
MIT License Copyright (c) 2021 Joery Droppers (https://github.com/Droppers) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.