appsec-rules-pack 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- appsec_rules_pack-0.2.0/LICENSE +201 -0
- appsec_rules_pack-0.2.0/PKG-INFO +252 -0
- appsec_rules_pack-0.2.0/README.md +219 -0
- appsec_rules_pack-0.2.0/pyproject.toml +84 -0
- appsec_rules_pack-0.2.0/setup.cfg +4 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack/__init__.py +5 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack/__main__.py +5 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack/cli.py +384 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack/exporter.py +66 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack/loader.py +13 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack/reporter.py +80 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack/sarif_export.py +108 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack/schemas/appsec-rule.schema.json +302 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack/semgrep_scaffold.py +81 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack/validator.py +566 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack.egg-info/PKG-INFO +252 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack.egg-info/SOURCES.txt +31 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack.egg-info/dependency_links.txt +1 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack.egg-info/entry_points.txt +2 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack.egg-info/requires.txt +9 -0
- appsec_rules_pack-0.2.0/src/appsec_rules_pack.egg-info/top_level.txt +1 -0
- appsec_rules_pack-0.2.0/tests/test_edge_cases.py +126 -0
- appsec_rules_pack-0.2.0/tests/test_examples.py +128 -0
- appsec_rules_pack-0.2.0/tests/test_exporter.py +106 -0
- appsec_rules_pack-0.2.0/tests/test_lifecycle_and_mappings.py +79 -0
- appsec_rules_pack-0.2.0/tests/test_loader.py +30 -0
- appsec_rules_pack-0.2.0/tests/test_packaging.py +30 -0
- appsec_rules_pack-0.2.0/tests/test_reporter.py +72 -0
- appsec_rules_pack-0.2.0/tests/test_sarif_export.py +56 -0
- appsec_rules_pack-0.2.0/tests/test_schema.py +25 -0
- appsec_rules_pack-0.2.0/tests/test_semgrep_scaffold.py +57 -0
- appsec_rules_pack-0.2.0/tests/test_validator.py +227 -0
- appsec_rules_pack-0.2.0/tests/test_validator_paths.py +344 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. Do not include
|
|
183
|
+
the brackets. The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2026 Lucas Henrique Grifoni
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: appsec-rules-pack
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Generic AppSec policy-as-code rules pack and validator.
|
|
5
|
+
Author: Lucas Henrique Grifoni
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/lucashgrifoni/AppSec-Rules-Pack
|
|
8
|
+
Project-URL: Repository, https://github.com/lucashgrifoni/AppSec-Rules-Pack
|
|
9
|
+
Project-URL: Issues, https://github.com/lucashgrifoni/AppSec-Rules-Pack/issues
|
|
10
|
+
Project-URL: Changelog, https://github.com/lucashgrifoni/AppSec-Rules-Pack/blob/master/CHANGELOG.md
|
|
11
|
+
Keywords: appsec,application-security,policy-as-code,security-rules,secure-code-review,devsecops,owasp-asvs,ci-quality-gate
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Environment :: Console
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Intended Audience :: Information Technology
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Security
|
|
20
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
21
|
+
Requires-Python: >=3.12
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
Requires-Dist: jsonschema<5,>=4.21
|
|
25
|
+
Requires-Dist: PyYAML<7,>=6.0.1
|
|
26
|
+
Requires-Dist: typer<1,>=0.12
|
|
27
|
+
Provides-Extra: dev
|
|
28
|
+
Requires-Dist: build<2,>=1.2; extra == "dev"
|
|
29
|
+
Requires-Dist: pytest<9,>=8; extra == "dev"
|
|
30
|
+
Requires-Dist: pytest-cov<7,>=5; extra == "dev"
|
|
31
|
+
Requires-Dist: ruff<1,>=0.5; extra == "dev"
|
|
32
|
+
Dynamic: license-file
|
|
33
|
+
|
|
34
|
+
# AppSec Rules Pack
|
|
35
|
+
|
|
36
|
+
[](https://github.com/lucashgrifoni/AppSec-Rules-Pack/actions/workflows/ci.yml)
|
|
37
|
+
[](https://github.com/lucashgrifoni/AppSec-Rules-Pack/actions/workflows/security-ci-cd.yml)
|
|
38
|
+
[](https://scorecard.dev/viewer/?uri=github.com/lucashgrifoni/AppSec-Rules-Pack)
|
|
39
|
+
[](LICENSE)
|
|
40
|
+
[](pyproject.toml)
|
|
41
|
+
|
|
42
|
+
Reusable AppSec policy-as-code rules for secure application review, CI quality gates,
|
|
43
|
+
and manual evidence collection.
|
|
44
|
+
|
|
45
|
+
This initial pack is intentionally generic. It does not contain product names,
|
|
46
|
+
tenant identifiers, customer data, secrets, internal endpoints, or environment-specific
|
|
47
|
+
configuration.
|
|
48
|
+
|
|
49
|
+
## What Is Included
|
|
50
|
+
|
|
51
|
+
- A short technical specification in `TECHNICAL_SPEC.md` and a direction summary in
|
|
52
|
+
`ROADMAP.md`.
|
|
53
|
+
- A JSON Schema rule contract in `src/appsec_rules_pack/schemas/appsec-rule.schema.json`.
|
|
54
|
+
- A baseline YAML rules pack of 19 generic rules in `rules/appsec-baseline.yaml`,
|
|
55
|
+
covering authentication, authorization, input validation, injection (including
|
|
56
|
+
output-encoding/XSS), SSRF, secrets, file handling, logging, dependency risk,
|
|
57
|
+
configuration, session hardening, CSRF, webhook/message integrity, excessive data
|
|
58
|
+
exposure, mass assignment, open redirect, and rate limiting. Every rule ships an
|
|
59
|
+
explicit compliant and violating code example.
|
|
60
|
+
- A Python 3.12 validator with a Typer CLI supporting `--version`,
|
|
61
|
+
`--fail-on-warnings`, `--require-examples`, and `--format json` output for CI, plus
|
|
62
|
+
derivation-only `export index`, `export semgrep`, `export sarif`, and `report coverage`
|
|
63
|
+
subcommands.
|
|
64
|
+
- Derived, drift-tested artifacts under `exports/`: a machine-readable rule index
|
|
65
|
+
(`appsec-baseline.index.json`), a clearly labeled NON-runnable Semgrep scaffold, and a
|
|
66
|
+
SARIF 2.1.0 rule catalog (empty results). Derivation only — the validator stays
|
|
67
|
+
engine-agnostic and never executes rules (ADR-0001).
|
|
68
|
+
- Unit tests and pass/fail/warn fixtures for valid packs, invalid schema shape,
|
|
69
|
+
enum/type/additionalProperties failures, duplicate rule IDs, cross-file
|
|
70
|
+
duplicate IDs, exception-window warnings, exception-policy contradictions,
|
|
71
|
+
malformed framework mapping IDs, and sensitive-value detection.
|
|
72
|
+
- A 90% coverage gate plus a hardened CI/CD surface: a build/lint/test workflow,
|
|
73
|
+
a security pipeline (Semgrep, CodeQL, Bandit, Trivy, KICS, pip-audit, Gitleaks,
|
|
74
|
+
Dependency Review, actionlint), and OpenSSF Scorecard analysis.
|
|
75
|
+
- Contribution guidance for safe rule additions, a code of conduct, and issue/PR
|
|
76
|
+
templates.
|
|
77
|
+
- A CI integration template in `examples/`.
|
|
78
|
+
|
|
79
|
+
## Project Layout
|
|
80
|
+
|
|
81
|
+
```text
|
|
82
|
+
.
|
|
83
|
+
|-- .github/
|
|
84
|
+
| |-- ISSUE_TEMPLATE/
|
|
85
|
+
| | |-- bug_report.md
|
|
86
|
+
| | |-- config.yml
|
|
87
|
+
| | `-- rule_proposal.md
|
|
88
|
+
| |-- workflows/
|
|
89
|
+
| | |-- ci.yml
|
|
90
|
+
| | |-- scorecard.yml
|
|
91
|
+
| | `-- security-ci-cd.yml
|
|
92
|
+
| |-- CODEOWNERS
|
|
93
|
+
| |-- PULL_REQUEST_TEMPLATE.md
|
|
94
|
+
| `-- dependabot.yml
|
|
95
|
+
|-- examples/
|
|
96
|
+
| `-- README.md
|
|
97
|
+
|-- rules/
|
|
98
|
+
| `-- appsec-baseline.yaml
|
|
99
|
+
|-- src/
|
|
100
|
+
| `-- appsec_rules_pack/
|
|
101
|
+
| |-- __init__.py
|
|
102
|
+
| |-- __main__.py
|
|
103
|
+
| |-- cli.py
|
|
104
|
+
| |-- loader.py
|
|
105
|
+
| |-- validator.py
|
|
106
|
+
| `-- schemas/
|
|
107
|
+
| `-- appsec-rule.schema.json
|
|
108
|
+
|-- tests/
|
|
109
|
+
| |-- fixtures/
|
|
110
|
+
| | |-- cross-file-dup/
|
|
111
|
+
| | |-- exception-consistency/
|
|
112
|
+
| | |-- fail/
|
|
113
|
+
| | |-- pass/
|
|
114
|
+
| | `-- warn/
|
|
115
|
+
| |-- test_edge_cases.py
|
|
116
|
+
| |-- test_examples.py
|
|
117
|
+
| |-- test_loader.py
|
|
118
|
+
| |-- test_packaging.py
|
|
119
|
+
| |-- test_validator.py
|
|
120
|
+
| `-- test_validator_paths.py
|
|
121
|
+
|-- CHANGELOG.md
|
|
122
|
+
|-- CODE_OF_CONDUCT.md
|
|
123
|
+
|-- CONTRIBUTING.md
|
|
124
|
+
|-- LICENSE
|
|
125
|
+
|-- README.md
|
|
126
|
+
|-- ROADMAP.md
|
|
127
|
+
|-- SECURITY.md
|
|
128
|
+
|-- STATUS.md
|
|
129
|
+
|-- TECHNICAL_SPEC.md
|
|
130
|
+
`-- pyproject.toml
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
## Setup
|
|
134
|
+
|
|
135
|
+
```powershell
|
|
136
|
+
python -m venv .venv
|
|
137
|
+
.\.venv\Scripts\python -m pip install -e ".[dev]"
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
On macOS/Linux:
|
|
141
|
+
|
|
142
|
+
```bash
|
|
143
|
+
python -m venv .venv
|
|
144
|
+
.venv/bin/python -m pip install -e ".[dev]"
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
If the dependencies already exist in the active Python environment, the validator can
|
|
148
|
+
also be run directly with `PYTHONPATH=src`.
|
|
149
|
+
|
|
150
|
+
## Usage
|
|
151
|
+
|
|
152
|
+
Validate the baseline rules pack:
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
python -m appsec_rules_pack validate rules/appsec-baseline.yaml
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
Validate every `.yaml` or `.yml` rules pack under a directory:
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
python -m appsec_rules_pack validate rules
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
Or, after installation, use the console script:
|
|
165
|
+
|
|
166
|
+
```bash
|
|
167
|
+
appsec-rules validate rules/appsec-baseline.yaml
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
Fail on warnings as well as errors:
|
|
171
|
+
|
|
172
|
+
```bash
|
|
173
|
+
appsec-rules validate rules/appsec-baseline.yaml --fail-on-warnings
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
Warn when an enabled rule ships no compliant/violating examples (opt-in):
|
|
177
|
+
|
|
178
|
+
```bash
|
|
179
|
+
appsec-rules validate rules --require-examples
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
Emit machine-readable JSON for CI pipelines:
|
|
183
|
+
|
|
184
|
+
```bash
|
|
185
|
+
appsec-rules validate rules --format json
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
Show the installed version:
|
|
189
|
+
|
|
190
|
+
```bash
|
|
191
|
+
appsec-rules --version
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
Derive a machine-readable rule index (JSON) for downstream tooling. This only reads
|
|
195
|
+
and derives pack metadata; it does not execute rules or emit findings:
|
|
196
|
+
|
|
197
|
+
```bash
|
|
198
|
+
appsec-rules export index rules/appsec-baseline.yaml
|
|
199
|
+
appsec-rules export index rules/appsec-baseline.yaml --output exports/appsec-baseline.index.json
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
The JSON report contains a `summary` object (`files`, `rules`, `errors`, `warnings`,
|
|
203
|
+
`ok`) and a `files` array with per-file issues (`level`, `path`, `message`). The exit
|
|
204
|
+
code is non-zero when validation fails, matching the text output.
|
|
205
|
+
|
|
206
|
+
## Use It In Your CI
|
|
207
|
+
|
|
208
|
+
`examples/README.md` contains a GitHub Actions template for installing the pack,
|
|
209
|
+
validating a rules directory, and failing the build on errors (and optionally
|
|
210
|
+
warnings). Pin the template to a reviewed tag or commit before enabling it as a
|
|
211
|
+
quality gate.
|
|
212
|
+
|
|
213
|
+
## Rule Pack Model
|
|
214
|
+
|
|
215
|
+
Rules are advisory by default. Each rule defines:
|
|
216
|
+
|
|
217
|
+
- a stable ID and severity;
|
|
218
|
+
- the target surface and AppSec category;
|
|
219
|
+
- framework mappings such as OWASP ASVS 5.0, OWASP API Security Top 10, OWASP Top 10:2025
|
|
220
|
+
(optional), CWE, and NIST SSDF;
|
|
221
|
+
- expected evidence and review signals;
|
|
222
|
+
- match guidance for reviewers or automation;
|
|
223
|
+
- remediation and validation guidance;
|
|
224
|
+
- exception metadata requirements;
|
|
225
|
+
- a compliant and a violating code example with a short explanation.
|
|
226
|
+
|
|
227
|
+
The initial version is optimized for reviewability and deterministic validation, not for
|
|
228
|
+
deep scanner-specific matching.
|
|
229
|
+
|
|
230
|
+
## Validation
|
|
231
|
+
|
|
232
|
+
```bash
|
|
233
|
+
python -m pytest
|
|
234
|
+
PYTHONPATH=src python -m appsec_rules_pack validate rules
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
The validator checks JSON Schema compliance, duplicate rule IDs within a file and across
|
|
238
|
+
a validated directory, exception-window limits, exception-policy contradictions
|
|
239
|
+
(for example, a disallowed exception that still declares a window), malformed framework
|
|
240
|
+
mapping identifiers (CWE, OWASP API Top 10 2023, OWASP ASVS, NIST SSDF), and basic
|
|
241
|
+
sensitive-value patterns. Directory validation reports each issue with the relative file
|
|
242
|
+
path, schema path, severity, and a concise remediation-oriented message.
|
|
243
|
+
|
|
244
|
+
## Contributing
|
|
245
|
+
|
|
246
|
+
See `CONTRIBUTING.md` for rule authoring principles, the severity model, exception
|
|
247
|
+
requirements, and the required checks. All participation is governed by
|
|
248
|
+
`CODE_OF_CONDUCT.md`. To report a security issue, follow `SECURITY.md`.
|
|
249
|
+
|
|
250
|
+
## License
|
|
251
|
+
|
|
252
|
+
Licensed under the Apache License 2.0. See `LICENSE`.
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
# AppSec Rules Pack
|
|
2
|
+
|
|
3
|
+
[](https://github.com/lucashgrifoni/AppSec-Rules-Pack/actions/workflows/ci.yml)
|
|
4
|
+
[](https://github.com/lucashgrifoni/AppSec-Rules-Pack/actions/workflows/security-ci-cd.yml)
|
|
5
|
+
[](https://scorecard.dev/viewer/?uri=github.com/lucashgrifoni/AppSec-Rules-Pack)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
[](pyproject.toml)
|
|
8
|
+
|
|
9
|
+
Reusable AppSec policy-as-code rules for secure application review, CI quality gates,
|
|
10
|
+
and manual evidence collection.
|
|
11
|
+
|
|
12
|
+
This initial pack is intentionally generic. It does not contain product names,
|
|
13
|
+
tenant identifiers, customer data, secrets, internal endpoints, or environment-specific
|
|
14
|
+
configuration.
|
|
15
|
+
|
|
16
|
+
## What Is Included
|
|
17
|
+
|
|
18
|
+
- A short technical specification in `TECHNICAL_SPEC.md` and a direction summary in
|
|
19
|
+
`ROADMAP.md`.
|
|
20
|
+
- A JSON Schema rule contract in `src/appsec_rules_pack/schemas/appsec-rule.schema.json`.
|
|
21
|
+
- A baseline YAML rules pack of 19 generic rules in `rules/appsec-baseline.yaml`,
|
|
22
|
+
covering authentication, authorization, input validation, injection (including
|
|
23
|
+
output-encoding/XSS), SSRF, secrets, file handling, logging, dependency risk,
|
|
24
|
+
configuration, session hardening, CSRF, webhook/message integrity, excessive data
|
|
25
|
+
exposure, mass assignment, open redirect, and rate limiting. Every rule ships an
|
|
26
|
+
explicit compliant and violating code example.
|
|
27
|
+
- A Python 3.12 validator with a Typer CLI supporting `--version`,
|
|
28
|
+
`--fail-on-warnings`, `--require-examples`, and `--format json` output for CI, plus
|
|
29
|
+
derivation-only `export index`, `export semgrep`, `export sarif`, and `report coverage`
|
|
30
|
+
subcommands.
|
|
31
|
+
- Derived, drift-tested artifacts under `exports/`: a machine-readable rule index
|
|
32
|
+
(`appsec-baseline.index.json`), a clearly labeled NON-runnable Semgrep scaffold, and a
|
|
33
|
+
SARIF 2.1.0 rule catalog (empty results). Derivation only — the validator stays
|
|
34
|
+
engine-agnostic and never executes rules (ADR-0001).
|
|
35
|
+
- Unit tests and pass/fail/warn fixtures for valid packs, invalid schema shape,
|
|
36
|
+
enum/type/additionalProperties failures, duplicate rule IDs, cross-file
|
|
37
|
+
duplicate IDs, exception-window warnings, exception-policy contradictions,
|
|
38
|
+
malformed framework mapping IDs, and sensitive-value detection.
|
|
39
|
+
- A 90% coverage gate plus a hardened CI/CD surface: a build/lint/test workflow,
|
|
40
|
+
a security pipeline (Semgrep, CodeQL, Bandit, Trivy, KICS, pip-audit, Gitleaks,
|
|
41
|
+
Dependency Review, actionlint), and OpenSSF Scorecard analysis.
|
|
42
|
+
- Contribution guidance for safe rule additions, a code of conduct, and issue/PR
|
|
43
|
+
templates.
|
|
44
|
+
- A CI integration template in `examples/`.
|
|
45
|
+
|
|
46
|
+
## Project Layout
|
|
47
|
+
|
|
48
|
+
```text
|
|
49
|
+
.
|
|
50
|
+
|-- .github/
|
|
51
|
+
| |-- ISSUE_TEMPLATE/
|
|
52
|
+
| | |-- bug_report.md
|
|
53
|
+
| | |-- config.yml
|
|
54
|
+
| | `-- rule_proposal.md
|
|
55
|
+
| |-- workflows/
|
|
56
|
+
| | |-- ci.yml
|
|
57
|
+
| | |-- scorecard.yml
|
|
58
|
+
| | `-- security-ci-cd.yml
|
|
59
|
+
| |-- CODEOWNERS
|
|
60
|
+
| |-- PULL_REQUEST_TEMPLATE.md
|
|
61
|
+
| `-- dependabot.yml
|
|
62
|
+
|-- examples/
|
|
63
|
+
| `-- README.md
|
|
64
|
+
|-- rules/
|
|
65
|
+
| `-- appsec-baseline.yaml
|
|
66
|
+
|-- src/
|
|
67
|
+
| `-- appsec_rules_pack/
|
|
68
|
+
| |-- __init__.py
|
|
69
|
+
| |-- __main__.py
|
|
70
|
+
| |-- cli.py
|
|
71
|
+
| |-- loader.py
|
|
72
|
+
| |-- validator.py
|
|
73
|
+
| `-- schemas/
|
|
74
|
+
| `-- appsec-rule.schema.json
|
|
75
|
+
|-- tests/
|
|
76
|
+
| |-- fixtures/
|
|
77
|
+
| | |-- cross-file-dup/
|
|
78
|
+
| | |-- exception-consistency/
|
|
79
|
+
| | |-- fail/
|
|
80
|
+
| | |-- pass/
|
|
81
|
+
| | `-- warn/
|
|
82
|
+
| |-- test_edge_cases.py
|
|
83
|
+
| |-- test_examples.py
|
|
84
|
+
| |-- test_loader.py
|
|
85
|
+
| |-- test_packaging.py
|
|
86
|
+
| |-- test_validator.py
|
|
87
|
+
| `-- test_validator_paths.py
|
|
88
|
+
|-- CHANGELOG.md
|
|
89
|
+
|-- CODE_OF_CONDUCT.md
|
|
90
|
+
|-- CONTRIBUTING.md
|
|
91
|
+
|-- LICENSE
|
|
92
|
+
|-- README.md
|
|
93
|
+
|-- ROADMAP.md
|
|
94
|
+
|-- SECURITY.md
|
|
95
|
+
|-- STATUS.md
|
|
96
|
+
|-- TECHNICAL_SPEC.md
|
|
97
|
+
`-- pyproject.toml
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
## Setup
|
|
101
|
+
|
|
102
|
+
```powershell
|
|
103
|
+
python -m venv .venv
|
|
104
|
+
.\.venv\Scripts\python -m pip install -e ".[dev]"
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
On macOS/Linux:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
python -m venv .venv
|
|
111
|
+
.venv/bin/python -m pip install -e ".[dev]"
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
If the dependencies already exist in the active Python environment, the validator can
|
|
115
|
+
also be run directly with `PYTHONPATH=src`.
|
|
116
|
+
|
|
117
|
+
## Usage
|
|
118
|
+
|
|
119
|
+
Validate the baseline rules pack:
|
|
120
|
+
|
|
121
|
+
```bash
|
|
122
|
+
python -m appsec_rules_pack validate rules/appsec-baseline.yaml
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
Validate every `.yaml` or `.yml` rules pack under a directory:
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
python -m appsec_rules_pack validate rules
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
Or, after installation, use the console script:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
appsec-rules validate rules/appsec-baseline.yaml
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
Fail on warnings as well as errors:
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
appsec-rules validate rules/appsec-baseline.yaml --fail-on-warnings
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
Warn when an enabled rule ships no compliant/violating examples (opt-in):
|
|
144
|
+
|
|
145
|
+
```bash
|
|
146
|
+
appsec-rules validate rules --require-examples
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
Emit machine-readable JSON for CI pipelines:
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
appsec-rules validate rules --format json
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
Show the installed version:
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
appsec-rules --version
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
Derive a machine-readable rule index (JSON) for downstream tooling. This only reads
|
|
162
|
+
and derives pack metadata; it does not execute rules or emit findings:
|
|
163
|
+
|
|
164
|
+
```bash
|
|
165
|
+
appsec-rules export index rules/appsec-baseline.yaml
|
|
166
|
+
appsec-rules export index rules/appsec-baseline.yaml --output exports/appsec-baseline.index.json
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
The JSON report contains a `summary` object (`files`, `rules`, `errors`, `warnings`,
|
|
170
|
+
`ok`) and a `files` array with per-file issues (`level`, `path`, `message`). The exit
|
|
171
|
+
code is non-zero when validation fails, matching the text output.
|
|
172
|
+
|
|
173
|
+
## Use It In Your CI
|
|
174
|
+
|
|
175
|
+
`examples/README.md` contains a GitHub Actions template for installing the pack,
|
|
176
|
+
validating a rules directory, and failing the build on errors (and optionally
|
|
177
|
+
warnings). Pin the template to a reviewed tag or commit before enabling it as a
|
|
178
|
+
quality gate.
|
|
179
|
+
|
|
180
|
+
## Rule Pack Model
|
|
181
|
+
|
|
182
|
+
Rules are advisory by default. Each rule defines:
|
|
183
|
+
|
|
184
|
+
- a stable ID and severity;
|
|
185
|
+
- the target surface and AppSec category;
|
|
186
|
+
- framework mappings such as OWASP ASVS 5.0, OWASP API Security Top 10, OWASP Top 10:2025
|
|
187
|
+
(optional), CWE, and NIST SSDF;
|
|
188
|
+
- expected evidence and review signals;
|
|
189
|
+
- match guidance for reviewers or automation;
|
|
190
|
+
- remediation and validation guidance;
|
|
191
|
+
- exception metadata requirements;
|
|
192
|
+
- a compliant and a violating code example with a short explanation.
|
|
193
|
+
|
|
194
|
+
The initial version is optimized for reviewability and deterministic validation, not for
|
|
195
|
+
deep scanner-specific matching.
|
|
196
|
+
|
|
197
|
+
## Validation
|
|
198
|
+
|
|
199
|
+
```bash
|
|
200
|
+
python -m pytest
|
|
201
|
+
PYTHONPATH=src python -m appsec_rules_pack validate rules
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
The validator checks JSON Schema compliance, duplicate rule IDs within a file and across
|
|
205
|
+
a validated directory, exception-window limits, exception-policy contradictions
|
|
206
|
+
(for example, a disallowed exception that still declares a window), malformed framework
|
|
207
|
+
mapping identifiers (CWE, OWASP API Top 10 2023, OWASP ASVS, NIST SSDF), and basic
|
|
208
|
+
sensitive-value patterns. Directory validation reports each issue with the relative file
|
|
209
|
+
path, schema path, severity, and a concise remediation-oriented message.
|
|
210
|
+
|
|
211
|
+
## Contributing
|
|
212
|
+
|
|
213
|
+
See `CONTRIBUTING.md` for rule authoring principles, the severity model, exception
|
|
214
|
+
requirements, and the required checks. All participation is governed by
|
|
215
|
+
`CODE_OF_CONDUCT.md`. To report a security issue, follow `SECURITY.md`.
|
|
216
|
+
|
|
217
|
+
## License
|
|
218
|
+
|
|
219
|
+
Licensed under the Apache License 2.0. See `LICENSE`.
|