-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
100 lines (84 loc) · 1.61 KB
/
Copy path.gitignore
File metadata and controls
100 lines (84 loc) · 1.61 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
# ------------------------------------------------------------
# Public preview mode (proprietary code protection)
# Keep project metadata/docs visible, hide high-value implementation.
# ------------------------------------------------------------
# Core proprietary engine
src/passivesentry/core.py
src/passivesentry/batch.py
src/passivesentry/constants.py
src/passivesentry/utils.py
src/passivesentry/owasp_2025_reference.py
# High-value OWASP modules and analyzers
src/passivesentry/modules/*.py
# Reporting intelligence (scoring, normalization, and templates)
src/passivesentry/reporting/*.py
src/passivesentry/reporting/templates/*.html
# Operational/internal dashboard code
scripts/streamlit_dashboard.py
# CLI
src/passivesentry/cli.py
# Bytecode and runtime artifacts
__pycache__/
*.py[cod]
*.pyo
*.pyd
# Virtual environments
.venv/
venv/
env/
ENV/
# Build artifacts
build/
dist/
*.egg-info/
.eggs/
pip-wheel-metadata/
# Test and coverage output
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
.hypothesis/
# Linters and type checkers
.ruff_cache/
.mypy_cache/
.pytype/
# Local tooling
.python-version
# IDE/editor folders
.idea/
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
# OS and temporary files
.DS_Store
Thumbs.db
*.swp
*.swo
*~
tmp/
temp/
# Secrets and local config
.env
.env.*
secrets/
credentials/
# PassiveSentry generated outputs
results/
results_massive/
test_results/
*.log
passivesentry_*.json
passivesentry_*.pdf
PassiveSentry_Report_*.pdf
batch_execution_*.log
batch_report_*.json
*_executive.pdf
domains.txt
# Docs output
docs/_build/
site/