From ce77358773c71891f5e161ed201bc21a9a728215 Mon Sep 17 00:00:00 2001 From: JorySeverijnse Date: Thu, 18 Dec 2025 13:31:30 +0100 Subject: [PATCH] Update .gitignore for new project structure - Remove references to deleted stub directory - Add patterns for build artifacts, binaries, and malware files - Include common IDE and temporary file patterns --- .gitignore | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 69fc98a..e87ae7c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,26 @@ -crypt/target/* -stub/target/* +# Rust build artifacts +crypt/target/ +**/target/ + +# Compiled binaries +linux_injector +*.exe + +# Encrypted payload files +encrypted_payload.bin +decryption_metadata.bin + +# Malware files (should not be committed) +*.dll +*.so +libphotoshop.* + +# Temporary files +*.tmp +*~ + +# IDE files +.vscode/ +.idea/ +*.swp +*.swo \ No newline at end of file