├── .circleci └── config.yml ├── .dockerignore ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── black.yml ├── .gitignore ├── .isort.cfg ├── .pylintrc ├── .vscode └── launch.json ├── CHANGELOG.md ├── CONTRIBUTING.rst ├── DEVELOPING.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── anchore_engine ├── __init__.py ├── analyzers │ ├── __init__.py │ ├── abstract.py │ ├── binary.py │ ├── hints.py │ ├── malware.py │ ├── manager.py │ ├── modules │ │ ├── 01_analyzer_meta.py │ │ ├── 02_layers.py │ │ ├── 13_retrieve_files.py │ │ ├── 13_secret_content_search.py │ │ ├── 20_file_list.py │ │ ├── 30_file_checksums.py │ │ ├── 31_file_package_verify.py │ │ ├── 32_golang_packages.py │ │ ├── 40_file_suids.py │ │ └── 50_malware_scan.py │ ├── syft │ │ ├── __init__.py │ │ ├── adapters.py │ │ └── handlers │ │ │ ├── __init__.py │ │ │ ├── alpine.py │ │ │ ├── common.py │ │ │ ├── debian.py │ │ │ ├── gem.py │ │ │ ├── golang.py │ │ │ ├── java.py │ │ │ ├── npm.py │ │ │ ├── python.py │ │ │ └── rpm.py │ └── utils.py ├── apis │ ├── __init__.py │ ├── authentication.py │ ├── authorization.py │ ├── common.py │ ├── context.py │ ├── exceptions.py │ ├── oauth.py │ ├── serialization.py │ └── ssl.py ├── auth │ ├── __init__.py │ ├── aws_ecr.py │ ├── common.py │ └── oauth.py ├── clients │ ├── __init__.py │ ├── docker_registry.py │ ├── grype_wrapper.py │ ├── localanchore_standalone.py │ ├── services │ │ ├── __init__.py │ │ ├── catalog.py │ │ ├── common.py │ │ ├── http.py │ │ ├── internal.py │ │ ├── policy_engine.py │ │ └── simplequeue.py │ ├── skopeo_wrapper.py │ └── syft_wrapper.py ├── common │ ├── __init__.py │ ├── errors.py │ ├── helpers.py │ ├── images.py │ ├── models │ │ ├── __init__.py │ │ ├── policy_engine.py │ │ └── schemas.py │ └── pagination.py ├── conf │ ├── add_image.json.example │ ├── add_registry.json.example │ ├── analyzer_config.yaml │ ├── bundles │ │ └── anchore_default_bundle.json │ ├── clamav │ │ └── freshclam.conf │ ├── default_yosai_settings.yaml │ └── kubernetes_image_policy_webhook_request.json.example ├── configuration │ ├── __init__.py │ └── localconfig.py ├── db │ ├── __init__.py │ ├── db_account_users.py │ ├── db_accounts.py │ ├── db_anchore.py │ ├── db_archived_images.py │ ├── db_archivedocument.py │ ├── db_archivemetadata.py │ ├── db_catalog_image.py │ ├── db_catalog_image_docker.py │ ├── db_events.py │ ├── db_grype_db_feed_metadata.py │ ├── db_locks.py │ ├── db_objectstorage.py │ ├── db_policybundle.py │ ├── db_policyeval.py │ ├── db_queue.py │ ├── db_queues.py │ ├── db_registries.py │ ├── db_services.py │ ├── db_subscriptions.py │ ├── db_tasks.py │ ├── entities │ │ ├── __init__.py │ │ ├── catalog.py │ │ ├── common.py │ │ ├── exceptions.py │ │ ├── identity.py │ │ ├── policy_engine.py │ │ ├── tasks.py │ │ └── upgrade.py │ └── legacy_db_users.py ├── decorators.py ├── monitors.py ├── plugins │ ├── __init__.py │ └── authorization │ │ ├── __init__.py │ │ ├── client.py │ │ └── swagger │ │ └── swagger.yaml ├── service.py ├── services │ ├── __init__.py │ ├── analyzer │ │ ├── __init__.py │ │ ├── analysis.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── controllers │ │ │ │ ├── __init__.py │ │ │ │ └── default_controller.py │ │ ├── config.py │ │ ├── errors.py │ │ ├── imports.py │ │ ├── layer_cache.py │ │ ├── service.py │ │ ├── swagger │ │ │ └── swagger.yaml │ │ ├── tasks.py │ │ ├── utils.py │ │ └── watchers │ │ │ ├── __init__.py │ │ │ └── analysis.py │ ├── apiext │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── controllers │ │ │ │ ├── __init__.py │ │ │ │ ├── accounts.py │ │ │ │ ├── archive.py │ │ │ │ ├── events.py │ │ │ │ ├── image_imports.py │ │ │ │ ├── images.py │ │ │ │ ├── oauth.py │ │ │ │ ├── policies.py │ │ │ │ ├── query.py │ │ │ │ ├── registries.py │ │ │ │ ├── subscriptions.py │ │ │ │ ├── system.py │ │ │ │ ├── user.py │ │ │ │ └── utils.py │ │ │ └── helpers │ │ │ │ ├── __init__.py │ │ │ │ └── image_content_response.py │ │ └── swagger │ │ │ └── swagger.yaml │ ├── catalog │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── controllers │ │ │ │ ├── __init__.py │ │ │ │ ├── archives.py │ │ │ │ ├── data_archive.py │ │ │ │ ├── default_controller.py │ │ │ │ ├── imports.py │ │ │ │ ├── objects.py │ │ │ │ ├── policies.py │ │ │ │ └── policy_evaluations.py │ │ ├── archiver.py │ │ ├── catalog_impl.py │ │ ├── exceptions.py │ │ ├── image_content │ │ │ ├── __init__.py │ │ │ └── get_image_content.py │ │ ├── importer.py │ │ ├── service.py │ │ ├── swagger │ │ │ └── swagger.yaml │ │ └── utils.py │ ├── policy_engine │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── controllers │ │ │ │ ├── __init__.py │ │ │ │ ├── distro_mappings.py │ │ │ │ ├── feeds.py │ │ │ │ └── synchronous_operations.py │ │ │ └── util.py │ │ ├── engine │ │ │ ├── __init__.py │ │ │ ├── exc.py │ │ │ ├── feeds │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── config.py │ │ │ │ ├── db.py │ │ │ │ ├── download.py │ │ │ │ ├── feeds.py │ │ │ │ ├── grypedb_sync.py │ │ │ │ ├── mappers.py │ │ │ │ ├── schemas.py │ │ │ │ ├── storage.py │ │ │ │ ├── sync.py │ │ │ │ └── sync_utils.py │ │ │ ├── loaders.py │ │ │ ├── policy │ │ │ │ ├── __init__.py │ │ │ │ ├── bundles.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── formatting.py │ │ │ │ ├── gate.py │ │ │ │ ├── gate_util_provider.py │ │ │ │ ├── gates │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── always.py │ │ │ │ │ ├── deprecated │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── dockerfile.py │ │ │ │ │ ├── eol │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── files.py │ │ │ │ │ ├── gems.py │ │ │ │ │ ├── image_metadata.py │ │ │ │ │ ├── licenses.py │ │ │ │ │ ├── malware.py │ │ │ │ │ ├── npms.py │ │ │ │ │ ├── packages.py │ │ │ │ │ ├── passwd_file.py │ │ │ │ │ ├── retrieved_files.py │ │ │ │ │ ├── secrets.py │ │ │ │ │ ├── util.py │ │ │ │ │ └── vulnerabilities.py │ │ │ │ └── params.py │ │ │ ├── tasks.py │ │ │ ├── vulnerabilities.py │ │ │ └── vulns │ │ │ │ ├── __init__.py │ │ │ │ ├── cpe_matchers.py │ │ │ │ ├── cpes.py │ │ │ │ ├── db.py │ │ │ │ ├── dedup.py │ │ │ │ ├── feed_display_mapper.py │ │ │ │ ├── mappers.py │ │ │ │ ├── providers.py │ │ │ │ ├── scanners.py │ │ │ │ ├── stores.py │ │ │ │ └── utils.py │ │ └── swagger │ │ │ ├── client_gen_config.json │ │ │ ├── client_gen_config_py3.json │ │ │ ├── server_gen_config.json │ │ │ ├── server_gen_config_py3.json │ │ │ └── swagger.yaml │ └── simplequeue │ │ ├── __init__.py │ │ ├── api │ │ ├── __init__.py │ │ └── controllers │ │ │ ├── __init__.py │ │ │ └── default_controller.py │ │ └── swagger │ │ └── swagger.yaml ├── subsys │ ├── __init__.py │ ├── archive.py │ ├── auth │ │ ├── __init__.py │ │ ├── realms.py │ │ ├── stores │ │ │ ├── __init__.py │ │ │ ├── basic.py │ │ │ └── verifier.py │ │ └── util │ │ │ ├── __init__.py │ │ │ └── caches.py │ ├── caching.py │ ├── events │ │ ├── __init__.py │ │ ├── base.py │ │ ├── types.py │ │ └── util.py │ ├── identities.py │ ├── locking.py │ ├── logger.py │ ├── metrics.py │ ├── notifications.py │ ├── object_store │ │ ├── __init__.py │ │ ├── config.py │ │ ├── driver_utils.py │ │ ├── drivers │ │ │ ├── __init__.py │ │ │ ├── filesystem.py │ │ │ ├── interface.py │ │ │ ├── rdbms.py │ │ │ ├── s3.py │ │ │ └── swift.py │ │ ├── exc.py │ │ ├── manager.py │ │ ├── migration.py │ │ └── operations.py │ ├── servicestatus.py │ ├── simplequeue.py │ ├── taskstate.py │ └── twistd_logger.py ├── twisted.py ├── util │ ├── __init__.py │ ├── apk.py │ ├── cpe_generators.py │ ├── deb.py │ ├── docker.py │ ├── dockerfile.py │ ├── java.py │ ├── langpack.py │ ├── matcher.py │ ├── maven.py │ ├── packages.py │ ├── rpm.py │ ├── time.py │ └── users.py ├── utils.py ├── version.py └── watcher.py ├── anchore_manager ├── __init__.py ├── cli │ ├── __init__.py │ ├── analyzers.py │ ├── db.py │ ├── objectstorage.py │ └── service.py ├── util │ ├── __init__.py │ ├── config.py │ ├── db.py │ ├── logging.py │ └── proc.py └── version.py ├── conf └── default_config.yaml ├── dev-tools ├── README.md ├── requirements-dev.txt └── watchers.xml ├── docker-compose-dev.yaml ├── docker-entrypoint.sh ├── pytest.ini ├── requirements-test.txt ├── requirements.txt ├── scripts ├── api_spec_viewer.sh ├── ci │ ├── Dockerfile.functional │ ├── build │ ├── config │ │ ├── base-values.yaml │ │ └── kind-config.yaml │ ├── container-tests.yaml │ ├── docker-compose-ci.yaml │ ├── lint │ ├── prep-local-docker-registry-credentials │ ├── push-rc-image │ ├── setup-local-testing-cluster │ ├── test-functional │ ├── test-integration │ └── thank-you.png ├── data_generators │ ├── generate_gem_records.py │ └── generate_npm_records.py ├── docker-compose │ ├── anchore-prometheus.yml │ └── anchore-swaggerui-nginx.conf ├── tests │ ├── aefailtest.py │ ├── aetest.py │ ├── image_import │ │ ├── nginx_image_config.json │ │ ├── nginx_latest_packages.json │ │ ├── nginx_manifest.json │ │ ├── nginx_manifest_list.json │ │ ├── nginx_skopeo_inspect.json │ │ ├── test_import.py │ │ └── test_import_dockerfile │ ├── test_with_deps.sh │ └── upgrade_test.py └── tools │ ├── direct_imports.sh │ ├── gen_changelog.py │ └── reporting │ ├── README.md │ └── test_coverage_priority.py ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── data │ ├── bundle-large_whitelist.json │ ├── certs │ │ ├── certificate.crt │ │ ├── private.pem │ │ └── public.pem │ ├── distros.txt │ ├── feeds_repo │ │ ├── metadata.json │ │ └── vulnerabilities │ │ │ ├── alpine:3.7 │ │ │ ├── 0 │ │ │ └── 1 │ │ │ └── alpine:3.8 │ │ │ ├── 0 │ │ │ └── 1 │ ├── test_data_env │ │ ├── bundles │ │ │ ├── anchore_default_bundle.json │ │ │ ├── bad_bundle.json │ │ │ ├── bad_policy_id_bundle.json │ │ │ ├── empty.json │ │ │ ├── multi_default.json │ │ │ ├── multi_policy.json │ │ │ └── trivial_bundle.json │ │ ├── feeds │ │ │ ├── nvdv2 │ │ │ │ └── cves │ │ │ │ │ └── 2019-08-14T18:21-07:00.json │ │ │ ├── packages │ │ │ │ ├── gem │ │ │ │ │ ├── 2017-08-03T04:36:05.823341.json │ │ │ │ │ ├── 2017-08-10T04:51:23.686928.json │ │ │ │ │ └── 2017-08-17T04:50:24.385009.json │ │ │ │ └── npm │ │ │ │ │ ├── 2017-08-20T04:12:17.236253.json │ │ │ │ │ ├── 2017-08-21T04:10:15.759804.json │ │ │ │ │ ├── 2017-08-22T04:28:06.258454.json │ │ │ │ │ ├── 2017-08-22T04:28:06.330269.json │ │ │ │ │ ├── 2017-08-23T04:27:05.948554.json │ │ │ │ │ └── 2017-08-23T04:27:06.036469.json │ │ │ ├── vulndb │ │ │ │ └── vulnerabilities │ │ │ │ │ └── 2019-08-14T18:21-07:00.json │ │ │ └── vulnerabilities │ │ │ │ ├── alpine:3.6 │ │ │ │ ├── 2017-06-05T09:09:12.354805.json │ │ │ │ └── 2017-08-22T20:09:35.855436.json │ │ │ │ ├── centos:7 │ │ │ │ ├── 2017-05-08T08:09:00.358041.json │ │ │ │ ├── 2017-05-09T12:09:00.651897.json │ │ │ │ ├── 2017-05-09T20:09:00.766937.json │ │ │ │ ├── 2017-05-12T12:09:00.846718.json │ │ │ │ ├── 2017-05-22T04:09:02.873514.json │ │ │ │ ├── 2017-05-22T06:09:05.876218.json │ │ │ │ ├── 2017-05-22T10:09:07.442126.json │ │ │ │ ├── 2017-05-22T13:09:03.195797.json │ │ │ │ ├── 2017-05-25T15:09:07.164873.json │ │ │ │ ├── 2017-05-25T17:09:11.159290.json │ │ │ │ ├── 2017-05-30T10:09:08.027755.json │ │ │ │ ├── 2017-05-30T21:09:10.056489.json │ │ │ │ ├── 2017-06-13T10:09:13.395865.json │ │ │ │ ├── 2017-06-14T10:09:13.324399.json │ │ │ │ ├── 2017-06-19T21:09:19.354401.json │ │ │ │ ├── 2017-06-21T06:09:16.440297.json │ │ │ │ ├── 2017-06-22T22:09:19.785206.json │ │ │ │ ├── 2017-06-27T08:09:39.549092.json │ │ │ │ ├── 2017-06-28T07:09:21.408316.json │ │ │ │ ├── 2017-06-28T18:09:20.437681.json │ │ │ │ ├── 2017-07-05T11:09:30.416362.json │ │ │ │ ├── 2017-07-05T13:09:25.504013.json │ │ │ │ ├── 2017-07-21T02:09:32.769329.json │ │ │ │ ├── 2017-07-27T09:09:36.263213.json │ │ │ │ ├── 2017-08-01T10:09:41.444336.json │ │ │ │ ├── 2017-08-01T13:09:43.700949.json │ │ │ │ ├── 2017-08-01T17:09:37.889836.json │ │ │ │ ├── 2017-08-07T12:09:41.181020.json │ │ │ │ ├── 2017-08-07T19:09:41.912095.json │ │ │ │ ├── 2017-08-08T23:09:44.545405.json │ │ │ │ ├── 2017-08-10T19:09:45.591791.json │ │ │ │ ├── 2017-08-15T06:09:32.487529.json │ │ │ │ ├── 2017-08-15T13:09:32.187204.json │ │ │ │ ├── 2017-08-15T20:09:34.013038.json │ │ │ │ ├── 2017-08-15T23:09:33.040242.json │ │ │ │ ├── 2017-08-17T00:09:40.302790.json │ │ │ │ ├── 2017-08-17T05:09:38.641672.json │ │ │ │ ├── 2017-08-17T15:09:32.889086.json │ │ │ │ └── 2017-08-21T08:09:34.786917.json │ │ │ │ ├── debian:8 │ │ │ │ └── 2018-01-01T00:01:00.123455.json │ │ │ │ ├── debian:9 │ │ │ │ ├── 2017-08-20T06:05:37.349037.json │ │ │ │ ├── 2017-08-20T13:05:39.559739.json │ │ │ │ ├── 2017-08-20T23:05:36.559938.json │ │ │ │ ├── 2017-08-21T06:05:38.185636.json │ │ │ │ ├── 2017-08-21T08:05:38.220261.json │ │ │ │ ├── 2017-08-21T11:05:38.132190.json │ │ │ │ ├── 2017-08-21T13:05:37.756336.json │ │ │ │ ├── 2017-08-21T20:05:37.900795.json │ │ │ │ ├── 2017-08-21T22:05:41.831140.json │ │ │ │ ├── 2017-08-22T01:05:39.407470.json │ │ │ │ ├── 2017-08-22T06:05:37.007351.json │ │ │ │ ├── 2017-08-22T13:05:38.337425.json │ │ │ │ ├── 2017-08-23T05:05:38.414191.json │ │ │ │ ├── 2017-08-23T08:05:39.379743.json │ │ │ │ ├── 2017-08-23T12:05:39.208190.json │ │ │ │ └── 2017-08-23T15:05:37.192862.json │ │ │ │ ├── ol:7 │ │ │ │ ├── 2017-07-01T02:09:00.999299.json │ │ │ │ ├── 2017-07-05T15:09:02.502777.json │ │ │ │ ├── 2017-07-21T05:09:09.617483.json │ │ │ │ ├── 2017-07-27T20:09:20.464345.json │ │ │ │ ├── 2017-07-28T01:09:14.566549.json │ │ │ │ ├── 2017-07-28T06:09:14.913077.json │ │ │ │ ├── 2017-08-08T02:09:21.364150.json │ │ │ │ ├── 2017-08-08T18:09:22.715433.json │ │ │ │ ├── 2017-08-09T17:09:26.289463.json │ │ │ │ ├── 2017-08-09T19:09:22.624535.json │ │ │ │ ├── 2017-08-09T22:09:23.805231.json │ │ │ │ ├── 2017-08-10T21:09:23.740165.json │ │ │ │ ├── 2017-08-11T18:09:22.591521.json │ │ │ │ ├── 2017-08-15T16:09:10.049835.json │ │ │ │ ├── 2017-08-15T20:09:12.752777.json │ │ │ │ ├── 2017-08-16T01:09:13.630023.json │ │ │ │ ├── 2017-08-16T03:09:11.973061.json │ │ │ │ ├── 2017-08-17T03:09:11.444573.json │ │ │ │ ├── 2017-08-17T15:09:11.733915.json │ │ │ │ ├── 2017-08-17T17:09:12.952235.json │ │ │ │ ├── 2017-08-18T17:09:16.523287.json │ │ │ │ └── 2017-08-21T15:09:14.963323.json │ │ │ │ ├── rhel:7 │ │ │ │ ├── 2017-05-08T08:09:00.358041.json │ │ │ │ ├── 2017-05-09T12:09:00.651897.json │ │ │ │ ├── 2017-05-09T20:09:00.766937.json │ │ │ │ ├── 2017-05-12T12:09:00.846718.json │ │ │ │ ├── 2017-05-22T04:09:02.873514.json │ │ │ │ ├── 2017-05-22T06:09:05.876218.json │ │ │ │ ├── 2017-05-22T10:09:07.442126.json │ │ │ │ ├── 2017-05-22T13:09:03.195797.json │ │ │ │ ├── 2017-05-25T15:09:07.164873.json │ │ │ │ ├── 2017-05-25T17:09:11.159290.json │ │ │ │ ├── 2017-05-30T10:09:08.027755.json │ │ │ │ ├── 2017-05-30T21:09:10.056489.json │ │ │ │ ├── 2017-06-13T10:09:13.395865.json │ │ │ │ ├── 2017-06-14T10:09:13.324399.json │ │ │ │ ├── 2017-06-19T21:09:19.354401.json │ │ │ │ ├── 2017-06-21T06:09:16.440297.json │ │ │ │ ├── 2017-06-22T22:09:19.785206.json │ │ │ │ ├── 2017-06-27T08:09:39.549092.json │ │ │ │ ├── 2017-06-28T07:09:21.408316.json │ │ │ │ ├── 2017-06-28T18:09:20.437681.json │ │ │ │ ├── 2017-07-05T11:09:30.416362.json │ │ │ │ ├── 2017-07-05T13:09:25.504013.json │ │ │ │ ├── 2017-07-21T02:09:32.769329.json │ │ │ │ ├── 2017-07-27T09:09:36.263213.json │ │ │ │ ├── 2017-08-01T10:09:41.444336.json │ │ │ │ ├── 2017-08-01T13:09:43.700949.json │ │ │ │ ├── 2017-08-01T17:09:37.889836.json │ │ │ │ ├── 2017-08-07T12:09:41.181020.json │ │ │ │ ├── 2017-08-07T19:09:41.912095.json │ │ │ │ ├── 2017-08-08T23:09:44.545405.json │ │ │ │ ├── 2017-08-10T19:09:45.591791.json │ │ │ │ ├── 2017-08-15T06:09:32.487529.json │ │ │ │ ├── 2017-08-15T13:09:32.187204.json │ │ │ │ ├── 2017-08-15T20:09:34.013038.json │ │ │ │ ├── 2017-08-15T23:09:33.040242.json │ │ │ │ ├── 2017-08-17T00:09:40.302790.json │ │ │ │ ├── 2017-08-17T05:09:38.641672.json │ │ │ │ ├── 2017-08-17T15:09:32.889086.json │ │ │ │ └── 2017-08-21T08:09:34.786917.json │ │ │ │ └── ubuntu:16.10 │ │ │ │ ├── 2017-08-01T22:09:09.909350.json │ │ │ │ ├── 2017-08-03T18:09:08.945194.json │ │ │ │ ├── 2017-08-03T20:09:08.793833.json │ │ │ │ ├── 2017-08-10T21:09:12.571178.json │ │ │ │ ├── 2017-08-10T23:09:12.951083.json │ │ │ │ ├── 2017-08-11T04:09:16.557495.json │ │ │ │ ├── 2017-08-15T09:09:00.405828.json │ │ │ │ ├── 2017-08-15T20:09:01.411550.json │ │ │ │ ├── 2017-08-16T17:09:02.109524.json │ │ │ │ ├── 2017-08-17T15:09:00.586790.json │ │ │ │ ├── 2017-08-19T02:09:01.119306.json │ │ │ │ └── 2017-08-21T15:09:03.579850.json │ │ └── images │ │ │ ├── export_alpine.json │ │ │ ├── export_busybox.json │ │ │ ├── export_centos_7.json │ │ │ ├── export_centos_latest.json │ │ │ ├── export_debian9.json │ │ │ ├── export_node.json │ │ │ ├── export_ol7.json │ │ │ ├── export_rhel.json │ │ │ ├── export_ruby.json │ │ │ ├── export_ubuntu_16_10.json │ │ │ ├── image_export_metadata.json │ │ │ └── sha256:d4f7ac076cf641652722c33b026fccd52933bb5c26aa703d3cef2dd5b022422a.report.json-debian9slim-custom │ └── testing_yosai_settings.yaml ├── fixtures.py ├── functional │ ├── __init__.py │ ├── artifacts │ │ ├── bundle-with-all-rules-2020-08-20.json │ │ └── registry │ │ │ └── .gitignore │ ├── clients │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ ├── analyzer_config.yaml │ │ │ ├── convert-pkg-list.py │ │ │ ├── manifests │ │ │ │ ├── alpine@sha256:e9cec9aec697d8b9d450edd32860ecd363f2f3174c8338beb5f809422d182c63.json │ │ │ │ ├── anchore │ │ │ │ │ ├── test_images@sha256:0be667e0698fb204d2a6eaf42be8bf15db7edaf256c07e40caecbbcdbf6aad52.json │ │ │ │ │ ├── test_images@sha256:1d0df8e380b947e9f76a1082cc550c3634dbbcfeb78e4c4874eeb149f377326d.json │ │ │ │ │ ├── test_images@sha256:65e79fb7397ed96bd84656a664ac9978057930d90b2d5fde5e92a58adbee657c.json │ │ │ │ │ ├── test_images@sha256:8d0e40d8e013bb0cda3d279b5021c473885c079e94010fd2208235d56982486f.json │ │ │ │ │ ├── test_images@sha256:905a2bf5f3adf8ba8f1d4391cfb4a3e6bd671e0b2ec2f488071679a5f578c7d7.json │ │ │ │ │ ├── test_images@sha256:96d136c9cbaf22d73010e3e79e748e7772143fd9a584f8898d2f122cc5da1206.json │ │ │ │ │ ├── test_images@sha256:9f453a37ea62976dd0f6b8ca4da2010cc01c3988f2e8c290044576d936bae710.json │ │ │ │ │ ├── test_images@sha256:bf25131f6f6ba5ca531b2075424bfb25c36cc01f8e83cc3c759c404870a64e38.json │ │ │ │ │ ├── test_images@sha256:bfbc9520743a4601da82c24958e194d55e45b8cab7c5b466f6ac81c90308749f.json │ │ │ │ │ ├── test_images@sha256:cd74be1a65a7c7f07aa9952f622097a6452012fea741fbdade0e763edaa55ba0.json │ │ │ │ │ └── test_images@sha256:d7efe8ef45def7a7aa6571de3cc5857281b1d7dc5477e7e0cbff6ccb2d5f5f8c.json │ │ │ │ ├── busybox@sha256:6e6d13055ed81b7144afaad15150fc137d4f639482beb311aaa097bc57e3cb80.json │ │ │ │ └── centos@sha256:85313b812ad747dd19cf18078795b576cc4ae9cd2ca2ccccd7b5c12722b2effd.json │ │ │ └── standalone.py │ │ └── standalone │ │ │ ├── __init__.py │ │ │ ├── package_list │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ │ ├── __init__.py │ │ │ │ ├── alpine.py │ │ │ │ ├── binary.py │ │ │ │ ├── centos.py │ │ │ │ ├── debian.py │ │ │ │ ├── gems.py │ │ │ │ ├── golang.py │ │ │ │ ├── java.py │ │ │ │ ├── npms.py │ │ │ │ └── pypkgs.py │ │ │ ├── test_alpine.py │ │ │ ├── test_binary.py │ │ │ ├── test_busybox.py │ │ │ ├── test_centos.py │ │ │ ├── test_debian.py │ │ │ ├── test_gems.py │ │ │ ├── test_golang.py │ │ │ ├── test_java.py │ │ │ ├── test_npms.py │ │ │ └── test_python.py │ │ │ ├── test_analyzer_meta.py │ │ │ ├── test_file_checksums.py │ │ │ ├── test_file_list.py │ │ │ ├── test_file_package_verify.py │ │ │ ├── test_file_suids.py │ │ │ ├── test_hints.py │ │ │ ├── test_image_report.py │ │ │ ├── test_layer_info.py │ │ │ ├── test_ownership_overlap.py │ │ │ ├── test_retreive_files.py │ │ │ └── test_secret_content_search.py │ ├── conftest.py │ ├── local.env │ ├── services │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── accounts │ │ │ │ ├── __init__.py │ │ │ │ ├── test_get.py │ │ │ │ └── users │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_delete.py │ │ │ │ │ ├── test_get.py │ │ │ │ │ └── test_post.py │ │ │ ├── archives │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ └── test_get.py │ │ │ ├── conftest.py │ │ │ ├── events │ │ │ │ ├── __init__.py │ │ │ │ └── test_get.py │ │ │ ├── identity │ │ │ │ ├── __init__.py │ │ │ │ ├── test_get.py │ │ │ │ └── test_post.py │ │ │ ├── images │ │ │ │ ├── __init__.py │ │ │ │ ├── by_id │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_get.py │ │ │ │ │ └── test_vulns.py │ │ │ │ ├── test_get.py │ │ │ │ └── test_post.py │ │ │ ├── imports │ │ │ │ ├── __init__.py │ │ │ │ ├── test_import.py │ │ │ │ └── test_import │ │ │ │ │ ├── Dockerfile_lean │ │ │ │ │ └── syft-0.12.2-lean.json │ │ │ ├── policies │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_get.py │ │ │ │ └── test_put.py │ │ │ ├── query │ │ │ │ ├── __init__.py │ │ │ │ ├── test_get.py │ │ │ │ └── test_query_vulnerabilities.py │ │ │ ├── registries │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_get.py │ │ │ │ └── test_put.py │ │ │ ├── repositories │ │ │ │ ├── __init__.py │ │ │ │ └── test_post.py │ │ │ ├── subscriptions │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_get.py │ │ │ │ └── test_put.py │ │ │ ├── summaries │ │ │ │ ├── __init__.py │ │ │ │ └── test_get.py │ │ │ ├── system │ │ │ │ ├── __init__.py │ │ │ │ ├── test_delete.py │ │ │ │ ├── test_get.py │ │ │ │ └── test_post.py │ │ │ ├── test_default_get.py │ │ │ └── test_default_post.py │ │ ├── catalog │ │ │ ├── __init__.py │ │ │ ├── object_tests │ │ │ │ ├── conftest.py │ │ │ │ ├── expected_content │ │ │ │ │ └── test_objects_raw │ │ │ │ │ │ ├── grypedb.tar.gz │ │ │ │ │ │ └── test_text.txt │ │ │ │ └── test_objects_raw.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── conf.py │ │ │ │ └── objects.py │ │ │ │ └── utils.py │ │ ├── policy_engine │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── feeds_data_tests │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── expected_output │ │ │ │ │ └── test_feed_sync │ │ │ │ │ │ ├── data │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── databases │ │ │ │ │ │ │ └── grypedb │ │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ │ └── sha256:7f926429366ced0e47fa1264ece7d614008ccf66d03a2cea98aface4b2c9f5ba.tar.gz │ │ │ │ │ │ │ └── feeds │ │ │ │ │ │ │ ├── github │ │ │ │ │ │ │ ├── github:composer.json │ │ │ │ │ │ │ ├── github:gem.json │ │ │ │ │ │ │ ├── github:java.json │ │ │ │ │ │ │ ├── github:npm.json │ │ │ │ │ │ │ ├── github:nuget.json │ │ │ │ │ │ │ ├── github:python.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── nvdv2 │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ └── nvdv2:cves.json │ │ │ │ │ │ │ └── vulnerabilities │ │ │ │ │ │ │ ├── alpine:3.10.json │ │ │ │ │ │ │ ├── alpine:3.11.json │ │ │ │ │ │ │ ├── alpine:3.12.json │ │ │ │ │ │ │ ├── alpine:3.13.json │ │ │ │ │ │ │ ├── alpine:3.2.json │ │ │ │ │ │ │ ├── alpine:3.3.json │ │ │ │ │ │ │ ├── alpine:3.4.json │ │ │ │ │ │ │ ├── alpine:3.5.json │ │ │ │ │ │ │ ├── alpine:3.6.json │ │ │ │ │ │ │ ├── alpine:3.7.json │ │ │ │ │ │ │ ├── alpine:3.8.json │ │ │ │ │ │ │ ├── alpine:3.9.json │ │ │ │ │ │ │ ├── amzn:2.json │ │ │ │ │ │ │ ├── centos:5.json │ │ │ │ │ │ │ ├── centos:6.json │ │ │ │ │ │ │ ├── centos:7.json │ │ │ │ │ │ │ ├── centos:8.json │ │ │ │ │ │ │ ├── debian:10.json │ │ │ │ │ │ │ ├── debian:11.json │ │ │ │ │ │ │ ├── debian:7.json │ │ │ │ │ │ │ ├── debian:8.json │ │ │ │ │ │ │ ├── debian:9.json │ │ │ │ │ │ │ ├── debian:unstable.json │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── ol:5.json │ │ │ │ │ │ │ ├── ol:6.json │ │ │ │ │ │ │ ├── ol:7.json │ │ │ │ │ │ │ ├── ol:8.json │ │ │ │ │ │ │ ├── rhel:5.json │ │ │ │ │ │ │ ├── rhel:6.json │ │ │ │ │ │ │ ├── rhel:7.json │ │ │ │ │ │ │ ├── rhel:8.json │ │ │ │ │ │ │ ├── ubuntu:12.04.json │ │ │ │ │ │ │ ├── ubuntu:12.10.json │ │ │ │ │ │ │ ├── ubuntu:13.04.json │ │ │ │ │ │ │ ├── ubuntu:14.04.json │ │ │ │ │ │ │ ├── ubuntu:14.10.json │ │ │ │ │ │ │ ├── ubuntu:15.04.json │ │ │ │ │ │ │ ├── ubuntu:15.10.json │ │ │ │ │ │ │ ├── ubuntu:16.04.json │ │ │ │ │ │ │ ├── ubuntu:16.10.json │ │ │ │ │ │ │ ├── ubuntu:17.04.json │ │ │ │ │ │ │ ├── ubuntu:17.10.json │ │ │ │ │ │ │ ├── ubuntu:18.04.json │ │ │ │ │ │ │ ├── ubuntu:18.10.json │ │ │ │ │ │ │ ├── ubuntu:19.04.json │ │ │ │ │ │ │ ├── ubuntu:19.10.json │ │ │ │ │ │ │ └── ubuntu:20.04.json │ │ │ │ │ │ ├── expected_grype_feed_and_group_counts.json │ │ │ │ │ │ └── mock-feeds-nginx.conf │ │ │ │ ├── schema_files │ │ │ │ │ ├── feeds_get.schema.json │ │ │ │ │ └── feeds_sync.schema.json │ │ │ │ └── test_feed_sync.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conf.py │ │ │ │ │ ├── feeds.py │ │ │ │ │ ├── images.py │ │ │ │ │ ├── query_vulnerabilities.py │ │ │ │ │ └── users.py │ │ │ │ └── utils.py │ │ │ └── vulnerability_data_tests │ │ │ │ ├── __init__.py │ │ │ │ ├── analysis_files │ │ │ │ ├── alpine-test.json │ │ │ │ ├── centos-test.json │ │ │ │ └── debian-test.json │ │ │ │ ├── conftest.py │ │ │ │ ├── database_seed_files │ │ │ │ ├── catalog_image.json │ │ │ │ ├── catalog_image_docker.json │ │ │ │ ├── feed_data_cpev2_vulnerabilities.json │ │ │ │ ├── feed_data_nvdv2_vulnerabilities.json │ │ │ │ ├── feed_data_vulnerabilities.json │ │ │ │ ├── feed_data_vulnerabilities_fixed_artifacts.json │ │ │ │ └── feeds.json │ │ │ │ ├── expected_output │ │ │ │ ├── test_query_vulnerabilities │ │ │ │ │ ├── expected_empty_incorrect_version.json │ │ │ │ │ ├── multiple_cves.json │ │ │ │ │ ├── multiple_cves_filter_affected_package.json │ │ │ │ │ ├── multiple_cves_multiple_filters.json │ │ │ │ │ ├── single_cve.json │ │ │ │ │ ├── single_cve_filter_affected_package.json │ │ │ │ │ ├── single_cve_multiple_filters.json │ │ │ │ │ └── single_cve_multiple_filters_2.json │ │ │ │ └── test_vulnerability_scanner │ │ │ │ │ ├── grype │ │ │ │ │ ├── sha256:406413437f26223183d133ccc7186f24c827729e1b21adc7330dd43fcdc030b3.json │ │ │ │ │ ├── sha256:80a31c3ce2e99c3691c27ac3b1753163214494e9b2ca07bfdccf29a5cca2bfbe.json │ │ │ │ │ └── sha256:fe3ca35038008b0eac0fa4e686bd072c9430000ab7d7853001bde5f5b8ccf60c.json │ │ │ │ │ └── legacy │ │ │ │ │ ├── sha256:406413437f26223183d133ccc7186f24c827729e1b21adc7330dd43fcdc030b3.json │ │ │ │ │ ├── sha256:80a31c3ce2e99c3691c27ac3b1753163214494e9b2ca07bfdccf29a5cca2bfbe.json │ │ │ │ │ └── sha256:fe3ca35038008b0eac0fa4e686bd072c9430000ab7d7853001bde5f5b8ccf60c.json │ │ │ │ ├── schema_files │ │ │ │ ├── ingress_image.schema.json │ │ │ │ ├── query_by_vulnerability.schema.json │ │ │ │ └── vulnerability_report.schema.json │ │ │ │ ├── test_query_by_vulnerability.py │ │ │ │ ├── test_query_vulnerabilities.py │ │ │ │ └── test_vulnerability_scanner.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── docker_utils.py │ │ │ └── http_utils.py │ ├── test_accounts.py │ └── test_systemstatus.py ├── integration │ ├── __init__.py │ ├── clients │ │ ├── __init__.py │ │ └── test_anchoreio_feeds.py │ ├── conftest.py │ ├── db │ │ ├── __init__.py │ │ ├── test_FixedArtifact_fix_observed_at.py │ │ ├── test_grype_db_feed_metadata.py │ │ └── upgrade │ │ │ ├── __init__.py │ │ │ └── test_db_upgrade_015_016.py │ ├── deps │ │ ├── docker-compose.yaml │ │ ├── minio_build │ │ │ ├── Dockerfile │ │ │ └── config.json │ │ └── swift_build │ │ │ ├── README │ │ │ └── docker-swift-onlyone │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── files │ │ │ ├── account-server.conf │ │ │ ├── container-server.conf │ │ │ ├── dispersion.conf │ │ │ ├── object-expirer.conf │ │ │ ├── object-server.conf │ │ │ ├── proxy-server.conf │ │ │ ├── rsyncd.conf │ │ │ ├── startmain.sh │ │ │ ├── supervisord.conf │ │ │ └── swift.conf │ │ │ └── swiftrc │ ├── services │ │ ├── __init__.py │ │ ├── catalog │ │ │ └── test_catalog_impl.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ └── test_leases.py │ │ └── policy_engine │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── test_feeds.py │ │ │ ├── c_conversion │ │ │ └── rpm_cmp_test.c │ │ │ ├── conftest.py │ │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── test_distro_mapping.py │ │ │ ├── test_get_feeds.py │ │ │ └── test_models.py │ │ │ ├── engine │ │ │ ├── __init__.py │ │ │ ├── policy │ │ │ │ ├── __init__.py │ │ │ │ └── gates │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conftest.py │ │ │ │ │ ├── test_dockerfile.py │ │ │ │ │ ├── test_failures.py │ │ │ │ │ ├── test_filecontent.py │ │ │ │ │ ├── test_gate_matching.py │ │ │ │ │ ├── test_gems.py │ │ │ │ │ ├── test_imagemetadata.py │ │ │ │ │ ├── test_licenses.py │ │ │ │ │ ├── test_npms.py │ │ │ │ │ ├── test_packages.py │ │ │ │ │ ├── test_passwd_content.py │ │ │ │ │ ├── test_retrieved_files.py │ │ │ │ │ └── test_vulnerabilities.py │ │ │ ├── util │ │ │ │ ├── __init__.py │ │ │ │ └── test_packages.py │ │ │ └── vulns │ │ │ │ └── test_providers.py │ │ │ ├── feeds │ │ │ ├── __init__.py │ │ │ ├── test_download.py │ │ │ ├── test_feeds.py │ │ │ ├── test_mapping.py │ │ │ └── test_sync.py │ │ │ ├── test_bundles.py │ │ │ ├── test_cve_updates.py │ │ │ ├── test_large_whitelists.py │ │ │ ├── test_loaders.py │ │ │ ├── test_namespaces.py │ │ │ ├── test_vulnerabilities.py │ │ │ └── utils.py │ ├── setup_deps.sh │ ├── subsys │ │ ├── __init__.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── stores │ │ │ │ ├── __init__.py │ │ │ │ └── test_basic_store.py │ │ │ └── test_identities.py │ │ ├── object_store │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── migration │ │ │ │ ├── __init__.py │ │ │ │ └── test_migration_tasks.py │ │ │ ├── test_object_store.py │ │ │ └── test_object_store_drivers.py │ │ └── test_simplequeue.py │ └── teardown_deps.sh ├── unit │ ├── __init__.py │ ├── anchore_engine │ │ ├── __init__.py │ │ ├── analyzers │ │ │ ├── __init__.py │ │ │ ├── hints │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_report.json │ │ │ │ ├── mock_hints_files │ │ │ │ │ ├── alpine_hints.json │ │ │ │ │ ├── debian_hints.json │ │ │ │ │ ├── gem_hints.json │ │ │ │ │ ├── java_hints.json │ │ │ │ │ ├── npm_hints.json │ │ │ │ │ ├── python_hints.json │ │ │ │ │ └── rpm_hints.json │ │ │ │ ├── test_apply_hints.py │ │ │ │ └── test_hints_models.py │ │ │ ├── syft │ │ │ │ ├── __init__.py │ │ │ │ ├── handlers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_alpine.py │ │ │ │ │ ├── test_common.py │ │ │ │ │ ├── test_debian.py │ │ │ │ │ ├── test_gem.py │ │ │ │ │ ├── test_java.py │ │ │ │ │ ├── test_npm.py │ │ │ │ │ ├── test_python.py │ │ │ │ │ └── test_rpm.py │ │ │ │ ├── test_syft.py │ │ │ │ └── test_syft │ │ │ │ │ └── test_filter_artifact_by_type.json │ │ │ ├── test_malware_analyzer.py │ │ │ └── test_utils.py │ │ ├── apis │ │ │ ├── __init__.py │ │ │ └── test_oauth.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── test_aws_ecr.py │ │ │ └── test_common.py │ │ ├── clients │ │ │ ├── __init__.py │ │ │ ├── test_grype_wrapper.py │ │ │ ├── test_localanchore_standalone.py │ │ │ └── test_skopeo_wrapper.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ └── test_helpers.py │ │ ├── configuration │ │ │ └── test_localconfig.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── entities │ │ │ │ ├── __init__.py │ │ │ │ └── test_policy_engine.py │ │ │ ├── fixtures │ │ │ │ ├── __init__.py │ │ │ │ └── transformation_data.py │ │ │ └── test_policy_engine.py │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ └── authorization │ │ │ │ ├── __init__.py │ │ │ │ └── test_client_models.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── analyzer │ │ │ │ ├── __init__.py │ │ │ │ ├── test_analysis.py │ │ │ │ └── test_imports.py │ │ │ ├── apiext │ │ │ │ ├── __init__.py │ │ │ │ └── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── controllers │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_utils.py │ │ │ │ │ └── helpers │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_images.py │ │ │ ├── catalog │ │ │ │ ├── __init__.py │ │ │ │ ├── test_archiver.py │ │ │ │ ├── test_catalog_impl.py │ │ │ │ ├── test_fairqueue.py │ │ │ │ ├── test_image_content_getter.py │ │ │ │ ├── test_max_image_size.py │ │ │ │ └── test_utils.py │ │ │ ├── policy_engine │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_models.py │ │ │ │ └── engine │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── feeds │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_config.py │ │ │ │ │ ├── test_download.py │ │ │ │ │ ├── test_download │ │ │ │ │ │ ├── 0.data │ │ │ │ │ │ └── 1.data │ │ │ │ │ ├── test_grypedb_sync.py │ │ │ │ │ ├── test_storage.py │ │ │ │ │ ├── test_sync.py │ │ │ │ │ └── test_sync_utils.py │ │ │ │ │ ├── policy │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conftest.py │ │ │ │ │ ├── gates │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_always.py │ │ │ │ │ │ ├── test_dockerfile.py │ │ │ │ │ │ ├── test_files.py │ │ │ │ │ │ ├── test_gems.py │ │ │ │ │ │ ├── test_image_metadata.py │ │ │ │ │ │ ├── test_licenses.py │ │ │ │ │ │ ├── test_malware.py │ │ │ │ │ │ ├── test_npms.py │ │ │ │ │ │ ├── test_passwd_file.py │ │ │ │ │ │ ├── test_retrieved_files.py │ │ │ │ │ │ ├── test_secrets.py │ │ │ │ │ │ ├── test_vulnerabilities.py │ │ │ │ │ │ └── test_vulnerabilities │ │ │ │ │ │ │ ├── debian_1_non-os_will-fix.json │ │ │ │ │ │ │ ├── debian_1_os_will-fix.json │ │ │ │ │ │ │ ├── debian_1_os_will-fix_fix-available.json │ │ │ │ │ │ │ ├── debian_1_os_will-fix_vendor_cvssv3.json │ │ │ │ │ │ │ └── debian_1_os_wont-fix.json │ │ │ │ │ ├── test_bundles.py │ │ │ │ │ ├── test_gate.py │ │ │ │ │ ├── test_gate_util_provider.py │ │ │ │ │ ├── test_mapping_rules.py │ │ │ │ │ └── test_parameters.py │ │ │ │ │ ├── test_legacy_scanner.py │ │ │ │ │ ├── test_loaders.py │ │ │ │ │ ├── test_vulnerabilities.py │ │ │ │ │ ├── test_vulnerability_matches.py │ │ │ │ │ ├── vulnerabilities │ │ │ │ │ ├── test_cpe_matchers.py │ │ │ │ │ ├── test_cpes.py │ │ │ │ │ └── test_providers.py │ │ │ │ │ └── vulns │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_deduper.py │ │ │ │ │ ├── test_mappers.py │ │ │ │ │ └── test_scanners.py │ │ │ └── test_api_specs.py │ │ ├── subsys │ │ │ ├── __init__.py │ │ │ ├── auth │ │ │ │ ├── __init__.py │ │ │ │ ├── test_oauth.py │ │ │ │ ├── test_permissions.py │ │ │ │ └── test_realms.py │ │ │ ├── events │ │ │ │ └── test_util.py │ │ │ ├── object_store │ │ │ │ ├── __init__.py │ │ │ │ ├── drivers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_filesystem.py │ │ │ │ │ ├── test_rdbms.py │ │ │ │ │ ├── test_s3.py │ │ │ │ │ └── test_swift.py │ │ │ │ └── test_manager.py │ │ │ ├── test_caching.py │ │ │ ├── test_logger.py │ │ │ ├── test_taskstate.py │ │ │ └── test_test_notifications.py │ │ ├── test_simplequeue_leases.py │ │ ├── test_utils.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── test_apk.py │ │ │ ├── test_cpe_generators.py │ │ │ ├── test_deb.py │ │ │ ├── test_docker.py │ │ │ ├── test_java.py │ │ │ ├── test_langpack.py │ │ │ ├── test_manifest_to_digest.py.disabled │ │ │ ├── test_maven.py │ │ │ ├── test_rfc3339.py │ │ │ └── test_rpm.py │ └── data │ │ ├── example_raw_manifests │ │ ├── aerospike-arch.json │ │ ├── aerospike-arch.json.digest │ │ ├── aerospike.json │ │ ├── aerospike.json.digest │ │ ├── alpine-arch.json │ │ ├── alpine-arch.json.digest │ │ ├── alpine.json │ │ ├── alpine.json.digest │ │ ├── arangodb-arch.json │ │ ├── arangodb-arch.json.digest │ │ ├── arangodb.json │ │ ├── arangodb.json.digest │ │ ├── backdrop-arch.json │ │ ├── backdrop-arch.json.digest │ │ ├── backdrop.json │ │ ├── backdrop.json.digest │ │ ├── bonita-arch.json │ │ ├── bonita-arch.json.digest │ │ ├── bonita.json │ │ ├── bonita.json.digest │ │ ├── buildpack-deps-arch.json │ │ ├── buildpack-deps-arch.json.digest │ │ ├── buildpack-deps.json │ │ ├── buildpack-deps.json.digest │ │ ├── busybox-arch.json │ │ ├── busybox-arch.json.digest │ │ ├── busybox.json │ │ ├── busybox.json.digest │ │ ├── cassandra-arch.json │ │ ├── cassandra-arch.json.digest │ │ ├── cassandra.json │ │ ├── cassandra.json.digest │ │ ├── celery.json │ │ ├── celery.json.digest │ │ ├── centos-arch.json │ │ ├── centos-arch.json.digest │ │ ├── centos.json │ │ ├── centos.json.digest │ │ ├── chronograf-arch.json │ │ ├── chronograf-arch.json.digest │ │ ├── chronograf.json │ │ ├── chronograf.json.digest │ │ ├── cirros-arch.json │ │ ├── cirros-arch.json.digest │ │ ├── cirros.json │ │ ├── cirros.json.digest │ │ ├── clojure-arch.json │ │ ├── clojure-arch.json.digest │ │ ├── clojure.json │ │ ├── clojure.json.digest │ │ ├── cloudfleet_nginx.json │ │ ├── cloudfleet_nginx.json.digest │ │ ├── consul-arch.json │ │ ├── consul-arch.json.digest │ │ ├── consul.json │ │ ├── consul.json.digest │ │ ├── couchbase-arch.json │ │ ├── couchbase-arch.json.digest │ │ ├── couchbase.json │ │ ├── couchbase.json.digest │ │ ├── couchdb-arch.json │ │ ├── couchdb-arch.json.digest │ │ ├── couchdb.json │ │ ├── couchdb.json.digest │ │ ├── crate-arch.json │ │ ├── crate-arch.json.digest │ │ ├── crate.json │ │ ├── crate.json.digest │ │ ├── crux-arch.json │ │ ├── crux-arch.json.digest │ │ ├── crux.json │ │ ├── crux.json.digest │ │ ├── debian-arch.json │ │ ├── debian-arch.json.digest │ │ ├── debian.json │ │ ├── debian.json.digest │ │ ├── django.json │ │ ├── django.json.digest │ │ ├── dnurmi_testrepo.json │ │ ├── dnurmi_testrepo.json.digest │ │ ├── docker-arch.json │ │ ├── docker-arch.json.digest │ │ ├── docker.json │ │ ├── docker.json.digest │ │ ├── drupal-arch.json │ │ ├── drupal-arch.json.digest │ │ ├── drupal.json │ │ ├── drupal.json.digest │ │ ├── elixir-arch.json │ │ ├── elixir-arch.json.digest │ │ ├── elixir.json │ │ ├── elixir.json.digest │ │ ├── erlang-arch.json │ │ ├── erlang-arch.json.digest │ │ ├── erlang.json │ │ ├── erlang.json.digest │ │ ├── fedora-arch.json │ │ ├── fedora-arch.json.digest │ │ ├── fedora.json │ │ ├── fedora.json.digest │ │ ├── fishdaemon_nginx.json │ │ ├── fishdaemon_nginx.json.digest │ │ ├── gazebo-arch.json │ │ ├── gazebo-arch.json.digest │ │ ├── gazebo.json │ │ ├── gazebo.json.digest │ │ ├── gcc-arch.json │ │ ├── gcc-arch.json.digest │ │ ├── gcc.json │ │ ├── gcc.json.digest │ │ ├── generate_manifests.sh │ │ ├── ghost-arch.json │ │ ├── ghost-arch.json.digest │ │ ├── ghost.json │ │ ├── ghost.json.digest │ │ ├── glassfish.json │ │ ├── glassfish.json.digest │ │ ├── golang-arch.json │ │ ├── golang-arch.json.digest │ │ ├── golang.json │ │ ├── golang.json.digest │ │ ├── haproxy-arch.json │ │ ├── haproxy-arch.json.digest │ │ ├── haproxy.json │ │ ├── haproxy.json.digest │ │ ├── haskell-arch.json │ │ ├── haskell-arch.json.digest │ │ ├── haskell.json │ │ ├── haskell.json.digest │ │ ├── hello-seattle-arch.json │ │ ├── hello-seattle-arch.json.digest │ │ ├── hello-seattle.json │ │ ├── hello-seattle.json.digest │ │ ├── hello-world-arch.json │ │ ├── hello-world-arch.json.digest │ │ ├── hello-world.json │ │ ├── hello-world.json.digest │ │ ├── hipache.json │ │ ├── hipache.json.digest │ │ ├── hola-mundo-arch.json │ │ ├── hola-mundo-arch.json.digest │ │ ├── hola-mundo.json │ │ ├── hola-mundo.json.digest │ │ ├── httpd-arch.json │ │ ├── httpd-arch.json.digest │ │ ├── httpd.json │ │ ├── httpd.json.digest │ │ ├── hylang-arch.json │ │ ├── hylang-arch.json.digest │ │ ├── hylang.json │ │ ├── hylang.json.digest │ │ ├── influxdb-arch.json │ │ ├── influxdb-arch.json.digest │ │ ├── influxdb.json │ │ ├── influxdb.json.digest │ │ ├── iojs.json │ │ ├── iojs.json.digest │ │ ├── irssi-arch.json │ │ ├── irssi-arch.json.digest │ │ ├── irssi.json │ │ ├── irssi.json.digest │ │ ├── java.json │ │ ├── java.json.digest │ │ ├── jenkins-arch.json │ │ ├── jenkins-arch.json.digest │ │ ├── jenkins.json │ │ ├── jenkins.json.digest │ │ ├── jetty-arch.json │ │ ├── jetty-arch.json.digest │ │ ├── jetty.json │ │ ├── jetty.json.digest │ │ ├── joomla-arch.json │ │ ├── joomla-arch.json.digest │ │ ├── joomla.json │ │ ├── joomla.json.digest │ │ ├── jruby-arch.json │ │ ├── jruby-arch.json.digest │ │ ├── jruby.json │ │ ├── jruby.json.digest │ │ ├── julia-arch.json │ │ ├── julia-arch.json.digest │ │ ├── julia.json │ │ ├── julia.json.digest │ │ ├── kaazing-gateway-arch.json │ │ ├── kaazing-gateway-arch.json.digest │ │ ├── kaazing-gateway.json │ │ ├── kaazing-gateway.json.digest │ │ ├── kaniko-manifest.json │ │ ├── kaniko-manifest.json.digest │ │ ├── kapacitor-arch.json │ │ ├── kapacitor-arch.json.digest │ │ ├── kapacitor.json │ │ ├── kapacitor.json.digest │ │ ├── lightstreamer-arch.json │ │ ├── lightstreamer-arch.json.digest │ │ ├── lightstreamer.json │ │ ├── lightstreamer.json.digest │ │ ├── mageia-arch.json │ │ ├── mageia-arch.json.digest │ │ ├── mageia.json │ │ ├── mageia.json.digest │ │ ├── mariadb-arch.json │ │ ├── mariadb-arch.json.digest │ │ ├── mariadb.json │ │ ├── mariadb.json.digest │ │ ├── maven-arch.json │ │ ├── maven-arch.json.digest │ │ ├── maven.json │ │ ├── maven.json.digest │ │ ├── memcached-arch.json │ │ ├── memcached-arch.json.digest │ │ ├── memcached.json │ │ ├── memcached.json.digest │ │ ├── mongo-arch.json │ │ ├── mongo-arch.json.digest │ │ ├── mongo-express-arch.json │ │ ├── mongo-express-arch.json.digest │ │ ├── mongo-express.json │ │ ├── mongo-express.json.digest │ │ ├── mongo.json │ │ ├── mongo.json.digest │ │ ├── mono-arch.json │ │ ├── mono-arch.json.digest │ │ ├── mono.json │ │ ├── mono.json.digest │ │ ├── mysql-arch.json │ │ ├── mysql-arch.json.digest │ │ ├── mysql.json │ │ ├── mysql.json.digest │ │ ├── nats-arch.json │ │ ├── nats-arch.json.digest │ │ ├── nats.json │ │ ├── nats.json.digest │ │ ├── neo4j-arch.json │ │ ├── neo4j-arch.json.digest │ │ ├── neo4j.json │ │ ├── neo4j.json.digest │ │ ├── neurodebian-arch.json │ │ ├── neurodebian-arch.json.digest │ │ ├── neurodebian.json │ │ ├── neurodebian.json.digest │ │ ├── nginx-arch.json │ │ ├── nginx-arch.json.digest │ │ ├── nginx.json │ │ ├── nginx.json.digest │ │ ├── node-arch.json │ │ ├── node-arch.json.digest │ │ ├── node.json │ │ ├── node.json.digest │ │ ├── nuxeo-arch.json │ │ ├── nuxeo-arch.json.digest │ │ ├── nuxeo.json │ │ ├── nuxeo.json.digest │ │ ├── odoo-arch.json │ │ ├── odoo-arch.json.digest │ │ ├── odoo.json │ │ ├── odoo.json.digest │ │ ├── opensuse-arch.json │ │ ├── opensuse-arch.json.digest │ │ ├── opensuse.json │ │ ├── opensuse.json.digest │ │ ├── oraclelinux-arch.json │ │ ├── oraclelinux-arch.json.digest │ │ ├── oraclelinux.json │ │ ├── oraclelinux.json.digest │ │ ├── orientdb-arch.json │ │ ├── orientdb-arch.json.digest │ │ ├── orientdb.json │ │ ├── orientdb.json.digest │ │ ├── owncloud-arch.json │ │ ├── owncloud-arch.json.digest │ │ ├── owncloud.json │ │ ├── owncloud.json.digest │ │ ├── percona-arch.json │ │ ├── percona-arch.json.digest │ │ ├── percona.json │ │ ├── percona.json.digest │ │ ├── perl-arch.json │ │ ├── perl-arch.json.digest │ │ ├── perl.json │ │ ├── perl.json.digest │ │ ├── photon-arch.json │ │ ├── photon-arch.json.digest │ │ ├── photon.json │ │ ├── photon.json.digest │ │ ├── php-arch.json │ │ ├── php-arch.json.digest │ │ ├── php-zendserver-arch.json │ │ ├── php-zendserver-arch.json.digest │ │ ├── php-zendserver.json │ │ ├── php-zendserver.json.digest │ │ ├── php.json │ │ ├── php.json.digest │ │ ├── piwik-arch.json │ │ ├── piwik-arch.json.digest │ │ ├── piwik.json │ │ ├── piwik.json.digest │ │ ├── postgres-arch.json │ │ ├── postgres-arch.json.digest │ │ ├── postgres.json │ │ ├── postgres.json.digest │ │ ├── pypy-arch.json │ │ ├── pypy-arch.json.digest │ │ ├── pypy.json │ │ ├── pypy.json.digest │ │ ├── python-arch.json │ │ ├── python-arch.json.digest │ │ ├── python.json │ │ ├── python.json.digest │ │ ├── r-base-arch.json │ │ ├── r-base-arch.json.digest │ │ ├── r-base.json │ │ ├── r-base.json.digest │ │ ├── rabbitmq-arch.json │ │ ├── rabbitmq-arch.json.digest │ │ ├── rabbitmq.json │ │ ├── rabbitmq.json.digest │ │ ├── rails.json │ │ ├── rails.json.digest │ │ ├── rakudo-star-arch.json │ │ ├── rakudo-star-arch.json.digest │ │ ├── rakudo-star.json │ │ ├── rakudo-star.json.digest │ │ ├── redis-arch.json │ │ ├── redis-arch.json.digest │ │ ├── redis.json │ │ ├── redis.json.digest │ │ ├── redmine-arch.json │ │ ├── redmine-arch.json.digest │ │ ├── redmine.json │ │ ├── redmine.json.digest │ │ ├── registry-arch.json │ │ ├── registry-arch.json.digest │ │ ├── registry.json │ │ ├── registry.json.digest │ │ ├── rethinkdb-arch.json │ │ ├── rethinkdb-arch.json.digest │ │ ├── rethinkdb.json │ │ ├── rethinkdb.json.digest │ │ ├── rocket.chat-arch.json │ │ ├── rocket.chat-arch.json.digest │ │ ├── rocket.chat.json │ │ ├── rocket.chat.json.digest │ │ ├── ros-arch.json │ │ ├── ros-arch.json.digest │ │ ├── ros.json │ │ ├── ros.json.digest │ │ ├── ruby-arch.json │ │ ├── ruby-arch.json.digest │ │ ├── ruby.json │ │ ├── ruby.json.digest │ │ ├── sentry-arch.json │ │ ├── sentry-arch.json.digest │ │ ├── sentry.json │ │ ├── sentry.json.digest │ │ ├── solr-arch.json │ │ ├── solr-arch.json.digest │ │ ├── solr.json │ │ ├── solr.json.digest │ │ ├── sonarqube-arch.json │ │ ├── sonarqube-arch.json.digest │ │ ├── sonarqube.json │ │ ├── sonarqube.json.digest │ │ ├── sourcemage-arch.json │ │ ├── sourcemage-arch.json.digest │ │ ├── sourcemage.json │ │ ├── sourcemage.json.digest │ │ ├── swarm-arch.json │ │ ├── swarm-arch.json.digest │ │ ├── swarm.json │ │ ├── swarm.json.digest │ │ ├── telegraf-arch.json │ │ ├── telegraf-arch.json.digest │ │ ├── telegraf.json │ │ ├── telegraf.json.digest │ │ ├── thrift-arch.json │ │ ├── thrift-arch.json.digest │ │ ├── thrift.json │ │ ├── thrift.json.digest │ │ ├── tomcat-arch.json │ │ ├── tomcat-arch.json.digest │ │ ├── tomcat.json │ │ ├── tomcat.json.digest │ │ ├── tomee-arch.json │ │ ├── tomee-arch.json.digest │ │ ├── tomee.json │ │ ├── tomee.json.digest │ │ ├── traefik-arch.json │ │ ├── traefik-arch.json.digest │ │ ├── traefik.json │ │ ├── traefik.json.digest │ │ ├── ubuntu-arch.json │ │ ├── ubuntu-arch.json.digest │ │ ├── ubuntu.json │ │ ├── ubuntu.json.digest │ │ ├── websphere-liberty-arch.json │ │ ├── websphere-liberty-arch.json.digest │ │ ├── websphere-liberty.json │ │ ├── websphere-liberty.json.digest │ │ ├── wordpress-arch.json │ │ ├── wordpress-arch.json.digest │ │ ├── wordpress.json │ │ └── wordpress.json.digest │ │ └── grype_db │ │ ├── grype_db_test_archive.tar.gz │ │ ├── new_version │ │ ├── engine_metadata.json │ │ ├── metadata.json │ │ └── vulnerability.db │ │ ├── old_version │ │ ├── engine_metadata.json │ │ ├── metadata.json │ │ └── vulnerability.db │ │ ├── sbom-alpine-3.2.0.json │ │ └── sbom-ubuntu-20.04--pruned.json └── utils.py ├── tox.ini └── twisted └── plugins ├── anchore_api.py ├── anchore_catalog.py ├── anchore_policy_engine.py ├── anchore_simplequeue.py └── anchore_worker.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/.dockerignore -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | profile=black -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/.pylintrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/DEVELOPING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/README.md -------------------------------------------------------------------------------- /anchore_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/analyzers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/analyzers/abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/abstract.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/binary.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/hints.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/malware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/malware.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/manager.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/modules/01_analyzer_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/modules/01_analyzer_meta.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/modules/02_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/modules/02_layers.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/modules/13_retrieve_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/modules/13_retrieve_files.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/modules/13_secret_content_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/modules/13_secret_content_search.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/modules/20_file_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/modules/20_file_list.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/modules/30_file_checksums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/modules/30_file_checksums.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/modules/31_file_package_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/modules/31_file_package_verify.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/modules/32_golang_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/modules/32_golang_packages.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/modules/40_file_suids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/modules/40_file_suids.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/modules/50_malware_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/modules/50_malware_scan.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/syft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/syft/__init__.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/syft/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/syft/adapters.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/syft/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/syft/handlers/__init__.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/syft/handlers/alpine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/syft/handlers/alpine.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/syft/handlers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/syft/handlers/common.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/syft/handlers/debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/syft/handlers/debian.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/syft/handlers/gem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/syft/handlers/gem.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/syft/handlers/golang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/syft/handlers/golang.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/syft/handlers/java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/syft/handlers/java.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/syft/handlers/npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/syft/handlers/npm.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/syft/handlers/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/syft/handlers/python.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/syft/handlers/rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/syft/handlers/rpm.py -------------------------------------------------------------------------------- /anchore_engine/analyzers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/analyzers/utils.py -------------------------------------------------------------------------------- /anchore_engine/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/apis/__init__.py -------------------------------------------------------------------------------- /anchore_engine/apis/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/apis/authentication.py -------------------------------------------------------------------------------- /anchore_engine/apis/authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/apis/authorization.py -------------------------------------------------------------------------------- /anchore_engine/apis/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/apis/common.py -------------------------------------------------------------------------------- /anchore_engine/apis/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/apis/context.py -------------------------------------------------------------------------------- /anchore_engine/apis/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/apis/exceptions.py -------------------------------------------------------------------------------- /anchore_engine/apis/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/apis/oauth.py -------------------------------------------------------------------------------- /anchore_engine/apis/serialization.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/apis/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/apis/ssl.py -------------------------------------------------------------------------------- /anchore_engine/auth/__init__.py: -------------------------------------------------------------------------------- 1 | credentials = {} 2 | -------------------------------------------------------------------------------- /anchore_engine/auth/aws_ecr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/auth/aws_ecr.py -------------------------------------------------------------------------------- /anchore_engine/auth/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/auth/common.py -------------------------------------------------------------------------------- /anchore_engine/auth/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/auth/oauth.py -------------------------------------------------------------------------------- /anchore_engine/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/__init__.py -------------------------------------------------------------------------------- /anchore_engine/clients/docker_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/docker_registry.py -------------------------------------------------------------------------------- /anchore_engine/clients/grype_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/grype_wrapper.py -------------------------------------------------------------------------------- /anchore_engine/clients/localanchore_standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/localanchore_standalone.py -------------------------------------------------------------------------------- /anchore_engine/clients/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/services/__init__.py -------------------------------------------------------------------------------- /anchore_engine/clients/services/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/services/catalog.py -------------------------------------------------------------------------------- /anchore_engine/clients/services/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/services/common.py -------------------------------------------------------------------------------- /anchore_engine/clients/services/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/services/http.py -------------------------------------------------------------------------------- /anchore_engine/clients/services/internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/services/internal.py -------------------------------------------------------------------------------- /anchore_engine/clients/services/policy_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/services/policy_engine.py -------------------------------------------------------------------------------- /anchore_engine/clients/services/simplequeue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/services/simplequeue.py -------------------------------------------------------------------------------- /anchore_engine/clients/skopeo_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/skopeo_wrapper.py -------------------------------------------------------------------------------- /anchore_engine/clients/syft_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/clients/syft_wrapper.py -------------------------------------------------------------------------------- /anchore_engine/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/common/__init__.py -------------------------------------------------------------------------------- /anchore_engine/common/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/common/errors.py -------------------------------------------------------------------------------- /anchore_engine/common/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/common/helpers.py -------------------------------------------------------------------------------- /anchore_engine/common/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/common/images.py -------------------------------------------------------------------------------- /anchore_engine/common/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/common/models/policy_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/common/models/policy_engine.py -------------------------------------------------------------------------------- /anchore_engine/common/models/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/common/models/schemas.py -------------------------------------------------------------------------------- /anchore_engine/common/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/common/pagination.py -------------------------------------------------------------------------------- /anchore_engine/conf/add_image.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/conf/add_image.json.example -------------------------------------------------------------------------------- /anchore_engine/conf/add_registry.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/conf/add_registry.json.example -------------------------------------------------------------------------------- /anchore_engine/conf/analyzer_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/conf/analyzer_config.yaml -------------------------------------------------------------------------------- /anchore_engine/conf/bundles/anchore_default_bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/conf/bundles/anchore_default_bundle.json -------------------------------------------------------------------------------- /anchore_engine/conf/clamav/freshclam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/conf/clamav/freshclam.conf -------------------------------------------------------------------------------- /anchore_engine/conf/default_yosai_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/conf/default_yosai_settings.yaml -------------------------------------------------------------------------------- /anchore_engine/configuration/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /anchore_engine/configuration/localconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/configuration/localconfig.py -------------------------------------------------------------------------------- /anchore_engine/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/__init__.py -------------------------------------------------------------------------------- /anchore_engine/db/db_account_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_account_users.py -------------------------------------------------------------------------------- /anchore_engine/db/db_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_accounts.py -------------------------------------------------------------------------------- /anchore_engine/db/db_anchore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_anchore.py -------------------------------------------------------------------------------- /anchore_engine/db/db_archived_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_archived_images.py -------------------------------------------------------------------------------- /anchore_engine/db/db_archivedocument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_archivedocument.py -------------------------------------------------------------------------------- /anchore_engine/db/db_archivemetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_archivemetadata.py -------------------------------------------------------------------------------- /anchore_engine/db/db_catalog_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_catalog_image.py -------------------------------------------------------------------------------- /anchore_engine/db/db_catalog_image_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_catalog_image_docker.py -------------------------------------------------------------------------------- /anchore_engine/db/db_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_events.py -------------------------------------------------------------------------------- /anchore_engine/db/db_grype_db_feed_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_grype_db_feed_metadata.py -------------------------------------------------------------------------------- /anchore_engine/db/db_locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_locks.py -------------------------------------------------------------------------------- /anchore_engine/db/db_objectstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_objectstorage.py -------------------------------------------------------------------------------- /anchore_engine/db/db_policybundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_policybundle.py -------------------------------------------------------------------------------- /anchore_engine/db/db_policyeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_policyeval.py -------------------------------------------------------------------------------- /anchore_engine/db/db_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_queue.py -------------------------------------------------------------------------------- /anchore_engine/db/db_queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_queues.py -------------------------------------------------------------------------------- /anchore_engine/db/db_registries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_registries.py -------------------------------------------------------------------------------- /anchore_engine/db/db_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_services.py -------------------------------------------------------------------------------- /anchore_engine/db/db_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_subscriptions.py -------------------------------------------------------------------------------- /anchore_engine/db/db_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/db_tasks.py -------------------------------------------------------------------------------- /anchore_engine/db/entities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/db/entities/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/entities/catalog.py -------------------------------------------------------------------------------- /anchore_engine/db/entities/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/entities/common.py -------------------------------------------------------------------------------- /anchore_engine/db/entities/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/entities/exceptions.py -------------------------------------------------------------------------------- /anchore_engine/db/entities/identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/entities/identity.py -------------------------------------------------------------------------------- /anchore_engine/db/entities/policy_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/entities/policy_engine.py -------------------------------------------------------------------------------- /anchore_engine/db/entities/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/entities/tasks.py -------------------------------------------------------------------------------- /anchore_engine/db/entities/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/entities/upgrade.py -------------------------------------------------------------------------------- /anchore_engine/db/legacy_db_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/db/legacy_db_users.py -------------------------------------------------------------------------------- /anchore_engine/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/decorators.py -------------------------------------------------------------------------------- /anchore_engine/monitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/monitors.py -------------------------------------------------------------------------------- /anchore_engine/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/plugins/__init__.py -------------------------------------------------------------------------------- /anchore_engine/plugins/authorization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/plugins/authorization/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/plugins/authorization/client.py -------------------------------------------------------------------------------- /anchore_engine/plugins/authorization/swagger/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/plugins/authorization/swagger/swagger.yaml -------------------------------------------------------------------------------- /anchore_engine/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/service.py -------------------------------------------------------------------------------- /anchore_engine/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/__init__.py -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/analyzer/analysis.py -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/api/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/analyzer/config.py -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/analyzer/errors.py -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/analyzer/imports.py -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/layer_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/analyzer/layer_cache.py -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/analyzer/service.py -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/swagger/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/analyzer/swagger/swagger.yaml -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/analyzer/tasks.py -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/analyzer/utils.py -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/watchers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/analyzer/watchers/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/analyzer/watchers/analysis.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/__init__.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/controllers/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/api/controllers/accounts.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/controllers/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/api/controllers/archive.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/controllers/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/api/controllers/events.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/controllers/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/api/controllers/images.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/controllers/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/api/controllers/oauth.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/controllers/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/api/controllers/policies.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/controllers/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/api/controllers/query.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/controllers/registries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/api/controllers/registries.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/controllers/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/api/controllers/system.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/controllers/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/api/controllers/user.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/controllers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/api/controllers/utils.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/api/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/api/helpers/__init__.py -------------------------------------------------------------------------------- /anchore_engine/services/apiext/swagger/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/apiext/swagger/swagger.yaml -------------------------------------------------------------------------------- /anchore_engine/services/catalog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/catalog/__init__.py -------------------------------------------------------------------------------- /anchore_engine/services/catalog/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/catalog/api/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/catalog/api/controllers/archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/catalog/api/controllers/archives.py -------------------------------------------------------------------------------- /anchore_engine/services/catalog/api/controllers/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/catalog/api/controllers/imports.py -------------------------------------------------------------------------------- /anchore_engine/services/catalog/api/controllers/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/catalog/api/controllers/objects.py -------------------------------------------------------------------------------- /anchore_engine/services/catalog/api/controllers/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/catalog/api/controllers/policies.py -------------------------------------------------------------------------------- /anchore_engine/services/catalog/archiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/catalog/archiver.py -------------------------------------------------------------------------------- /anchore_engine/services/catalog/catalog_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/catalog/catalog_impl.py -------------------------------------------------------------------------------- /anchore_engine/services/catalog/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/catalog/exceptions.py -------------------------------------------------------------------------------- /anchore_engine/services/catalog/image_content/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/catalog/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/catalog/importer.py -------------------------------------------------------------------------------- /anchore_engine/services/catalog/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/catalog/service.py -------------------------------------------------------------------------------- /anchore_engine/services/catalog/swagger/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/catalog/swagger/swagger.yaml -------------------------------------------------------------------------------- /anchore_engine/services/catalog/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/catalog/utils.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/__init__.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/api/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/api/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/api/util.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/exc.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/feeds/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/feeds/client.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/feeds/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/feeds/config.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/feeds/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/feeds/db.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/feeds/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/feeds/feeds.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/feeds/schemas.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/feeds/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/feeds/sync.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/loaders.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/policy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/policy/gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/policy/gate.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/policy/gates/deprecated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/tasks.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/vulns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/vulns/cpes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/vulns/cpes.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/vulns/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/vulns/db.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/vulns/dedup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/vulns/dedup.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/vulns/stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/vulns/stores.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/engine/vulns/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/engine/vulns/utils.py -------------------------------------------------------------------------------- /anchore_engine/services/policy_engine/swagger/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/policy_engine/swagger/swagger.yaml -------------------------------------------------------------------------------- /anchore_engine/services/simplequeue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/simplequeue/__init__.py -------------------------------------------------------------------------------- /anchore_engine/services/simplequeue/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/simplequeue/api/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/services/simplequeue/swagger/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/services/simplequeue/swagger/swagger.yaml -------------------------------------------------------------------------------- /anchore_engine/subsys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/subsys/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/archive.py -------------------------------------------------------------------------------- /anchore_engine/subsys/auth/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /anchore_engine/subsys/auth/realms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/auth/realms.py -------------------------------------------------------------------------------- /anchore_engine/subsys/auth/stores/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/subsys/auth/stores/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/auth/stores/basic.py -------------------------------------------------------------------------------- /anchore_engine/subsys/auth/stores/verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/auth/stores/verifier.py -------------------------------------------------------------------------------- /anchore_engine/subsys/auth/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_engine/subsys/auth/util/caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/auth/util/caches.py -------------------------------------------------------------------------------- /anchore_engine/subsys/caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/caching.py -------------------------------------------------------------------------------- /anchore_engine/subsys/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/events/__init__.py -------------------------------------------------------------------------------- /anchore_engine/subsys/events/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/events/base.py -------------------------------------------------------------------------------- /anchore_engine/subsys/events/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/events/types.py -------------------------------------------------------------------------------- /anchore_engine/subsys/events/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/events/util.py -------------------------------------------------------------------------------- /anchore_engine/subsys/identities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/identities.py -------------------------------------------------------------------------------- /anchore_engine/subsys/locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/locking.py -------------------------------------------------------------------------------- /anchore_engine/subsys/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/logger.py -------------------------------------------------------------------------------- /anchore_engine/subsys/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/metrics.py -------------------------------------------------------------------------------- /anchore_engine/subsys/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/notifications.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/object_store/__init__.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/object_store/config.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/driver_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/object_store/driver_utils.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/drivers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/object_store/drivers/__init__.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/drivers/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/object_store/drivers/filesystem.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/drivers/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/object_store/drivers/interface.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/drivers/rdbms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/object_store/drivers/rdbms.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/drivers/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/object_store/drivers/s3.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/drivers/swift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/object_store/drivers/swift.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/object_store/exc.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/object_store/manager.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/object_store/migration.py -------------------------------------------------------------------------------- /anchore_engine/subsys/object_store/operations.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /anchore_engine/subsys/servicestatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/servicestatus.py -------------------------------------------------------------------------------- /anchore_engine/subsys/simplequeue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/simplequeue.py -------------------------------------------------------------------------------- /anchore_engine/subsys/taskstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/taskstate.py -------------------------------------------------------------------------------- /anchore_engine/subsys/twistd_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/subsys/twistd_logger.py -------------------------------------------------------------------------------- /anchore_engine/twisted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/twisted.py -------------------------------------------------------------------------------- /anchore_engine/util/__init__.py: -------------------------------------------------------------------------------- 1 | RFC1123_TIME_FORMAT = "%a, %d %b %Y %H:%M:%S %Z" 2 | -------------------------------------------------------------------------------- /anchore_engine/util/apk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/apk.py -------------------------------------------------------------------------------- /anchore_engine/util/cpe_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/cpe_generators.py -------------------------------------------------------------------------------- /anchore_engine/util/deb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/deb.py -------------------------------------------------------------------------------- /anchore_engine/util/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/docker.py -------------------------------------------------------------------------------- /anchore_engine/util/dockerfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/dockerfile.py -------------------------------------------------------------------------------- /anchore_engine/util/java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/java.py -------------------------------------------------------------------------------- /anchore_engine/util/langpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/langpack.py -------------------------------------------------------------------------------- /anchore_engine/util/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/matcher.py -------------------------------------------------------------------------------- /anchore_engine/util/maven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/maven.py -------------------------------------------------------------------------------- /anchore_engine/util/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/packages.py -------------------------------------------------------------------------------- /anchore_engine/util/rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/rpm.py -------------------------------------------------------------------------------- /anchore_engine/util/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/time.py -------------------------------------------------------------------------------- /anchore_engine/util/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/util/users.py -------------------------------------------------------------------------------- /anchore_engine/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/utils.py -------------------------------------------------------------------------------- /anchore_engine/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/version.py -------------------------------------------------------------------------------- /anchore_engine/watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_engine/watcher.py -------------------------------------------------------------------------------- /anchore_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anchore_manager/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_manager/cli/__init__.py -------------------------------------------------------------------------------- /anchore_manager/cli/analyzers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_manager/cli/analyzers.py -------------------------------------------------------------------------------- /anchore_manager/cli/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_manager/cli/db.py -------------------------------------------------------------------------------- /anchore_manager/cli/objectstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_manager/cli/objectstorage.py -------------------------------------------------------------------------------- /anchore_manager/cli/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_manager/cli/service.py -------------------------------------------------------------------------------- /anchore_manager/util/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /anchore_manager/util/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_manager/util/config.py -------------------------------------------------------------------------------- /anchore_manager/util/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_manager/util/db.py -------------------------------------------------------------------------------- /anchore_manager/util/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_manager/util/logging.py -------------------------------------------------------------------------------- /anchore_manager/util/proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/anchore_manager/util/proc.py -------------------------------------------------------------------------------- /anchore_manager/version.py: -------------------------------------------------------------------------------- 1 | version = "1.1.0" 2 | -------------------------------------------------------------------------------- /conf/default_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/conf/default_config.yaml -------------------------------------------------------------------------------- /dev-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/dev-tools/README.md -------------------------------------------------------------------------------- /dev-tools/requirements-dev.txt: -------------------------------------------------------------------------------- 1 | black 2 | isort 3 | pylint -------------------------------------------------------------------------------- /dev-tools/watchers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/dev-tools/watchers.xml -------------------------------------------------------------------------------- /docker-compose-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/docker-compose-dev.yaml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/api_spec_viewer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/api_spec_viewer.sh -------------------------------------------------------------------------------- /scripts/ci/Dockerfile.functional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/Dockerfile.functional -------------------------------------------------------------------------------- /scripts/ci/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/build -------------------------------------------------------------------------------- /scripts/ci/config/base-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/config/base-values.yaml -------------------------------------------------------------------------------- /scripts/ci/config/kind-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/config/kind-config.yaml -------------------------------------------------------------------------------- /scripts/ci/container-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/container-tests.yaml -------------------------------------------------------------------------------- /scripts/ci/docker-compose-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/docker-compose-ci.yaml -------------------------------------------------------------------------------- /scripts/ci/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/lint -------------------------------------------------------------------------------- /scripts/ci/prep-local-docker-registry-credentials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/prep-local-docker-registry-credentials -------------------------------------------------------------------------------- /scripts/ci/push-rc-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/push-rc-image -------------------------------------------------------------------------------- /scripts/ci/setup-local-testing-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/setup-local-testing-cluster -------------------------------------------------------------------------------- /scripts/ci/test-functional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/test-functional -------------------------------------------------------------------------------- /scripts/ci/test-integration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/test-integration -------------------------------------------------------------------------------- /scripts/ci/thank-you.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/ci/thank-you.png -------------------------------------------------------------------------------- /scripts/data_generators/generate_gem_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/data_generators/generate_gem_records.py -------------------------------------------------------------------------------- /scripts/data_generators/generate_npm_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/data_generators/generate_npm_records.py -------------------------------------------------------------------------------- /scripts/docker-compose/anchore-prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/docker-compose/anchore-prometheus.yml -------------------------------------------------------------------------------- /scripts/docker-compose/anchore-swaggerui-nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/docker-compose/anchore-swaggerui-nginx.conf -------------------------------------------------------------------------------- /scripts/tests/aefailtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tests/aefailtest.py -------------------------------------------------------------------------------- /scripts/tests/aetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tests/aetest.py -------------------------------------------------------------------------------- /scripts/tests/image_import/nginx_image_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tests/image_import/nginx_image_config.json -------------------------------------------------------------------------------- /scripts/tests/image_import/nginx_latest_packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tests/image_import/nginx_latest_packages.json -------------------------------------------------------------------------------- /scripts/tests/image_import/nginx_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tests/image_import/nginx_manifest.json -------------------------------------------------------------------------------- /scripts/tests/image_import/nginx_manifest_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tests/image_import/nginx_manifest_list.json -------------------------------------------------------------------------------- /scripts/tests/image_import/nginx_skopeo_inspect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tests/image_import/nginx_skopeo_inspect.json -------------------------------------------------------------------------------- /scripts/tests/image_import/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tests/image_import/test_import.py -------------------------------------------------------------------------------- /scripts/tests/image_import/test_import_dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tests/image_import/test_import_dockerfile -------------------------------------------------------------------------------- /scripts/tests/test_with_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tests/test_with_deps.sh -------------------------------------------------------------------------------- /scripts/tests/upgrade_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tests/upgrade_test.py -------------------------------------------------------------------------------- /scripts/tools/direct_imports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tools/direct_imports.sh -------------------------------------------------------------------------------- /scripts/tools/gen_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tools/gen_changelog.py -------------------------------------------------------------------------------- /scripts/tools/reporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tools/reporting/README.md -------------------------------------------------------------------------------- /scripts/tools/reporting/test_coverage_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/scripts/tools/reporting/test_coverage_priority.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/bundle-large_whitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/bundle-large_whitelist.json -------------------------------------------------------------------------------- /tests/data/certs/certificate.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/certs/certificate.crt -------------------------------------------------------------------------------- /tests/data/certs/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/certs/private.pem -------------------------------------------------------------------------------- /tests/data/certs/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/certs/public.pem -------------------------------------------------------------------------------- /tests/data/distros.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/distros.txt -------------------------------------------------------------------------------- /tests/data/feeds_repo/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/feeds_repo/metadata.json -------------------------------------------------------------------------------- /tests/data/feeds_repo/vulnerabilities/alpine:3.7/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/feeds_repo/vulnerabilities/alpine:3.7/0 -------------------------------------------------------------------------------- /tests/data/feeds_repo/vulnerabilities/alpine:3.7/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/feeds_repo/vulnerabilities/alpine:3.7/1 -------------------------------------------------------------------------------- /tests/data/feeds_repo/vulnerabilities/alpine:3.8/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/feeds_repo/vulnerabilities/alpine:3.8/0 -------------------------------------------------------------------------------- /tests/data/feeds_repo/vulnerabilities/alpine:3.8/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/feeds_repo/vulnerabilities/alpine:3.8/1 -------------------------------------------------------------------------------- /tests/data/test_data_env/bundles/anchore_default_bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/bundles/anchore_default_bundle.json -------------------------------------------------------------------------------- /tests/data/test_data_env/bundles/bad_bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/bundles/bad_bundle.json -------------------------------------------------------------------------------- /tests/data/test_data_env/bundles/bad_policy_id_bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/bundles/bad_policy_id_bundle.json -------------------------------------------------------------------------------- /tests/data/test_data_env/bundles/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/bundles/empty.json -------------------------------------------------------------------------------- /tests/data/test_data_env/bundles/multi_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/bundles/multi_default.json -------------------------------------------------------------------------------- /tests/data/test_data_env/bundles/multi_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/bundles/multi_policy.json -------------------------------------------------------------------------------- /tests/data/test_data_env/bundles/trivial_bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/bundles/trivial_bundle.json -------------------------------------------------------------------------------- /tests/data/test_data_env/feeds/nvdv2/cves/2019-08-14T18:21-07:00.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/data/test_data_env/feeds/vulndb/vulnerabilities/2019-08-14T18:21-07:00.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/data/test_data_env/images/export_alpine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/images/export_alpine.json -------------------------------------------------------------------------------- /tests/data/test_data_env/images/export_busybox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/images/export_busybox.json -------------------------------------------------------------------------------- /tests/data/test_data_env/images/export_centos_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/images/export_centos_7.json -------------------------------------------------------------------------------- /tests/data/test_data_env/images/export_centos_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/images/export_centos_latest.json -------------------------------------------------------------------------------- /tests/data/test_data_env/images/export_debian9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/images/export_debian9.json -------------------------------------------------------------------------------- /tests/data/test_data_env/images/export_node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/images/export_node.json -------------------------------------------------------------------------------- /tests/data/test_data_env/images/export_ol7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/images/export_ol7.json -------------------------------------------------------------------------------- /tests/data/test_data_env/images/export_rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/images/export_rhel.json -------------------------------------------------------------------------------- /tests/data/test_data_env/images/export_ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/images/export_ruby.json -------------------------------------------------------------------------------- /tests/data/test_data_env/images/export_ubuntu_16_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/images/export_ubuntu_16_10.json -------------------------------------------------------------------------------- /tests/data/test_data_env/images/image_export_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/test_data_env/images/image_export_metadata.json -------------------------------------------------------------------------------- /tests/data/testing_yosai_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/data/testing_yosai_settings.yaml -------------------------------------------------------------------------------- /tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/fixtures.py -------------------------------------------------------------------------------- /tests/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/__init__.py -------------------------------------------------------------------------------- /tests/functional/artifacts/registry/.gitignore: -------------------------------------------------------------------------------- 1 | auth 2 | certs -------------------------------------------------------------------------------- /tests/functional/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/clients/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/clients/conftest.py -------------------------------------------------------------------------------- /tests/functional/clients/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/clients/scripts/analyzer_config.yaml: -------------------------------------------------------------------------------- 1 | ../../../../anchore_engine/conf/analyzer_config.yaml -------------------------------------------------------------------------------- /tests/functional/clients/scripts/convert-pkg-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/clients/scripts/convert-pkg-list.py -------------------------------------------------------------------------------- /tests/functional/clients/scripts/standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/clients/scripts/standalone.py -------------------------------------------------------------------------------- /tests/functional/clients/standalone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/clients/standalone/package_list/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/clients/standalone/package_list/__init__.py -------------------------------------------------------------------------------- /tests/functional/clients/standalone/package_list/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/clients/standalone/test_analyzer_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/clients/standalone/test_analyzer_meta.py -------------------------------------------------------------------------------- /tests/functional/clients/standalone/test_file_checksums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/clients/standalone/test_file_checksums.py -------------------------------------------------------------------------------- /tests/functional/clients/standalone/test_file_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/clients/standalone/test_file_list.py -------------------------------------------------------------------------------- /tests/functional/clients/standalone/test_file_suids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/clients/standalone/test_file_suids.py -------------------------------------------------------------------------------- /tests/functional/clients/standalone/test_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/clients/standalone/test_hints.py -------------------------------------------------------------------------------- /tests/functional/clients/standalone/test_image_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/clients/standalone/test_image_report.py -------------------------------------------------------------------------------- /tests/functional/clients/standalone/test_layer_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/clients/standalone/test_layer_info.py -------------------------------------------------------------------------------- /tests/functional/clients/standalone/test_retreive_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/clients/standalone/test_retreive_files.py -------------------------------------------------------------------------------- /tests/functional/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/conftest.py -------------------------------------------------------------------------------- /tests/functional/local.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/local.env -------------------------------------------------------------------------------- /tests/functional/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/api/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/api/accounts/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/accounts/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/accounts/users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/accounts/users/__init__.py -------------------------------------------------------------------------------- /tests/functional/services/api/accounts/users/test_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/accounts/users/test_delete.py -------------------------------------------------------------------------------- /tests/functional/services/api/accounts/users/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/accounts/users/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/accounts/users/test_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/accounts/users/test_post.py -------------------------------------------------------------------------------- /tests/functional/services/api/archives/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/api/archives/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/archives/conftest.py -------------------------------------------------------------------------------- /tests/functional/services/api/archives/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/archives/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/conftest.py -------------------------------------------------------------------------------- /tests/functional/services/api/events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/api/events/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/events/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/identity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/api/identity/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/identity/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/identity/test_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/identity/test_post.py -------------------------------------------------------------------------------- /tests/functional/services/api/images/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/images/__init__.py -------------------------------------------------------------------------------- /tests/functional/services/api/images/by_id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/api/images/by_id/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/images/by_id/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/images/by_id/test_vulns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/images/by_id/test_vulns.py -------------------------------------------------------------------------------- /tests/functional/services/api/images/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/images/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/images/test_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/images/test_post.py -------------------------------------------------------------------------------- /tests/functional/services/api/imports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/imports/__init__.py -------------------------------------------------------------------------------- /tests/functional/services/api/imports/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/imports/test_import.py -------------------------------------------------------------------------------- /tests/functional/services/api/policies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/policies/__init__.py -------------------------------------------------------------------------------- /tests/functional/services/api/policies/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/policies/conftest.py -------------------------------------------------------------------------------- /tests/functional/services/api/policies/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/policies/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/policies/test_put.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/policies/test_put.py -------------------------------------------------------------------------------- /tests/functional/services/api/query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/api/query/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/query/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/registries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/registries/__init__.py -------------------------------------------------------------------------------- /tests/functional/services/api/registries/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/registries/conftest.py -------------------------------------------------------------------------------- /tests/functional/services/api/registries/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/registries/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/registries/test_put.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/registries/test_put.py -------------------------------------------------------------------------------- /tests/functional/services/api/repositories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/api/repositories/test_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/repositories/test_post.py -------------------------------------------------------------------------------- /tests/functional/services/api/subscriptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/subscriptions/__init__.py -------------------------------------------------------------------------------- /tests/functional/services/api/subscriptions/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/subscriptions/conftest.py -------------------------------------------------------------------------------- /tests/functional/services/api/subscriptions/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/subscriptions/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/subscriptions/test_put.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/subscriptions/test_put.py -------------------------------------------------------------------------------- /tests/functional/services/api/summaries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/api/summaries/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/summaries/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/api/system/test_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/system/test_delete.py -------------------------------------------------------------------------------- /tests/functional/services/api/system/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/system/test_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/system/test_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/system/test_post.py -------------------------------------------------------------------------------- /tests/functional/services/api/test_default_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/test_default_get.py -------------------------------------------------------------------------------- /tests/functional/services/api/test_default_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/api/test_default_post.py -------------------------------------------------------------------------------- /tests/functional/services/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/catalog/object_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/catalog/object_tests/conftest.py -------------------------------------------------------------------------------- /tests/functional/services/catalog/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/catalog/utils/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/catalog/utils/api/__init__.py -------------------------------------------------------------------------------- /tests/functional/services/catalog/utils/api/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/catalog/utils/api/conf.py -------------------------------------------------------------------------------- /tests/functional/services/catalog/utils/api/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/catalog/utils/api/objects.py -------------------------------------------------------------------------------- /tests/functional/services/catalog/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/catalog/utils/utils.py -------------------------------------------------------------------------------- /tests/functional/services/policy_engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/policy_engine/README.md -------------------------------------------------------------------------------- /tests/functional/services/policy_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/policy_engine/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/policy_engine/conftest.py -------------------------------------------------------------------------------- /tests/functional/services/policy_engine/feeds_data_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/policy_engine/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/functional/services/policy_engine/utils/api/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/policy_engine/utils/api/conf.py -------------------------------------------------------------------------------- /tests/functional/services/policy_engine/utils/api/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/policy_engine/utils/api/feeds.py -------------------------------------------------------------------------------- /tests/functional/services/policy_engine/utils/api/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/policy_engine/utils/api/images.py -------------------------------------------------------------------------------- /tests/functional/services/policy_engine/utils/api/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/policy_engine/utils/api/users.py -------------------------------------------------------------------------------- /tests/functional/services/policy_engine/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/policy_engine/utils/utils.py -------------------------------------------------------------------------------- /tests/functional/services/policy_engine/vulnerability_data_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/policy_engine/vulnerability_data_tests/expected_output/test_query_vulnerabilities/expected_empty_incorrect_version.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/functional/services/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/services/utils/docker_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/utils/docker_utils.py -------------------------------------------------------------------------------- /tests/functional/services/utils/http_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/services/utils/http_utils.py -------------------------------------------------------------------------------- /tests/functional/test_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/test_accounts.py -------------------------------------------------------------------------------- /tests/functional/test_systemstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/functional/test_systemstatus.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/clients/test_anchoreio_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/clients/test_anchoreio_feeds.py -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/db/test_FixedArtifact_fix_observed_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/db/test_FixedArtifact_fix_observed_at.py -------------------------------------------------------------------------------- /tests/integration/db/test_grype_db_feed_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/db/test_grype_db_feed_metadata.py -------------------------------------------------------------------------------- /tests/integration/db/upgrade/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/db/upgrade/test_db_upgrade_015_016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/db/upgrade/test_db_upgrade_015_016.py -------------------------------------------------------------------------------- /tests/integration/deps/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/deps/docker-compose.yaml -------------------------------------------------------------------------------- /tests/integration/deps/minio_build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/deps/minio_build/Dockerfile -------------------------------------------------------------------------------- /tests/integration/deps/minio_build/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/deps/minio_build/config.json -------------------------------------------------------------------------------- /tests/integration/deps/swift_build/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/deps/swift_build/README -------------------------------------------------------------------------------- /tests/integration/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/services/catalog/test_catalog_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/services/catalog/test_catalog_impl.py -------------------------------------------------------------------------------- /tests/integration/services/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/services/common/test_leases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/services/common/test_leases.py -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/api/test_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/services/policy_engine/api/test_feeds.py -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/services/policy_engine/conftest.py -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/db/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/services/policy_engine/db/test_models.py -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/engine/policy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/engine/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/feeds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/test_bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/services/policy_engine/test_bundles.py -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/test_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/services/policy_engine/test_loaders.py -------------------------------------------------------------------------------- /tests/integration/services/policy_engine/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/services/policy_engine/utils.py -------------------------------------------------------------------------------- /tests/integration/setup_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/setup_deps.sh -------------------------------------------------------------------------------- /tests/integration/subsys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/subsys/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/subsys/auth/stores/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/subsys/auth/stores/test_basic_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/subsys/auth/stores/test_basic_store.py -------------------------------------------------------------------------------- /tests/integration/subsys/auth/test_identities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/subsys/auth/test_identities.py -------------------------------------------------------------------------------- /tests/integration/subsys/object_store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/subsys/object_store/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/subsys/object_store/conftest.py -------------------------------------------------------------------------------- /tests/integration/subsys/object_store/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/subsys/test_simplequeue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/subsys/test_simplequeue.py -------------------------------------------------------------------------------- /tests/integration/teardown_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/integration/teardown_deps.sh -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/analyzers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/analyzers/hints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/analyzers/syft/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/analyzers/syft/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/analyzers/syft/test_syft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/analyzers/syft/test_syft.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/analyzers/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/analyzers/test_utils.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/apis/test_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/apis/test_oauth.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/auth/test_aws_ecr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/auth/test_aws_ecr.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/auth/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/auth/test_common.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/clients/test_grype_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/clients/test_grype_wrapper.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/clients/test_skopeo_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/clients/test_skopeo_wrapper.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/common/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/common/test_helpers.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/db/entities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/db/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/db/test_policy_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/db/test_policy_engine.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/plugins/authorization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/apiext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/apiext/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/apiext/api/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/apiext/api/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/catalog/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/services/catalog/test_utils.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/policy_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/policy_engine/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/policy_engine/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/policy_engine/engine/feeds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/policy_engine/engine/policy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/policy_engine/engine/policy/gates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/policy_engine/engine/vulns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/services/test_api_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/services/test_api_specs.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/subsys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/subsys/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/subsys/auth/test_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/subsys/auth/test_oauth.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/subsys/auth/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/subsys/auth/test_permissions.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/subsys/auth/test_realms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/subsys/auth/test_realms.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/subsys/events/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/subsys/events/test_util.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/subsys/object_store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/subsys/object_store/drivers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/subsys/test_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/subsys/test_caching.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/subsys/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/subsys/test_logger.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/subsys/test_taskstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/subsys/test_taskstate.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/test_simplequeue_leases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/test_simplequeue_leases.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/test_utils.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/anchore_engine/util/test_apk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/util/test_apk.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/util/test_cpe_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/util/test_cpe_generators.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/util/test_deb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/util/test_deb.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/util/test_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/util/test_docker.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/util/test_java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/util/test_java.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/util/test_langpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/util/test_langpack.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/util/test_maven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/util/test_maven.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/util/test_rfc3339.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/util/test_rfc3339.py -------------------------------------------------------------------------------- /tests/unit/anchore_engine/util/test_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/anchore_engine/util/test_rpm.py -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/aerospike-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/aerospike-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/aerospike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/aerospike.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/alpine-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/alpine-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/alpine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/alpine.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/alpine.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/alpine.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/arangodb-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/arangodb-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/arangodb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/arangodb.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/backdrop-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/backdrop-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/backdrop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/backdrop.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/bonita-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/bonita-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/bonita.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/bonita.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/bonita.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/bonita.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/buildpack-deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/buildpack-deps.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/busybox-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/busybox-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/busybox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/busybox.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/busybox.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/busybox.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/cassandra-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/cassandra-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/cassandra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/cassandra.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/celery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/celery.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/celery.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/celery.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/centos-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/centos-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/centos.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/centos.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/centos.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/chronograf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/chronograf.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/cirros-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/cirros-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/cirros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/cirros.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/cirros.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/cirros.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/clojure-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/clojure-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/clojure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/clojure.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/clojure.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/clojure.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/consul-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/consul-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/consul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/consul.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/consul.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/consul.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/couchbase-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/couchbase-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/couchbase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/couchbase.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/couchdb-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/couchdb-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/couchdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/couchdb.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/couchdb.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/couchdb.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/crate-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/crate-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/crate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/crate.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/crate.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/crate.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/crux-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/crux-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/crux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/crux.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/crux.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/crux.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/debian-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/debian-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/debian.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/debian.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/debian.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/django.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/django.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/django.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/django.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/docker-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/docker-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/docker.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/docker.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/docker.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/drupal-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/drupal-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/drupal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/drupal.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/drupal.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/drupal.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/elixir-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/elixir-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/elixir.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/elixir.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/elixir.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/erlang-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/erlang-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/erlang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/erlang.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/erlang.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/erlang.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/fedora-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/fedora-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/fedora.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/fedora.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/fedora.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/fedora.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/gazebo-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/gazebo-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/gazebo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/gazebo.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/gazebo.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/gazebo.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/gcc-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/gcc-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/gcc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/gcc.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/gcc.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/gcc.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/ghost-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/ghost-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/ghost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/ghost.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/ghost.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/ghost.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/glassfish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/glassfish.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/golang-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/golang-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/golang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/golang.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/golang.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/golang.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/haproxy-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/haproxy-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/haproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/haproxy.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/haproxy.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/haproxy.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/haskell-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/haskell-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/haskell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/haskell.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/haskell.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/haskell.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/hello-seattle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/hello-seattle.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/hello-world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/hello-world.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/hipache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/hipache.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/hipache.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/hipache.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/hola-mundo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/hola-mundo.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/httpd-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/httpd-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/httpd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/httpd.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/httpd.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/httpd.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/hylang-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/hylang-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/hylang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/hylang.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/hylang.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/hylang.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/influxdb-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/influxdb-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/influxdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/influxdb.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/iojs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/iojs.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/iojs.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/iojs.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/irssi-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/irssi-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/irssi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/irssi.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/irssi.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/irssi.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/java.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/java.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/java.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/jenkins-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/jenkins-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/jenkins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/jenkins.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/jenkins.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/jenkins.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/jetty-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/jetty-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/jetty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/jetty.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/jetty.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/jetty.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/joomla-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/joomla-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/joomla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/joomla.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/joomla.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/joomla.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/jruby-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/jruby-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/jruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/jruby.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/jruby.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/jruby.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/julia-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/julia-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/julia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/julia.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/julia.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/julia.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/kapacitor-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/kapacitor-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/kapacitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/kapacitor.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/lightstreamer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/lightstreamer.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mageia-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mageia-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mageia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mageia.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mageia.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mageia.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mariadb-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mariadb-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mariadb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mariadb.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mariadb.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mariadb.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/maven-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/maven-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/maven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/maven.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/maven.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/maven.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/memcached-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/memcached-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/memcached.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/memcached.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mongo-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mongo-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mongo-express.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mongo-express.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mongo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mongo.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mongo.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mongo.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mono-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mono-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mono.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mono.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mono.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mono.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mysql-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mysql-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mysql.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/mysql.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/mysql.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/nats-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/nats-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/nats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/nats.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/nats.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/nats.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/neo4j-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/neo4j-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/neo4j.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/neo4j.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/neo4j.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/neo4j.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/neurodebian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/neurodebian.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/nginx-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/nginx-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/nginx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/nginx.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/nginx.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/nginx.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/node-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/node-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/node.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/node.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/node.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/nuxeo-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/nuxeo-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/nuxeo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/nuxeo.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/nuxeo.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/nuxeo.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/odoo-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/odoo-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/odoo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/odoo.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/odoo.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/odoo.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/opensuse-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/opensuse-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/opensuse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/opensuse.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/oraclelinux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/oraclelinux.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/orientdb-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/orientdb-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/orientdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/orientdb.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/owncloud-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/owncloud-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/owncloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/owncloud.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/percona-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/percona-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/percona.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/percona.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/percona.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/percona.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/perl-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/perl-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/perl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/perl.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/perl.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/perl.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/photon-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/photon-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/photon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/photon.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/photon.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/photon.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/php-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/php-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/php-zendserver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/php-zendserver.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/php.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/php.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/php.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/piwik-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/piwik-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/piwik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/piwik.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/piwik.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/piwik.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/postgres-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/postgres-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/postgres.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/pypy-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/pypy-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/pypy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/pypy.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/pypy.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/pypy.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/python-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/python-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/python.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/python.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/python.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/r-base-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/r-base-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/r-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/r-base.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/r-base.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/r-base.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/rabbitmq-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/rabbitmq-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/rabbitmq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/rabbitmq.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/rails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/rails.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/rails.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/rails.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/rakudo-star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/rakudo-star.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/redis-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/redis-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/redis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/redis.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/redis.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/redis.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/redmine-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/redmine-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/redmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/redmine.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/redmine.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/redmine.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/registry-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/registry-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/registry.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/rethinkdb-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/rethinkdb-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/rethinkdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/rethinkdb.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/rocket.chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/rocket.chat.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/ros-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/ros-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/ros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/ros.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/ros.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/ros.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/ruby-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/ruby-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/ruby.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/ruby.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/ruby.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/sentry-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/sentry-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/sentry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/sentry.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/sentry.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/sentry.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/solr-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/solr-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/solr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/solr.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/solr.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/solr.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/sonarqube-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/sonarqube-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/sonarqube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/sonarqube.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/sourcemage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/sourcemage.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/swarm-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/swarm-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/swarm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/swarm.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/swarm.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/swarm.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/telegraf-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/telegraf-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/telegraf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/telegraf.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/thrift-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/thrift-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/thrift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/thrift.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/thrift.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/thrift.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/tomcat-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/tomcat-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/tomcat.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/tomcat.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/tomcat.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/tomee-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/tomee-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/tomee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/tomee.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/tomee.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/tomee.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/traefik-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/traefik-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/traefik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/traefik.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/traefik.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/traefik.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/ubuntu-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/ubuntu-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/ubuntu.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/ubuntu.json.digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/ubuntu.json.digest -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/wordpress-arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/wordpress-arch.json -------------------------------------------------------------------------------- /tests/unit/data/example_raw_manifests/wordpress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/example_raw_manifests/wordpress.json -------------------------------------------------------------------------------- /tests/unit/data/grype_db/grype_db_test_archive.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/grype_db/grype_db_test_archive.tar.gz -------------------------------------------------------------------------------- /tests/unit/data/grype_db/new_version/engine_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/grype_db/new_version/engine_metadata.json -------------------------------------------------------------------------------- /tests/unit/data/grype_db/new_version/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/grype_db/new_version/metadata.json -------------------------------------------------------------------------------- /tests/unit/data/grype_db/new_version/vulnerability.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/grype_db/new_version/vulnerability.db -------------------------------------------------------------------------------- /tests/unit/data/grype_db/old_version/engine_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/grype_db/old_version/engine_metadata.json -------------------------------------------------------------------------------- /tests/unit/data/grype_db/old_version/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/grype_db/old_version/metadata.json -------------------------------------------------------------------------------- /tests/unit/data/grype_db/old_version/vulnerability.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/grype_db/old_version/vulnerability.db -------------------------------------------------------------------------------- /tests/unit/data/grype_db/sbom-alpine-3.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/grype_db/sbom-alpine-3.2.0.json -------------------------------------------------------------------------------- /tests/unit/data/grype_db/sbom-ubuntu-20.04--pruned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/unit/data/grype_db/sbom-ubuntu-20.04--pruned.json -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/tox.ini -------------------------------------------------------------------------------- /twisted/plugins/anchore_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/twisted/plugins/anchore_api.py -------------------------------------------------------------------------------- /twisted/plugins/anchore_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/twisted/plugins/anchore_catalog.py -------------------------------------------------------------------------------- /twisted/plugins/anchore_policy_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/twisted/plugins/anchore_policy_engine.py -------------------------------------------------------------------------------- /twisted/plugins/anchore_simplequeue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/twisted/plugins/anchore_simplequeue.py -------------------------------------------------------------------------------- /twisted/plugins/anchore_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/anchore-engine/HEAD/twisted/plugins/anchore_worker.py --------------------------------------------------------------------------------