application-inventory-service 1.6.0__py3-none-any.whl
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.
- ado_mobile_scanner.py +5 -0
- application_inventory_service/__init__.py +1 -0
- application_inventory_service/__main__.py +5 -0
- application_inventory_service-1.6.0.dist-info/METADATA +272 -0
- application_inventory_service-1.6.0.dist-info/RECORD +41 -0
- application_inventory_service-1.6.0.dist-info/WHEEL +5 -0
- application_inventory_service-1.6.0.dist-info/entry_points.txt +12 -0
- application_inventory_service-1.6.0.dist-info/licenses/LICENSE +21 -0
- application_inventory_service-1.6.0.dist-info/top_level.txt +5 -0
- appsec_scan_router/__init__.py +400 -0
- appsec_scan_router/__main__.py +5 -0
- appsec_scan_router/activity.py +63 -0
- appsec_scan_router/auth.py +590 -0
- appsec_scan_router/azure.py +298 -0
- appsec_scan_router/cli.py +370 -0
- appsec_scan_router/constants.py +255 -0
- appsec_scan_router/detection.py +935 -0
- appsec_scan_router/entrypoint.py +28 -0
- appsec_scan_router/github.py +311 -0
- appsec_scan_router/metadata.py +456 -0
- appsec_scan_router/models.py +120 -0
- appsec_scan_router/org_tokens.py +99 -0
- appsec_scan_router/postgres.py +1115 -0
- appsec_scan_router/reports.py +271 -0
- appsec_scan_router/scanner.py +1186 -0
- appsec_scan_router/sdk.py +23 -0
- appsec_scan_router/store_lookup.py +422 -0
- appsec_scan_router/target_filters.py +117 -0
- appsec_scan_router/ui.py +1302 -0
- appsec_scan_router/ui_static/__init__.py +1 -0
- appsec_scan_router/ui_static/app.js +1418 -0
- appsec_scan_router/ui_static/appsec-login-background.png +0 -0
- appsec_scan_router/ui_static/github-mark.svg +3 -0
- appsec_scan_router/ui_static/google-g.svg +6 -0
- appsec_scan_router/ui_static/index.html +509 -0
- appsec_scan_router/ui_static/styles.css +1257 -0
- appsec_scan_router/ui_static/test-user.svg +5 -0
- appsec_scan_router/utils.py +113 -0
- mobile_app_inventory_tracer.py +5 -0
- mobile_scanner/__init__.py +1 -0
- mobile_scanner/__main__.py +5 -0
ado_mobile_scanner.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from appsec_scan_router import *
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: application-inventory-service
|
|
3
|
+
Version: 1.6.0
|
|
4
|
+
Summary: SDK, CLI, UI, and scanner target manifests for application inventory across Azure DevOps and GitHub Enterprise
|
|
5
|
+
Author: Application Inventory Service contributors
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/h0p3sf4ll/application-inventory-service
|
|
8
|
+
Project-URL: Repository, https://github.com/h0p3sf4ll/application-inventory-service
|
|
9
|
+
Project-URL: Issues, https://github.com/h0p3sf4ll/application-inventory-service/issues
|
|
10
|
+
Keywords: appsec,sdk,azure-devops,github-enterprise,mobile,web-applications,microservices,middleware,ai,llm,machine-learning,inventory,semgrep,sonarqube,android,ios,app-store,google-play
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Information Technology
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
22
|
+
Classifier: Topic :: Utilities
|
|
23
|
+
Requires-Python: >=3.10
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
License-File: LICENSE
|
|
26
|
+
Requires-Dist: cryptography>=42.0.0
|
|
27
|
+
Requires-Dist: openpyxl>=3.1.0
|
|
28
|
+
Requires-Dist: psycopg[binary]>=3.2.0
|
|
29
|
+
Requires-Dist: requests>=2.31.0
|
|
30
|
+
Dynamic: license-file
|
|
31
|
+
|
|
32
|
+
# Application Inventory Service
|
|
33
|
+
|
|
34
|
+
Application Inventory Service discovers software assets across Azure DevOps and GitHub Enterprise without cloning repositories. It identifies mobile apps, web apps, API services, microservices, middleware, serverless workloads, infrastructure code, AI-enabled apps, and ML-enabled apps, then emits reports and scanner-ready target manifests.
|
|
35
|
+
|
|
36
|
+
The project is published as `application-inventory-service`. The original `appsec-*`, `ado-mobile-scanner`, and `mobile-app-inventory-tracer` commands remain available as compatibility aliases.
|
|
37
|
+
|
|
38
|
+
## What It Does
|
|
39
|
+
|
|
40
|
+
- Scans one or more Azure DevOps organizations, each with its own PAT.
|
|
41
|
+
- Scans GitHub Enterprise owners and repositories.
|
|
42
|
+
- Pulls Azure DevOps projects and GitHub repositories into the UI for targeted scans.
|
|
43
|
+
- Scans default branches, with production-like fallback branch resolution when no default branch exists.
|
|
44
|
+
- Captures inventory name, version, type, language, mobile identifiers, contributors, last activity, and evidence.
|
|
45
|
+
- Optionally validates detected mobile identifiers against Apple App Store and Google Play.
|
|
46
|
+
- Writes CSV, JSON, XLSX, Semgrep target lists, SonarQube project manifests, and generic scanner target manifests.
|
|
47
|
+
- Streams results into a normalized PostgreSQL schema, scoped by signed-in user when run from the UI.
|
|
48
|
+
|
|
49
|
+
## Documentation
|
|
50
|
+
|
|
51
|
+
- [Application Intent](docs/APP_INTENT.md)
|
|
52
|
+
- [AWS Deployment Guide](docs/AWS_DEPLOYMENT.md)
|
|
53
|
+
- [Architecture](docs/ARCHITECTURE.md)
|
|
54
|
+
- [SBOM Summary](docs/SBOM.md)
|
|
55
|
+
- [CycloneDX SBOM](docs/SBOM.cdx.json)
|
|
56
|
+
|
|
57
|
+
## Install
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
python -m pip install application-inventory-service
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
application-inventory-service --help
|
|
65
|
+
application-inventory-service-ui --help
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
For local development:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
git clone https://github.com/h0p3sf4ll/application-inventory-service.git
|
|
72
|
+
cd application-inventory-service
|
|
73
|
+
python3 -m venv .venv
|
|
74
|
+
source .venv/bin/activate
|
|
75
|
+
python -m pip install -r requirements.txt
|
|
76
|
+
python -m pip install -e .
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Quick Start: UI
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
APPLICATION_INVENTORY_SERVICE_TEST_LOGIN_ENABLED=true \
|
|
83
|
+
application-inventory-service-ui \
|
|
84
|
+
--host 127.0.0.1 \
|
|
85
|
+
--port 48731 \
|
|
86
|
+
--reports-dir reports
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Open `http://127.0.0.1:48731`.
|
|
90
|
+
|
|
91
|
+
Use the test login only for local development. For shared environments, configure GitHub SSO or Google SSO and disable the test login.
|
|
92
|
+
|
|
93
|
+
## Quick Start: Docker
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
docker build -t application-inventory-service .
|
|
97
|
+
mkdir -p reports
|
|
98
|
+
cp .env.example .env
|
|
99
|
+
docker run --rm \
|
|
100
|
+
-p 48731:48731 \
|
|
101
|
+
--env-file .env \
|
|
102
|
+
-v "$PWD/reports:/reports" \
|
|
103
|
+
application-inventory-service \
|
|
104
|
+
ui \
|
|
105
|
+
--host 0.0.0.0 \
|
|
106
|
+
--port 48731 \
|
|
107
|
+
--reports-dir /reports
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## Azure DevOps
|
|
111
|
+
|
|
112
|
+
Scan one organization:
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
export ADO_PAT="your-token"
|
|
116
|
+
|
|
117
|
+
application-inventory-service \
|
|
118
|
+
--provider azure-devops \
|
|
119
|
+
--org FabrikamCloud \
|
|
120
|
+
--out-dir reports
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
Scan selected projects:
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
application-inventory-service \
|
|
127
|
+
--provider azure-devops \
|
|
128
|
+
--org FabrikamCloud \
|
|
129
|
+
--project Go_To_Market \
|
|
130
|
+
--project Payments \
|
|
131
|
+
--out-dir reports
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
Scan multiple organizations with separate PATs:
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
application-inventory-service \
|
|
138
|
+
--ado-org-pat "FabrikamCloud=$FABRIKAM_PAT" \
|
|
139
|
+
--ado-org-pat "ContosoApps=$CONTOSO_PAT" \
|
|
140
|
+
--target-filter "FabrikamCloud=Go_To_Market" \
|
|
141
|
+
--target-filter "ContosoApps=Payments" \
|
|
142
|
+
--out-dir reports
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
## GitHub Enterprise
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
export GITHUB_TOKEN="your-token"
|
|
149
|
+
|
|
150
|
+
application-inventory-service \
|
|
151
|
+
--provider github-enterprise \
|
|
152
|
+
--base-url https://github.fabrikam.example/api/v3 \
|
|
153
|
+
--org FabrikamCloud \
|
|
154
|
+
--repo payments-api \
|
|
155
|
+
--out-dir reports
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
Omit `--repo` to scan all accessible repositories for the owner. Repeat `--repo` for a selected repository set.
|
|
159
|
+
|
|
160
|
+
## PostgreSQL
|
|
161
|
+
|
|
162
|
+
PostgreSQL sync is enabled by default in the UI. For CLI scans:
|
|
163
|
+
|
|
164
|
+
```bash
|
|
165
|
+
export APPLICATION_INVENTORY_POSTGRES_DSN="postgresql://postgres:postgres@localhost:5432/postgres"
|
|
166
|
+
|
|
167
|
+
application-inventory-service \
|
|
168
|
+
--provider azure-devops \
|
|
169
|
+
--org FabrikamCloud \
|
|
170
|
+
--postgres-schema application_inventory \
|
|
171
|
+
--postgres-table application_inventory_assets \
|
|
172
|
+
--out-dir reports
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
Local development database:
|
|
176
|
+
|
|
177
|
+
```bash
|
|
178
|
+
docker run --name application-inventory-postgres \
|
|
179
|
+
-e POSTGRES_USER=postgres \
|
|
180
|
+
-e POSTGRES_PASSWORD=postgres \
|
|
181
|
+
-e POSTGRES_DB=postgres \
|
|
182
|
+
-p 5432:5432 \
|
|
183
|
+
-d postgres:16-alpine
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
## Environment Variables
|
|
187
|
+
|
|
188
|
+
| Variable | Purpose |
|
|
189
|
+
| --- | --- |
|
|
190
|
+
| `APPLICATION_INVENTORY_SERVICE_UI_HOST` | UI bind host |
|
|
191
|
+
| `APPLICATION_INVENTORY_SERVICE_UI_PORT` | UI bind port |
|
|
192
|
+
| `APPLICATION_INVENTORY_SERVICE_REPORTS_DIR` | UI report/state directory |
|
|
193
|
+
| `APPLICATION_INVENTORY_SERVICE_GITHUB_CLIENT_ID` | GitHub OAuth client ID |
|
|
194
|
+
| `APPLICATION_INVENTORY_SERVICE_GITHUB_CLIENT_SECRET` | GitHub OAuth client secret |
|
|
195
|
+
| `APPLICATION_INVENTORY_SERVICE_GOOGLE_CLIENT_ID` | Google OAuth client ID |
|
|
196
|
+
| `APPLICATION_INVENTORY_SERVICE_GOOGLE_CLIENT_SECRET` | Google OAuth client secret |
|
|
197
|
+
| `APPLICATION_INVENTORY_SERVICE_SECRET_KEY` | Fernet key for encrypted token storage |
|
|
198
|
+
| `APPLICATION_INVENTORY_SERVICE_STATE_DIR` | Secure state directory |
|
|
199
|
+
| `APPLICATION_INVENTORY_ADO_ORG_PATS` | JSON or `ORG=PAT` list for Azure DevOps multi-org scans |
|
|
200
|
+
| `APPLICATION_INVENTORY_TARGET_FILTERS` | JSON or repeated `[ORG=]PROJECT_OR_REPO` filters |
|
|
201
|
+
| `APPLICATION_INVENTORY_POSTGRES_DSN` | PostgreSQL DSN |
|
|
202
|
+
| `APPLICATION_INVENTORY_POSTGRES_SCHEMA` | PostgreSQL schema |
|
|
203
|
+
| `APPLICATION_INVENTORY_POSTGRES_TABLE` | Flat compatibility table |
|
|
204
|
+
|
|
205
|
+
Legacy `APPSEC_INVENTORY_*` and `APPSEC_INVENTORY_SERVICE_*` variables remain supported.
|
|
206
|
+
|
|
207
|
+
## Outputs
|
|
208
|
+
|
|
209
|
+
With the default prefix, the service writes:
|
|
210
|
+
|
|
211
|
+
- `application_inventory_service.csv`
|
|
212
|
+
- `application_inventory_service.json`
|
|
213
|
+
- `application_inventory_service.xlsx`
|
|
214
|
+
- `application_inventory_service_scanner_targets.csv`
|
|
215
|
+
- `application_inventory_service_scanner_targets.json`
|
|
216
|
+
- `application_inventory_service_semgrep_targets.txt`
|
|
217
|
+
- `application_inventory_service_sonarqube_projects.csv`
|
|
218
|
+
|
|
219
|
+
The scanner target files are intended for downstream orchestration with Semgrep, SonarQube, SCA tools, custom security scanners, or pipeline automation.
|
|
220
|
+
|
|
221
|
+
## SDK
|
|
222
|
+
|
|
223
|
+
```python
|
|
224
|
+
from pathlib import Path
|
|
225
|
+
|
|
226
|
+
from application_inventory_service import ScanConfig, SourceTargetFilter, scan_to_reports
|
|
227
|
+
|
|
228
|
+
config = ScanConfig(
|
|
229
|
+
provider="github-enterprise",
|
|
230
|
+
base_url="https://github.fabrikam.example/api/v3",
|
|
231
|
+
org="FabrikamCloud",
|
|
232
|
+
pat="your-token",
|
|
233
|
+
project=None,
|
|
234
|
+
target_filters=(SourceTargetFilter("", "payments-api"),),
|
|
235
|
+
out_dir=Path("reports"),
|
|
236
|
+
out_prefix="application_inventory_service",
|
|
237
|
+
max_workers=8,
|
|
238
|
+
branch_workers=16,
|
|
239
|
+
content_workers=16,
|
|
240
|
+
max_commits_per_repo=0,
|
|
241
|
+
timeout_seconds=30,
|
|
242
|
+
min_confidence="medium",
|
|
243
|
+
)
|
|
244
|
+
|
|
245
|
+
results, csv_path, json_path, xlsx_path = scan_to_reports(config)
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
## Release
|
|
249
|
+
|
|
250
|
+
Build and validate:
|
|
251
|
+
|
|
252
|
+
```bash
|
|
253
|
+
python -m unittest discover -s tests
|
|
254
|
+
python -m build
|
|
255
|
+
python -m twine check dist/*
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
Publish with the `Publish` GitHub Actions workflow. The workflow uses the `pypi` environment and supports two release paths:
|
|
259
|
+
|
|
260
|
+
- Preferred: configure PyPI Trusted Publishing for repository `h0p3sf4ll/application-inventory-service`, workflow `.github/workflows/publish.yml`, environment `pypi`.
|
|
261
|
+
- Fallback: add a GitHub Actions secret named `PYPI_API_TOKEN` with a PyPI API token.
|
|
262
|
+
|
|
263
|
+
## Security Notes
|
|
264
|
+
|
|
265
|
+
- Use read-only source provider tokens.
|
|
266
|
+
- Store shared deployment secrets in AWS Secrets Manager, GitHub Actions secrets, or another approved secret manager.
|
|
267
|
+
- Do not commit generated reports if they contain internal repository names, URLs, identifiers, or contributor emails.
|
|
268
|
+
- The service does not clone repositories; it reads repository trees and selected manifest/configuration files through provider APIs.
|
|
269
|
+
|
|
270
|
+
## License
|
|
271
|
+
|
|
272
|
+
MIT. See [LICENSE](LICENSE).
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
ado_mobile_scanner.py,sha256=1RwiZlcxlyRZsVFkinuqYoqe0CRQrgNC-QBjY_T3uDc,91
|
|
2
|
+
mobile_app_inventory_tracer.py,sha256=1RwiZlcxlyRZsVFkinuqYoqe0CRQrgNC-QBjY_T3uDc,91
|
|
3
|
+
application_inventory_service/__init__.py,sha256=QavCijPQffyOWJ8nPo-zC-okRm1cyqELBdl7I8WpMVc,33
|
|
4
|
+
application_inventory_service/__main__.py,sha256=wMIYWJ_BOtX85WNsYDA_NfKtXVBwzNn3TP9eUiYN5SA,98
|
|
5
|
+
application_inventory_service-1.6.0.dist-info/licenses/LICENSE,sha256=UTa6aTNT6-wcTUb-is0ZLUmXBlYnNDtJNPSBkaXnD_0,1094
|
|
6
|
+
appsec_scan_router/__init__.py,sha256=4Oix5QbRVA9K-iC6Rw2spXxCa8c0EtP9YHmsLI6YWwg,10613
|
|
7
|
+
appsec_scan_router/__main__.py,sha256=PSQ4rpL0dG6f-qH4N7H-gD9igQkdHzH4yVZDcW8lfZo,80
|
|
8
|
+
appsec_scan_router/activity.py,sha256=gn561tHJrcf2xW-JecYZsWx9Y6DFCcxDtCfsVJyGzfo,2172
|
|
9
|
+
appsec_scan_router/auth.py,sha256=x0iAW_Uc2mxWi5g8P2ylSM11AkEd37fvRuKXQk70k1g,22948
|
|
10
|
+
appsec_scan_router/azure.py,sha256=1f3YH9AbPyYqLY3dGfSjy4ywG8etlUJn5_r9wcOgwZU,10749
|
|
11
|
+
appsec_scan_router/cli.py,sha256=7ws-UmaCCaU25kn5w9cdCKjlm_Yk58hSLjcoDb6Iys8,14848
|
|
12
|
+
appsec_scan_router/constants.py,sha256=xSMSfSHiIzlOGVQz-5Q71kYWJnz9W3xjlRPuLqu-UeY,6138
|
|
13
|
+
appsec_scan_router/detection.py,sha256=jwS1Y7Lw19EWEFP0uP2-NVTuNz_K8CjKjLqPKLbLPBA,39083
|
|
14
|
+
appsec_scan_router/entrypoint.py,sha256=tFiK4vMF4Zi7so0tnRSN1CERbuZ9AsYBomiSe0tYN-0,849
|
|
15
|
+
appsec_scan_router/github.py,sha256=J2bHaYX9V3B08ccTC9ubNMqy9rs4FQLJ7gm54yAlj58,12208
|
|
16
|
+
appsec_scan_router/metadata.py,sha256=um65V9EzeX90_89f3Q_Rt8venfu5mnn5YGgShs3Uz1A,16877
|
|
17
|
+
appsec_scan_router/models.py,sha256=62XpGQ9r3qrjdWqk0Up2iUODXXcyc6OiAKAic9rak-c,2747
|
|
18
|
+
appsec_scan_router/org_tokens.py,sha256=NZ8AFOQHcr8OsBGkdZzKi6tRO0s-pVJgT1jNdeR9WDk,3683
|
|
19
|
+
appsec_scan_router/postgres.py,sha256=RDsWn9pP4szOQB39P_ta_PFSpq1CI-IPkbj8EQ7Q8lY,46398
|
|
20
|
+
appsec_scan_router/reports.py,sha256=cxuFdx-8MX-uah3Gbr8lO_gWR9qfhdPzpTT3Qyfn5tQ,10823
|
|
21
|
+
appsec_scan_router/scanner.py,sha256=-t43sdTCFFg1SXAB885wbAvxsBl6f8IKQCt7oG3-WAE,41607
|
|
22
|
+
appsec_scan_router/sdk.py,sha256=h9HLwl5SUbr4628yrczA3btF1l0rfEDN0q3C8wZCVN4,699
|
|
23
|
+
appsec_scan_router/store_lookup.py,sha256=zfI4t1yt4YsVUyk47d-4BWKwpFi2RJjFJ3rLMIN9bNA,16029
|
|
24
|
+
appsec_scan_router/target_filters.py,sha256=NGdocf94R2vnKVXb-07jEF-cRTyvthtvYze7QCmmam0,4836
|
|
25
|
+
appsec_scan_router/ui.py,sha256=KKCmHK2mTOI4FCanMFHvD4UA7UQwhzFY0wJ4jYNFdiQ,51962
|
|
26
|
+
appsec_scan_router/utils.py,sha256=FxDxn8J48RjGxUMgEJWChlnZZipq79zA80JP3IcmJZM,3310
|
|
27
|
+
appsec_scan_router/ui_static/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
28
|
+
appsec_scan_router/ui_static/app.js,sha256=SHIDZ7fnF8jlCLkojYd_53k4MaBdnLk-4eTfMaJnpOI,47356
|
|
29
|
+
appsec_scan_router/ui_static/appsec-login-background.png,sha256=or17dT_DxGxHX7_CC6FQd9rwTUhF8OPEROoFLkjSGsA,1799825
|
|
30
|
+
appsec_scan_router/ui_static/github-mark.svg,sha256=JfWObVv23TK2Dsi1xgbra3c2yjs_8RKJExPJcY12ufc,705
|
|
31
|
+
appsec_scan_router/ui_static/google-g.svg,sha256=TFQbcEHXTWf81vjZPCSdNT_pqyKa3VUSWGfA8YGjhVM,714
|
|
32
|
+
appsec_scan_router/ui_static/index.html,sha256=WeH0VhmuYnUXPK0vM83T4s1UQ1a3WcOys7QEGoJXrLg,22380
|
|
33
|
+
appsec_scan_router/ui_static/styles.css,sha256=m0nieuyeURZZdW7l-Q2e7C2zqUCzaRgIMfpBEqY9iLE,20929
|
|
34
|
+
appsec_scan_router/ui_static/test-user.svg,sha256=Jq_Vu32kvAZAk3wqcaH5-OX2lRIswV4TXKnZOAq8KZg,295
|
|
35
|
+
mobile_scanner/__init__.py,sha256=QavCijPQffyOWJ8nPo-zC-okRm1cyqELBdl7I8WpMVc,33
|
|
36
|
+
mobile_scanner/__main__.py,sha256=wMIYWJ_BOtX85WNsYDA_NfKtXVBwzNn3TP9eUiYN5SA,98
|
|
37
|
+
application_inventory_service-1.6.0.dist-info/METADATA,sha256=gWTG7VPWFnN35A9NtSt8TDrLKPzyLtR13G__zTZt_Jw,9266
|
|
38
|
+
application_inventory_service-1.6.0.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
39
|
+
application_inventory_service-1.6.0.dist-info/entry_points.txt,sha256=-mzY116LbC-vbKVknwWxrj9ORycG6J2anh7Zfpub280,674
|
|
40
|
+
application_inventory_service-1.6.0.dist-info/top_level.txt,sha256=oTIOTMeV5JX8SXNQwmS4Q2jT4j306AgcuV4RmgW0L9A,111
|
|
41
|
+
application_inventory_service-1.6.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
ado-mobile-scanner = appsec_scan_router.cli:main
|
|
3
|
+
application-inventory-service = appsec_scan_router.cli:main
|
|
4
|
+
application-inventory-service-container = appsec_scan_router.entrypoint:main
|
|
5
|
+
application-inventory-service-ui = appsec_scan_router.ui:main
|
|
6
|
+
appsec-inventory-service = appsec_scan_router.cli:main
|
|
7
|
+
appsec-inventory-service-container = appsec_scan_router.entrypoint:main
|
|
8
|
+
appsec-inventory-service-ui = appsec_scan_router.ui:main
|
|
9
|
+
appsec-scan-router = appsec_scan_router.cli:main
|
|
10
|
+
appsec-scan-router-container = appsec_scan_router.entrypoint:main
|
|
11
|
+
appsec-scan-router-ui = appsec_scan_router.ui:main
|
|
12
|
+
mobile-app-inventory-tracer = appsec_scan_router.cli:main
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 AppSec Inventory Service contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|