Alat untuk mengekstrak konten (rakitan, konfigurasi, dll.) dari aplikasi file tunggal ke direktori, cocok untuk tujuan seperti analisis malware.
Untuk menggunakan alat ini, instal sebagai alat dotnet global:
dotnet tool install -g sfextract
sfextract [file] -o|--output [directory]
Ekstrak file
sfextract Application.exe -o path/to/output/
Daftar file
Menghilangkan direktori keluaran akan mencantumkan semua file dalam satu file yang dapat dieksekusi.
sfextract Application.exe
Instal paket SingleFileExtractor.Core
NuGet untuk menggunakannya secara terprogram:
var reader = new ExecutableReader("application.exe");
Jika Anda ingin mengetahui apa itu entry point assembly, Anda dapat membaca info startup
var reader = new ExecutableReader("application.exe");var startupInfo = reader.StartupInfo;
var reader = new ExecutableReader("application.exe");// Validasi jika executable adalah satu file yang dapat dieksekusi, dan dapat diekstraksivar isSingleFile = reader.IsSingleFile;if (isSingleFile){// Ekstrak entri file tertentu, tunggu reader.Manifest.Entries [0].ExtractToFileAsync("example.dll");// , atau buat aliran dalam memori dari file tertentu entryvar stream = menunggu pembaca.Manifest.Entries[0].AsStreamAsync()// Ekstrak semua file ke direktoritunggu pembaca.ExtractToDirectoryAsync("path/to/output");}
var reader = new ExecutableReader("application.exe");menunggu reader.Manifest.Entries[0].ExtractToFileAsync("example.dll");
var reader = new ExecutableReader("application.exe");var stream = menunggu pembaca.Manifest.Entries[0].AsStreamAsync()
Aplikasi lain yang sedang saya kerjakan mengharuskan saya mengekstrak konten satu file. Karena saya juga melihat orang menanyakan cara untuk melakukan ini, saya memutuskan untuk mengubahnya menjadi alat dotnet dan paket NuGet.
GitHub: dotnet/runtime untuk menciptakan aplikasi file tunggal.
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.