Una herramienta para extraer contenidos (ensamblados, configuración, etc.) de una aplicación de un solo archivo a un directorio, adecuada para fines como el análisis de malware.
Para utilizar esta herramienta, instálela como una herramienta dotnet global:
dotnet tool install -g sfextract
sfextract [file] -o|--output [directory]
Extraer archivos
sfextract Application.exe -o path/to/output/
Listar archivos
Omitir el directorio de salida enumerará todos los archivos en el archivo ejecutable único.
sfextract Application.exe
Instale el paquete SingleFileExtractor.Core
NuGet para usarlo mediante programación:
var lector = new ExecutableReader("application.exe");
Cuando quieras saber cuál es el conjunto del punto de entrada, puedes leer la información de inicio.
var lector = new ExecutableReader("application.exe");var startupInfo = lector.StartupInfo;
var lector = new ExecutableReader("application.exe");// Validar si el ejecutable es un archivo ejecutable único y se puede extraervar isSingleFile = lector.IsSingleFile;if (isSingleFile){// Extraer entrada de archivo específicaawait lector.Manifest.Entries [0].ExtractToFileAsync("example.dll");//, o cree una secuencia en memoria de un archivo específico Entryvar Stream = await Reader.Manifest.Entries[0].AsStreamAsync()// Extrae todos los archivos a un directorioawait Reader.ExtractToDirectoryAsync("path/to/output");}
var lector = new ExecutableReader("application.exe");await Reader.Manifest.Entries[0].ExtractToFileAsync("example.dll");
var lector = new ExecutableReader("application.exe");var stream = espera lector.Manifest.Entries[0].AsStreamAsync()
Otra aplicación en la que estoy trabajando requiere que extraiga el contenido de un solo archivo. Como también he visto gente preguntando por una forma de hacer esto, decidí convertirlo en una herramienta dotnet y un paquete NuGet.
GitHub: dotnet/runtime para inventar aplicaciones de un solo archivo.
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.