Ein Tool zum Extrahieren von Inhalten (Assemblys, Konfiguration usw.) aus einer Einzeldateianwendung in ein Verzeichnis, geeignet für Zwecke wie die Malware-Analyse.
Um dieses Tool zu verwenden, installieren Sie es als globales Dotnet-Tool:
dotnet tool install -g sfextract
sfextract [file] -o|--output [directory]
Dateien extrahieren
sfextract Application.exe -o path/to/output/
Dateien auflisten
Wenn Sie das Ausgabeverzeichnis weglassen, werden alle Dateien in der einzelnen ausführbaren Datei aufgelistet.
sfextract Application.exe
Installieren Sie das SingleFileExtractor.Core
NuGet-Paket, um es programmgesteuert zu verwenden:
var reader = new ExecutableReader("application.exe");
Wenn Sie wissen möchten, was die Einstiegspunkt-Assembly ist, können Sie die Startinformationen lesen
var Reader = new ExecutableReader("application.exe");var StartupInfo = Reader.StartupInfo;
var reader = new ExecutableReader("application.exe");// Validieren Sie, ob die ausführbare Datei eine einzelne ausführbare Datei ist und extrahiert werden kann.var isSingleFile = reader.IsSingleFile;if (isSingleFile){// Spezifischen Dateieintrag extrahierenawait reader.Manifest.Entries [0].ExtractToFileAsync("example.dll");// , oder erstellen Sie einen In-Memory-Stream eines bestimmten Dateieintragsvar stream = waiting reader.Manifest.Entries[0].AsStreamAsync()// Alle Dateien in ein Verzeichnis extrahierenawait reader.ExtractToDirectoryAsync("path/to/output");}
var reader = new ExecutableReader("application.exe");await reader.Manifest.Entries[0].ExtractToFileAsync("example.dll");
var reader = new ExecutableReader("application.exe");var stream = waiting reader.Manifest.Entries[0].AsStreamAsync()
Bei einer anderen Anwendung, an der ich arbeite, muss ich den Inhalt einer einzelnen Datei extrahieren. Da ich auch Leute gesehen habe, die nach einer Möglichkeit gefragt haben, dies zu tun, habe ich beschlossen, daraus ein Dotnet-Tool und ein NuGet-Paket zu machen.
GitHub: Dotnet/Runtime zum Erfinden von Einzeldateianwendungen.
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.