Un outil pour extraire du contenu (assemblys, configuration, etc.) d'une application à fichier unique vers un répertoire, adapté à des fins telles que l'analyse de logiciels malveillants.
Pour utiliser cet outil, installez-le en tant qu'outil dotnet global :
dotnet tool install -g sfextract
sfextract [file] -o|--output [directory]
Extraire des fichiers
sfextract Application.exe -o path/to/output/
Liste des fichiers
L'omission du répertoire de sortie répertoriera tous les fichiers dans le fichier exécutable unique.
sfextract Application.exe
Installez le package NuGet SingleFileExtractor.Core
pour l'utiliser par programme :
var reader = new ExecutableReader("application.exe");
Lorsque vous souhaitez savoir ce qu'est l'assemblage du point d'entrée, vous pouvez lire les informations de démarrage
var reader = new ExecutableReader("application.exe");var startupInfo = reader.StartupInfo;
var reader = new ExecutableReader("application.exe");// Valider si l'exécutable est un fichier exécutable unique et peut être extraitvar isSingleFile = reader.IsSingleFile;if (isSingleFile){// Extraire une entrée de fichier spécifiqueattendre reader.Manifest.Entries [0].ExtractToFileAsync("example.dll");// , ou créez un flux en mémoire d'un fichier spécifique inputvar stream = wait reader.Manifest.Entries[0].AsStreamAsync()// Extraire tous les fichiers dans un répertoireawait reader.ExtractToDirectoryAsync("path/to/output");}
var reader = new ExecutableReader("application.exe");attendre reader.Manifest.Entries[0].ExtractToFileAsync("example.dll");
var reader = new ExecutableReader("application.exe");var stream = wait reader.Manifest.Entries[0].AsStreamAsync()
Une autre application sur laquelle je travaille m'oblige à extraire le contenu d'un seul fichier. Comme j'ai également vu des gens demander un moyen de le faire, j'ai décidé d'en faire un outil dotnet et un package NuGet.
GitHub : dotnet/runtime pour inventer des applications à fichier unique.
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.