SingleFileExtractor
1.0.0
単一ファイルのアプリケーションからコンテンツ (アセンブリ、構成など) をディレクトリに抽出するためのツール。マルウェア分析などの目的に適しています。
このツールを使用するには、グローバル ドットネット ツールとしてインストールします。
dotnet tool install -g sfextract
sfextract [file] -o|--output [directory]
ファイルを抽出する
sfextract Application.exe -o path/to/output/
ファイルのリストを表示する
出力ディレクトリを省略すると、単一の実行可能ファイル内のすべてのファイルがリストされます。
sfextract Application.exe
SingleFileExtractor.Core
NuGet パッケージをインストールして、プログラムで使用します。
var Reader = new ExecutableReader("application.exe");
エントリ ポイント アセンブリが何であるかを知りたい場合は、スタートアップ情報を参照してください。
var Reader = new ExecutableReader("application.exe");varstartupInfo = Reader.StartupInfo;
var Reader = new ExecutableReader("application.exe");// 実行可能ファイルが単一ファイルの実行可能ファイルであり、抽出可能であるかどうかを検証しますvar isSingleFile = Reader.IsSingleFile;if (isSingleFile){// 特定のファイルを抽出します エントリを待ちます Reader.Manifest.Entries [0].ExtractToFileAsync("example.dll");// 、または特定のファイルのエントリ変数ストリームのメモリ内ストリームを作成します= await Reader.Manifest.Entries[0].AsStreamAsync()// すべてのファイルをディレクトリに抽出しますyawait 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 = await Reader.Manifest.Entries[0].AsStreamAsync()
私が取り組んでいる別のアプリケーションでは、単一ファイルの内容を抽出する必要があります。これを行う方法を求める人もいたため、これをドットネット ツールと NuGet パッケージに変えることにしました。
GitHub: 単一ファイル アプリケーションを開発するための dotnet/runtime。
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.