- Remove references to deleted stub directory - Add patterns for build artifacts, binaries, and malware files - Include common IDE and temporary file patterns
26 lines
300 B
Plaintext
26 lines
300 B
Plaintext
# 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 |