hb-scan 0.1.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.
- hb_scan-0.1.0/LICENSE +189 -0
- hb_scan-0.1.0/PKG-INFO +339 -0
- hb_scan-0.1.0/README.md +306 -0
- hb_scan-0.1.0/pyproject.toml +56 -0
- hb_scan-0.1.0/setup.cfg +4 -0
- hb_scan-0.1.0/src/hb_scan/__init__.py +3 -0
- hb_scan-0.1.0/src/hb_scan/cli.py +360 -0
- hb_scan-0.1.0/src/hb_scan/compliance.py +273 -0
- hb_scan-0.1.0/src/hb_scan/discover/__init__.py +6 -0
- hb_scan-0.1.0/src/hb_scan/discover/base.py +47 -0
- hb_scan-0.1.0/src/hb_scan/discover/claude.py +223 -0
- hb_scan-0.1.0/src/hb_scan/discover/registry.py +45 -0
- hb_scan-0.1.0/src/hb_scan/enrichments.py +55 -0
- hb_scan-0.1.0/src/hb_scan/history.py +109 -0
- hb_scan-0.1.0/src/hb_scan/insights.py +288 -0
- hb_scan-0.1.0/src/hb_scan/messages.py +61 -0
- hb_scan-0.1.0/src/hb_scan/models/__init__.py +7 -0
- hb_scan-0.1.0/src/hb_scan/models/finding.py +71 -0
- hb_scan-0.1.0/src/hb_scan/models/posture.py +138 -0
- hb_scan-0.1.0/src/hb_scan/models/session.py +52 -0
- hb_scan-0.1.0/src/hb_scan/normalize/__init__.py +1 -0
- hb_scan-0.1.0/src/hb_scan/report/__init__.py +7 -0
- hb_scan-0.1.0/src/hb_scan/report/html.py +746 -0
- hb_scan-0.1.0/src/hb_scan/report/json_report.py +61 -0
- hb_scan-0.1.0/src/hb_scan/report/terminal.py +142 -0
- hb_scan-0.1.0/src/hb_scan/rules/__init__.py +6 -0
- hb_scan-0.1.0/src/hb_scan/rules/builtin/credential_patterns.yml +1895 -0
- hb_scan-0.1.0/src/hb_scan/rules/builtin/dh01_secret_exposure.yml +52 -0
- hb_scan-0.1.0/src/hb_scan/rules/builtin/dh02_unsafe_code.yml +135 -0
- hb_scan-0.1.0/src/hb_scan/rules/builtin/dh03_dangerous_commands.yml +127 -0
- hb_scan-0.1.0/src/hb_scan/rules/builtin/dh04_sensitive_data.yml +121 -0
- hb_scan-0.1.0/src/hb_scan/rules/builtin/dh05_supply_chain.yml +93 -0
- hb_scan-0.1.0/src/hb_scan/rules/builtin/dh06_scope_violation.yml +83 -0
- hb_scan-0.1.0/src/hb_scan/rules/builtin/dh07_ip_leakage.yml +85 -0
- hb_scan-0.1.0/src/hb_scan/rules/builtin/dh08_regulatory_data.yml +116 -0
- hb_scan-0.1.0/src/hb_scan/rules/builtin/dh09_excessive_reliance.yml +29 -0
- hb_scan-0.1.0/src/hb_scan/rules/engine.py +349 -0
- hb_scan-0.1.0/src/hb_scan/rules/schema.py +92 -0
- hb_scan-0.1.0/src/hb_scan/scheduler.py +207 -0
- hb_scan-0.1.0/src/hb_scan/scoring/__init__.py +5 -0
- hb_scan-0.1.0/src/hb_scan/telemetry/__init__.py +1 -0
- hb_scan-0.1.0/src/hb_scan/telemetry/anonymous.py +82 -0
- hb_scan-0.1.0/src/hb_scan.egg-info/PKG-INFO +339 -0
- hb_scan-0.1.0/src/hb_scan.egg-info/SOURCES.txt +53 -0
- hb_scan-0.1.0/src/hb_scan.egg-info/dependency_links.txt +1 -0
- hb_scan-0.1.0/src/hb_scan.egg-info/entry_points.txt +2 -0
- hb_scan-0.1.0/src/hb_scan.egg-info/requires.txt +10 -0
- hb_scan-0.1.0/src/hb_scan.egg-info/top_level.txt +1 -0
- hb_scan-0.1.0/tests/test_cli.py +49 -0
- hb_scan-0.1.0/tests/test_compliance.py +65 -0
- hb_scan-0.1.0/tests/test_discover_claude.py +107 -0
- hb_scan-0.1.0/tests/test_enrichments.py +77 -0
- hb_scan-0.1.0/tests/test_insights.py +107 -0
- hb_scan-0.1.0/tests/test_models.py +175 -0
- hb_scan-0.1.0/tests/test_rules_engine.py +285 -0
hb_scan-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,189 @@
|
|
|
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
|
+
|
|
39
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
40
|
+
form, that is based on (or derived from) the Work and for which the
|
|
41
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
42
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
43
|
+
of this License, Derivative Works shall not include works that remain
|
|
44
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
45
|
+
the Work and Derivative Works thereof.
|
|
46
|
+
|
|
47
|
+
"Contribution" shall mean any work of authorship, including
|
|
48
|
+
the original version of the Work and any modifications or additions
|
|
49
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
50
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
51
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
52
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
53
|
+
means any form of electronic, verbal, or written communication sent
|
|
54
|
+
to the Licensor or its representatives, including but not limited to
|
|
55
|
+
communication on electronic mailing lists, source code control systems,
|
|
56
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
57
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
58
|
+
excluding communication that is conspicuously marked or otherwise
|
|
59
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
60
|
+
|
|
61
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
62
|
+
on behalf of whom a Contribution has been received by the Licensor and
|
|
63
|
+
subsequently incorporated within the Work.
|
|
64
|
+
|
|
65
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
66
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
67
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
68
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
69
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
70
|
+
Work and such Derivative Works in Source or Object form.
|
|
71
|
+
|
|
72
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
73
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
74
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
75
|
+
(except as stated in this section) patent license to make, have made,
|
|
76
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
77
|
+
where such license applies only to those patent claims licensable
|
|
78
|
+
by such Contributor that are necessarily infringed by their
|
|
79
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
80
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
81
|
+
institute patent litigation against any entity (including a
|
|
82
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
83
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
84
|
+
or contributory patent infringement, then any patent licenses
|
|
85
|
+
granted to You under this License for that Work shall terminate
|
|
86
|
+
as of the date such litigation is filed.
|
|
87
|
+
|
|
88
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
89
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
90
|
+
modifications, and in Source or Object form, provided that You
|
|
91
|
+
meet the following conditions:
|
|
92
|
+
|
|
93
|
+
(a) You must give any other recipients of the Work or
|
|
94
|
+
Derivative Works a copy of this License; and
|
|
95
|
+
|
|
96
|
+
(b) You must cause any modified files to carry prominent notices
|
|
97
|
+
stating that You changed the files; and
|
|
98
|
+
|
|
99
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
100
|
+
that You distribute, all copyright, patent, trademark, and
|
|
101
|
+
attribution notices from the Source form of the Work,
|
|
102
|
+
excluding those notices that do not pertain to any part of
|
|
103
|
+
the Derivative Works; and
|
|
104
|
+
|
|
105
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
106
|
+
distribution, then any Derivative Works that You distribute must
|
|
107
|
+
include a readable copy of the attribution notices contained
|
|
108
|
+
within such NOTICE file, excluding any notices that do not
|
|
109
|
+
pertain to any part of the Derivative Works, in at least one
|
|
110
|
+
of the following places: within a NOTICE text file distributed
|
|
111
|
+
as part of the Derivative Works; within the Source form or
|
|
112
|
+
documentation, if provided along with the Derivative Works; or,
|
|
113
|
+
within a display generated by the Derivative Works, if and
|
|
114
|
+
wherever such third-party notices normally appear. The contents
|
|
115
|
+
of the NOTICE file are for informational purposes only and
|
|
116
|
+
do not modify the License. You may add Your own attribution
|
|
117
|
+
notices within Derivative Works that You distribute, alongside
|
|
118
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
119
|
+
that such additional attribution notices cannot be construed
|
|
120
|
+
as modifying the License.
|
|
121
|
+
|
|
122
|
+
You may add Your own copyright statement to Your modifications and
|
|
123
|
+
may provide additional or different license terms and conditions
|
|
124
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
125
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
126
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
127
|
+
the conditions stated in this License.
|
|
128
|
+
|
|
129
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
130
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
131
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
132
|
+
this License, without any additional terms or conditions.
|
|
133
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
134
|
+
the terms of any separate license agreement you may have executed
|
|
135
|
+
with Licensor regarding such Contributions.
|
|
136
|
+
|
|
137
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
138
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
139
|
+
except as required for reasonable and customary use in describing the
|
|
140
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
141
|
+
|
|
142
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
143
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
144
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
145
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
146
|
+
implied, including, without limitation, any warranties or conditions
|
|
147
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
148
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
149
|
+
appropriateness of using or redistributing the Work and assume any
|
|
150
|
+
risks associated with Your exercise of permissions under this License.
|
|
151
|
+
|
|
152
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
153
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
154
|
+
unless required by applicable law (such as deliberate and grossly
|
|
155
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
156
|
+
liable to You for damages, including any direct, indirect, special,
|
|
157
|
+
incidental, or consequential damages of any character arising as a
|
|
158
|
+
result of this License or out of the use or inability to use the
|
|
159
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
160
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
161
|
+
other commercial damages or losses), even if such Contributor
|
|
162
|
+
has been advised of the possibility of such damages.
|
|
163
|
+
|
|
164
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
165
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
166
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
167
|
+
or other liability obligations and/or rights consistent with this
|
|
168
|
+
License. However, in accepting such obligations, You may act only
|
|
169
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
170
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
171
|
+
defend, and hold each Contributor harmless for any liability
|
|
172
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
173
|
+
of your accepting any such warranty or additional liability.
|
|
174
|
+
|
|
175
|
+
END OF TERMS AND CONDITIONS
|
|
176
|
+
|
|
177
|
+
Copyright 2026 Humanbound
|
|
178
|
+
|
|
179
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
180
|
+
you may not use this file except in compliance with the License.
|
|
181
|
+
You may obtain a copy of the License at
|
|
182
|
+
|
|
183
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
184
|
+
|
|
185
|
+
Unless required by applicable law or agreed to in writing, software
|
|
186
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
187
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
188
|
+
See the License for the specific language governing permissions and
|
|
189
|
+
limitations under the License.
|
hb_scan-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,339 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hb-scan
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AI session security scanner — detect secrets, unsafe code, and data leakage in your AI tool conversations
|
|
5
|
+
Author-email: Humanbound <hello@humanbound.ai>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/humanbound/hb-scan
|
|
8
|
+
Project-URL: Documentation, https://github.com/humanbound/hb-scan#readme
|
|
9
|
+
Project-URL: Repository, https://github.com/humanbound/hb-scan
|
|
10
|
+
Project-URL: Issues, https://github.com/humanbound/hb-scan/issues
|
|
11
|
+
Keywords: ai,security,scanner,secrets,posture,developer-hygiene
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: System Administrators
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Security
|
|
20
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
Requires-Dist: click>=8.0
|
|
25
|
+
Requires-Dist: pyyaml>=6.0
|
|
26
|
+
Requires-Dist: rich>=13.0
|
|
27
|
+
Provides-Extra: html
|
|
28
|
+
Requires-Dist: jinja2>=3.0; extra == "html"
|
|
29
|
+
Provides-Extra: dev
|
|
30
|
+
Requires-Dist: pytest>=8.0; extra == "dev"
|
|
31
|
+
Requires-Dist: pytest-cov>=5.0; extra == "dev"
|
|
32
|
+
Dynamic: license-file
|
|
33
|
+
|
|
34
|
+
<p align="center">
|
|
35
|
+
<picture>
|
|
36
|
+
<source media="(prefers-color-scheme: dark)" srcset="assets/logo-light.svg"/>
|
|
37
|
+
<source media="(prefers-color-scheme: light)" srcset="assets/logo-dark.svg"/>
|
|
38
|
+
<img src="assets/logo-dark.svg" alt="Humanbound" width="280"/>
|
|
39
|
+
</picture>
|
|
40
|
+
</p>
|
|
41
|
+
|
|
42
|
+
<h3 align="center">hb-scan</h3>
|
|
43
|
+
|
|
44
|
+
<p align="center">
|
|
45
|
+
AI session security scanner -- detect secrets, unsafe code, and data leakage in your AI tool conversations.
|
|
46
|
+
<br/>
|
|
47
|
+
<strong>151 rules</strong> · <strong>70+ credential providers</strong> · <strong>8 compliance frameworks</strong>
|
|
48
|
+
</p>
|
|
49
|
+
|
|
50
|
+
<p align="center">
|
|
51
|
+
<a href="#quick-start">Quick Start</a> ·
|
|
52
|
+
<a href="#what-it-scans">What It Scans</a> ·
|
|
53
|
+
<a href="#scoring">Scoring</a> ·
|
|
54
|
+
<a href="#compliance">Compliance</a> ·
|
|
55
|
+
<a href="docs/user-guide.md">User Guide</a> ·
|
|
56
|
+
<a href="docs/contributing.md">Contributing</a>
|
|
57
|
+
</p>
|
|
58
|
+
|
|
59
|
+
<p align="center">
|
|
60
|
+
<a href="https://pypi.org/project/hb-scan/"><img src="https://img.shields.io/pypi/v/hb-scan?style=flat-square&color=FD9506" alt="PyPI version"/></a>
|
|
61
|
+
<a href="https://pypi.org/project/hb-scan/"><img src="https://img.shields.io/pypi/dm/hb-scan?style=flat-square&color=FD9506" alt="Downloads"/></a>
|
|
62
|
+
<a href="https://github.com/humanbound/hb-scan/actions"><img src="https://img.shields.io/github/actions/workflow/status/humanbound/hb-scan/ci.yml?style=flat-square&color=FD9506" alt="Build"/></a>
|
|
63
|
+
<a href="LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-FD9506?style=flat-square" alt="License"/></a>
|
|
64
|
+
<a href="https://humanbound.ai"><img src="https://img.shields.io/badge/humanbound.ai-platform-FD9506?style=flat-square" alt="Platform"/></a>
|
|
65
|
+
</p>
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## Quick Start
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
pip install hb-scan
|
|
73
|
+
hb-scan
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
That's it. hb-scan discovers AI tool sessions on your machine, scans them with 139 regex rules, and produces an AI hygiene report with a compliance-mapped score.
|
|
77
|
+
|
|
78
|
+
> **Want the full HTML report?** hb-scan generates one automatically in your current directory. Open `hb-scan-report.html` in any browser.
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## What It Does
|
|
83
|
+
|
|
84
|
+
```
|
|
85
|
+
$ hb-scan --since 7d
|
|
86
|
+
|
|
87
|
+
hb-scan v0.1.0
|
|
88
|
+
|
|
89
|
+
[1/4] Searching for AI tool footprints...
|
|
90
|
+
✓ Found 100 sessions (Claude Code)
|
|
91
|
+
[2/4] Analysing conversations for secrets...
|
|
92
|
+
[3/4] Crunching the numbers...
|
|
93
|
+
[4/4] Building your report...
|
|
94
|
+
○ A few opportunities to improve.
|
|
95
|
+
|
|
96
|
+
┌──────────────────────── hb-scan — AI Hygiene Report ─────────────────────────┐
|
|
97
|
+
│ Mar 12 — Mar 19, 2026 │
|
|
98
|
+
└──────────────────────────────────────────────────────────────────────────────┘
|
|
99
|
+
Tool: Claude Code
|
|
100
|
+
Sessions scanned: 100
|
|
101
|
+
|
|
102
|
+
⚠ Credential Exposure — 1 active credential
|
|
103
|
+
✓ Sensitive Data — Clean
|
|
104
|
+
✓ Code Security — Clean
|
|
105
|
+
✓ Commands — Clean
|
|
106
|
+
✓ Package Safety — Clean
|
|
107
|
+
✓ IP / Trade Secret — Clean
|
|
108
|
+
◌ Regulatory Data — requires LLM judge
|
|
109
|
+
○ Human Oversight Index — HOI 0.97
|
|
110
|
+
|
|
111
|
+
┌───────────────────────── HYGIENE SCORE ──────────────────────────────────────┐
|
|
112
|
+
│ 80/100 (Grade B) │
|
|
113
|
+
└──────────────────────────────────────────────────────────────────────────────┘
|
|
114
|
+
Rules: 139/151 active (12 require LLM judge)
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
## What It Scans
|
|
120
|
+
|
|
121
|
+
Nine threat classes backed by international standards. Each maps to specific controls in OWASP, NIST, ISO, CIS, MITRE, and the EU AI Act.
|
|
122
|
+
|
|
123
|
+
| ID | Threat Class | Rules | Detection | Key Standards |
|
|
124
|
+
|---|---|---|---|---|
|
|
125
|
+
| DH-01 | Secret Exposure | 104 | regex | OWASP LLM02, MITRE AML.T0051 |
|
|
126
|
+
| DH-02 | Unsafe Code Acceptance | 6 + 3 LLM | regex + llm | OWASP LLM05, NIST SP 800-218A |
|
|
127
|
+
| DH-03 | Dangerous Command Execution | 8 | regex | OWASP LLM06, SANS IDEsaster |
|
|
128
|
+
| DH-04 | Sensitive Data Sharing | 6 + 1 LLM | regex + llm | ISO 42001 A.7, MITRE AML.T0024 |
|
|
129
|
+
| DH-05 | Supply Chain Risk | 6 | regex | OWASP LLM03, ENISA Slopsquatting |
|
|
130
|
+
| DH-06 | Scope Violation | 5 | regex | OWASP Agentic ASI03, CIS Control 6 |
|
|
131
|
+
| DH-07 | IP / Trade Secret Leakage | 3 + 2 LLM | regex + llm | DTSA, EU Trade Secrets Directive |
|
|
132
|
+
| DH-08 | Regulatory Data Exposure | 0 + 6 LLM | llm only | GDPR, HIPAA, SOX, ABA Opinion 512 |
|
|
133
|
+
| DH-09 | Excessive Reliance | 1 | heuristic | EU AI Act Art. 14, NIST AI RMF |
|
|
134
|
+
|
|
135
|
+
> **104 credential patterns** sourced from gitleaks and TruffleHog covering AWS, Azure, GCP, OpenAI, Anthropic, GitHub, Slack, Stripe, and 60+ more providers.
|
|
136
|
+
|
|
137
|
+
See [docs/taxonomy.md](docs/taxonomy.md) for the full reference with standards citations.
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
|
|
141
|
+
## Scoring
|
|
142
|
+
|
|
143
|
+
hb-scan uses **control-based scoring**, not per-finding counting. This mirrors how ISO 42001 and CIS Controls work: each category is a control that either passes or fails.
|
|
144
|
+
|
|
145
|
+
```
|
|
146
|
+
Score = 100 - sum(category penalties)
|
|
147
|
+
|
|
148
|
+
Category penalty:
|
|
149
|
+
0 if clean (no findings)
|
|
150
|
+
100% if high-severity findings present
|
|
151
|
+
50% if medium-severity findings present
|
|
152
|
+
25% if low-severity findings present
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
| Category | Weight | What it means |
|
|
156
|
+
|---|---|---|
|
|
157
|
+
| Secret Exposure | 20 | Credentials found in AI conversations |
|
|
158
|
+
| Sensitive Data | 15 | Private files shared with AI tools |
|
|
159
|
+
| IP / Trade Secret | 15 | Proprietary content shared with AI |
|
|
160
|
+
| Regulatory Data | 15 | GDPR/HIPAA/SOX data in AI sessions |
|
|
161
|
+
| Code Security | 12 | Vulnerable AI-generated code accepted |
|
|
162
|
+
| Dangerous Commands | 10 | Risky shell commands via AI |
|
|
163
|
+
| Supply Chain | 8 | Unvetted packages installed via AI |
|
|
164
|
+
| Scope Violation | 5 | AI accessing files outside project |
|
|
165
|
+
|
|
166
|
+
10 leaked API keys = same score as 1 leaked API key. The control is failing either way.
|
|
167
|
+
|
|
168
|
+
---
|
|
169
|
+
|
|
170
|
+
## Compliance
|
|
171
|
+
|
|
172
|
+
The HTML report maps every finding to specific controls in 8 international frameworks:
|
|
173
|
+
|
|
174
|
+
<table>
|
|
175
|
+
<tr>
|
|
176
|
+
<td width="50%">
|
|
177
|
+
|
|
178
|
+
**AI-Specific Frameworks**
|
|
179
|
+
- OWASP Top 10 for LLM Applications 2025
|
|
180
|
+
- OWASP Top 10 for Agentic Applications 2026
|
|
181
|
+
- NIST AI RMF & SP 800-218A
|
|
182
|
+
- EU AI Act (Art. 14, 15)
|
|
183
|
+
- MITRE ATLAS
|
|
184
|
+
|
|
185
|
+
</td>
|
|
186
|
+
<td width="50%">
|
|
187
|
+
|
|
188
|
+
**General Security Frameworks**
|
|
189
|
+
- ISO/IEC 42001:2023 (AI Management)
|
|
190
|
+
- ISO/IEC 27001:2022 (Information Security)
|
|
191
|
+
- CIS Controls v8.1
|
|
192
|
+
|
|
193
|
+
</td>
|
|
194
|
+
</tr>
|
|
195
|
+
</table>
|
|
196
|
+
|
|
197
|
+
Each framework shows an alignment score with pass/fail/partial status per control. Use the report as an audit artifact.
|
|
198
|
+
|
|
199
|
+
---
|
|
200
|
+
|
|
201
|
+
## Human Oversight Index
|
|
202
|
+
|
|
203
|
+
The HOI score (0.0 - 1.0) measures how actively you supervise AI tool actions. Sessions with 50+ tool executions and fewer than 3 substantive user interactions are flagged as auto-pilot.
|
|
204
|
+
|
|
205
|
+
```
|
|
206
|
+
HOI 1.0 = Full oversight (all sessions supervised)
|
|
207
|
+
HOI 0.9+ = Good
|
|
208
|
+
HOI 0.7+ = Attention needed
|
|
209
|
+
HOI < 0.5 = Significant over-reliance
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
> 88% of accepted AI-generated code is retained without modification (GitHub/Accenture 2025). EU AI Act Article 14 requires awareness of "automation bias."
|
|
213
|
+
|
|
214
|
+
---
|
|
215
|
+
|
|
216
|
+
## Architecture
|
|
217
|
+
|
|
218
|
+
```
|
|
219
|
+
hb-scan
|
|
220
|
+
|
|
|
221
|
+
├── Discover ────── Find AI tool sessions on disk
|
|
222
|
+
| └── Claude Code (v1), Cursor, Aider... (plugins)
|
|
223
|
+
|
|
|
224
|
+
├── Normalize ───── Convert to common Session / Message / ToolCall schema
|
|
225
|
+
|
|
|
226
|
+
├── Match ────────── Run YAML rules against normalized sessions
|
|
227
|
+
| ├── 139 regex rules (active in Tier 1.1)
|
|
228
|
+
| └── 12 LLM rules (deferred to Tier 1.2)
|
|
229
|
+
|
|
|
230
|
+
├── Enrich ──────── JWT expiry detection, severity adjustments
|
|
231
|
+
|
|
|
232
|
+
├── Aggregate ───── Group findings into insight sections
|
|
233
|
+
|
|
|
234
|
+
├── Score ────────── Control-based posture calculation
|
|
235
|
+
|
|
|
236
|
+
└── Report ──────── Terminal summary + branded HTML report
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
---
|
|
240
|
+
|
|
241
|
+
## CLI Reference
|
|
242
|
+
|
|
243
|
+
```bash
|
|
244
|
+
hb-scan # Full scan, terminal + HTML report
|
|
245
|
+
hb-scan --since 7d # Last 7 days only
|
|
246
|
+
hb-scan --since 24h # Last 24 hours
|
|
247
|
+
hb-scan --tool claude-code # Specific tool only
|
|
248
|
+
hb-scan --project /path/to/repo # Specific project only
|
|
249
|
+
hb-scan --rules ./my-rules/ # Add custom YAML rules directory
|
|
250
|
+
hb-scan --format json # Machine-readable JSON output
|
|
251
|
+
hb-scan --output report.html # Custom report path
|
|
252
|
+
hb-scan --no-telemetry # Disable anonymous usage telemetry
|
|
253
|
+
|
|
254
|
+
hb-scan discover # List discovered AI tools
|
|
255
|
+
hb-scan rules # List all rules and their status
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
## Supported AI Tools
|
|
261
|
+
|
|
262
|
+
| Tool | Status | Data Source |
|
|
263
|
+
|---|---|---|
|
|
264
|
+
| Claude Code | **Supported** | `~/.claude/projects/` (JSONL sessions) |
|
|
265
|
+
|
|
266
|
+
Support for additional AI tools (Cursor, GitHub Copilot, Aider, Continue.dev, ChatGPT Desktop, Windsurf, and others) is in progress. This list will grow as new discoverers are added.
|
|
267
|
+
|
|
268
|
+
> Adding a new tool = one Python file implementing `BaseDiscoverer`. See [contributing guide](docs/contributing.md#adding-a-new-ai-tool-discoverer).
|
|
269
|
+
|
|
270
|
+
---
|
|
271
|
+
|
|
272
|
+
## Tiers
|
|
273
|
+
|
|
274
|
+
<table>
|
|
275
|
+
<tr>
|
|
276
|
+
<td width="33%">
|
|
277
|
+
|
|
278
|
+
**Tier 1.1 -- Current**
|
|
279
|
+
|
|
280
|
+
Regex-based rules. Fully offline. Open source.
|
|
281
|
+
|
|
282
|
+
```bash
|
|
283
|
+
pip install hb-scan
|
|
284
|
+
hb-scan
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
</td>
|
|
288
|
+
<td width="33%">
|
|
289
|
+
|
|
290
|
+
**Tier 1.2 -- Coming**
|
|
291
|
+
|
|
292
|
+
Bring your own LLM judge. Regulatory data detection. Semantic analysis.
|
|
293
|
+
|
|
294
|
+
```bash
|
|
295
|
+
hb-scan --llm
|
|
296
|
+
```
|
|
297
|
+
|
|
298
|
+
</td>
|
|
299
|
+
<td width="34%">
|
|
300
|
+
|
|
301
|
+
**Tier 2 -- Platform**
|
|
302
|
+
|
|
303
|
+
Org-wide governance. Device fleet scanning. Posture dashboard.
|
|
304
|
+
|
|
305
|
+
[humanbound.ai](https://humanbound.ai)
|
|
306
|
+
|
|
307
|
+
</td>
|
|
308
|
+
</tr>
|
|
309
|
+
</table>
|
|
310
|
+
|
|
311
|
+
---
|
|
312
|
+
|
|
313
|
+
## Contributing
|
|
314
|
+
|
|
315
|
+
We welcome contributions in four areas:
|
|
316
|
+
|
|
317
|
+
- **Rules** -- detection patterns for new credential types or vulnerability patterns
|
|
318
|
+
- **Discoverers** -- support for new AI tools (Cursor, Aider, Continue.dev)
|
|
319
|
+
- **Compliance** -- control mappings from additional frameworks
|
|
320
|
+
- **Core** -- false positive improvements, scoring refinements, report enhancements
|
|
321
|
+
|
|
322
|
+
See [docs/contributing.md](docs/contributing.md) for architecture, development setup, and PR guidelines.
|
|
323
|
+
|
|
324
|
+
---
|
|
325
|
+
|
|
326
|
+
## License
|
|
327
|
+
|
|
328
|
+
Apache 2.0. See [LICENSE](LICENSE).
|
|
329
|
+
|
|
330
|
+
---
|
|
331
|
+
|
|
332
|
+
<p align="center">
|
|
333
|
+
<a href="https://humanbound.ai">humanbound.ai</a> ·
|
|
334
|
+
<a href="https://github.com/humanbound/hb-scan">GitHub</a>
|
|
335
|
+
</p>
|
|
336
|
+
|
|
337
|
+
<p align="center">
|
|
338
|
+
<sub>For organisation-wide AI governance, connect hb-scan to the <a href="https://humanbound.ai">Humanbound platform</a>.</sub>
|
|
339
|
+
</p>
|