-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
392 lines (336 loc) · 8.31 KB
/
Copy path.gitignore
File metadata and controls
392 lines (336 loc) · 8.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
# =============================================================================
# SPECTRE .gitignore
# Unified offensive security platform
# =============================================================================
# =============================================================================
# Rust
# =============================================================================
# Build artifacts
/target/
**/target/
# Exception: spectre-core source module named 'target'
!crates/spectre-core/src/target/
!crates/spectre-core/src/target/**
# Cargo lock for libraries (keep for applications)
# Cargo.lock - UNCOMMENT if this is a library-only workspace
# Backup files
*.rs.bk
*.rs.orig
# Debug builds
*.pdb
# =============================================================================
# Node.js / TypeScript
# =============================================================================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# Build outputs
dist/
build/
.next/
out/
# Cache directories
.npm/
.yarn/
.pnp.*
# TypeScript
*.tsbuildinfo
# =============================================================================
# Python
# =============================================================================
__pycache__/
*.py[cod]
*$py.class
*.so
# Virtual environments
.venv/
venv/
ENV/
env/
# Distribution / packaging
*.egg-info/
*.egg
.eggs/
*.whl
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/
# Type checking
.mypy_cache/
.dmypy.json
dmypy.json
# =============================================================================
# IDE / Editors
# =============================================================================
# JetBrains (IntelliJ, CLion, RustRover, etc.)
.idea/
*.iml
*.iws
*.ipr
# VSCode
.vscode/
*.code-workspace
# Vim/Neovim
*.swp
*.swo
*.swn
*~
.*.sw?
Session.vim
.netrwhist
# Emacs
*~
\#*\#
.\#*
# Visual Studio
*.sln
*.suo
*.user
*.userosscache
*.sln.docstates
# Sublime Text
*.sublime-project
*.sublime-workspace
# =============================================================================
# Operating Systems
# =============================================================================
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.lnk
# Linux
*~
.directory
.Trash-*
# =============================================================================
# SPECTRE Project-Specific
# =============================================================================
# Logs
logs/
*.log
spectre.log*
campaign-*.log
# Runtime data
.spectre/
.spectre-cache/
*.pid
# Scan results (sensitive)
scans/
results/
# Exception: spectre-core source module named 'results'
!crates/spectre-core/src/results/
!crates/spectre-core/src/results/**
*.scan.json
*.scan.xml
# Packet captures (sensitive)
*.pcap
*.pcapng
*.cap
# Campaign data (sensitive)
campaigns/active/
campaigns/completed/
*.campaign
# =============================================================================
# Secrets & Credentials (NEVER COMMIT)
# =============================================================================
# Environment files
.env
.env.local
.env.development
.env.production
.env.*.local
*.env
# Keys and certificates
*.key
*.pem
*.p12
*.pfx
*.crt
*.cer
identity.key
private.key
*.secret
# Exceptions for example files
!*.example.key
!*.example.pem
!example.env
# Credentials
credentials.json
secrets.json
*.credentials
.netrc
# =============================================================================
# Docker
# =============================================================================
# Docker override files
docker-compose.override.yml
docker-compose.*.yml
!docker-compose.yml
!docker-compose.production.yml
# =============================================================================
# Testing
# =============================================================================
# Proptest regression files
**/proptest-regressions/
# Coverage reports
coverage/
*.lcov
lcov.info
tarpaulin-report.html
cobertura.xml
# Test artifacts
test-results/
junit.xml
test-output/
# Benchmark results (keep in separate reports)
benchmark-results/
*.bench
target/criterion/
# =============================================================================
# Documentation Build
# =============================================================================
# mdBook
book/
# Sphinx
_build/
# API documentation
target/doc/
# =============================================================================
# Build Tools
# =============================================================================
# CMake
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile
*.cmake
# Meson
builddir/
meson-logs/
meson-private/
# =============================================================================
# Temporary Files
# =============================================================================
tmp/
temp/
*.tmp
*.temp
*.bak
*.backup
# Core dumps
core
core.*
vgcore.*
# =============================================================================
# CI/CD
# =============================================================================
# GitHub Actions local testing
.act/
# Cargo home override (used in CI release workflow via CARGO_HOME env var)
.cargo/
# =============================================================================
# Tauri (GUI) - crates/spectre-gui/
# =============================================================================
# Frontend node_modules and build output
crates/spectre-gui/frontend/node_modules/
crates/spectre-gui/frontend/dist/
crates/spectre-gui/frontend/.vite/
crates/spectre-gui/frontend/coverage/
crates/spectre-gui/frontend/.pnpm-store/
crates/spectre-gui/frontend/pnpm-lock.yaml.bak
# Tauri build artifacts and auto-generated schemas
crates/spectre-gui/WixTools/
crates/spectre-gui/gen/
# Legacy src-tauri paths (unused)
src-tauri/target/
src-tauri/WixTools/
# =============================================================================
# CyberChef-MCP specific
# =============================================================================
# Recipe cache
.recipe-cache/
recipes/*.cache
# =============================================================================
# SQLite (Campaign Storage)
# =============================================================================
# Campaign databases (contain sensitive operation data)
*.db
*.db-journal
*.db-wal
*.db-shm
*.sqlite
*.sqlite3
*.sqlite3-journal
*.sqlite3-wal
*.sqlite3-shm
!migrations/**/*.sql
# =============================================================================
# Lua Plugins
# =============================================================================
# Compiled Lua bytecode
*.luac
# Plugin runtime data
plugins/cache/
plugins/tmp/
# Plugin logs
plugins/*.log
# Plugin registry state
plugins/registry.json
# =============================================================================
# Workflow & Recipe Data
# =============================================================================
# Workflow execution state
workflows/*.state
workflows/tmp/
# Recipe cache
recipes/cache/
# Export state
exports/*.state
exports/tmp/
# =============================================================================
# Reports (generated)
# =============================================================================
# Generated reports (may contain sensitive findings)
/reports/
/output/reports/
*.report.html
*.report.md
# =============================================================================
# Sprint Planning (to-dos/)
# =============================================================================
# Keep planning documents, ignore personal notes
to-dos/*.personal
to-dos/*.draft
to-dos/.notes/
# =============================================================================
# Claude Code / AI Assistants
# =============================================================================
# Local Claude memory (not project-level)
CLAUDE.local.md
.claude/
# =============================================================================
# Release Artifacts
# =============================================================================
# Binary releases (generated by CI)
releases/
*.tar.gz
*.zip
!vendor/**/*.tar.gz
# Checksums
SHA256SUMS
SHA512SUMS
# =============================================================================
# End of .gitignore
# =============================================================================