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
This commit is contained in:
parent
59a40a43f6
commit
ce77358773
28
.gitignore
vendored
28
.gitignore
vendored
@ -1,2 +1,26 @@
|
|||||||
crypt/target/*
|
# Rust build artifacts
|
||||||
stub/target/*
|
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
|
||||||
Loading…
Reference in New Issue
Block a user