LInux中使用split 以 500 K 大小分割 mimikatz.exe 文件,文件分为几个500k大小的小文件。
split -b 500k mimikatz.exe test
合并分割文件为 mimikatz.exe
cat testa* > test.exe # 适用于 Linux、Mac copy /b testa* test.exe # 适用于 Windows
2023-12-02 13:13:16
LInux中使用split 以 500 K 大小分割 mimikatz.exe 文件,文件分为几个500k大小的小文件。
split -b 500k mimikatz.exe test
合并分割文件为 mimikatz.exe
cat testa* > test.exe # 适用于 Linux、Mac copy /b testa* test.exe # 适用于 Windows