معرفی شرکت ها


appthreat-depscan-2.1.9


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Fully open-source security audit for project dependencies based on known vulnerabilities and advisories.
ویژگی مقدار
سیستم عامل OS Independent
نام فایل appthreat-depscan-2.1.9
نام appthreat-depscan
نسخه کتابخانه 2.1.9
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Team AppThreat
ایمیل نویسنده cloud@appthreat.com
آدرس صفحه اصلی https://github.com/appthreat/dep-scan
آدرس اینترنتی https://pypi.org/project/appthreat-depscan/
مجوز MIT
# Introduction ```bash ___ _____ _ _ / _ \ |_ _| | | | / /_\ \_ __ _ __ | | | |__ _ __ ___ __ _| |_ | _ | '_ \| '_ \| | | '_ \| '__/ _ \/ _` | __| | | | | |_) | |_) | | | | | | | | __/ (_| | |_ \_| |_/ .__/| .__/\_/ |_| |_|_| \___|\__,_|\__| | | | | |_| |_| ``` dep-scan is a fully open-source security audit tool for project dependencies based on known vulnerabilities, advisories and license limitations. Both local repositories and container images are supported as input. The tool is ideal for CI environments with built-in build breaker logic. If you have just come across this repo, probably the best place to start is to checkout the parent project [slscan](https://slscan.io) which include depscan along with a number of other tools. ## Features - Local repos and container image based scanning with CVE insights [1] - Package vulnerability scanning is performed locally and is quite fast. No server is used! - Suggest optimal fix version by package group (See suggest mode) - Perform deep packages risk audit for dependency confusion attacks and maintenance risks (See risk audit) NOTE: - [1] Only application related packages in container images are included in scanning. OS packages are not included yet. ![Depscan insights](docs/depscan-latest.png) ### Vulnerability Data sources - OSV - NVD - GitHub - NPM ## Usage dep-scan is ideal for use during continuous integration (CI) and also as a tool for local development. ### Use with ShiftLeft Scan dep-scan is integrated with [scan](https://github.com/ShiftLeftSecurity/sast-scan), a free and open-source SAST tool. To enable this feature simply pass `depscan` to the `--type` argument. [Refer](https://slscan.io) to the scan documentation for more information. ```yaml --- --type python,depscan,credscan ``` This approach should work for all CI environments supported by scan. ### Scanning projects locally (Python version) ```bash sudo npm install -g @appthreat/cdxgen pip install appthreat-depscan ``` This would install two commands called `cdxgen` and `scan`. You can invoke the scan command directly with the various options. ```bash cd <project to scan> depscan --src $PWD --report_file $PWD/reports/depscan.json ``` Full list of options are below: ```bash usage: depscan [-h] [--no-banner] [--cache] [--sync] [--suggest] [--risk-audit] [--private-ns PRIVATE_NS] [-t PROJECT_TYPE] [--bom BOM] -i SRC_DIR [-o REPORT_FILE] [--no-error] -h, --help show this help message and exit --no-banner Do not display banner --cache Cache vulnerability information in platform specific user_data_dir --sync Sync to receive the latest vulnerability data. Should have invoked cache first. --suggest Suggest appropriate fix version for each identified vulnerability. --risk-audit Perform package risk audit (slow operation). Npm only. --private-ns PRIVATE_NS Private namespace to use while performing oss risk audit. Private packages should not be available in public registries by default. Comma separated values accepted. -t PROJECT_TYPE, --type PROJECT_TYPE Override project type if auto-detection is incorrect --bom BOM Examine using the given Software Bill-of-Materials (SBoM) file in CycloneDX format. Use cdxgen command to produce one. -i SRC_DIR, --src SRC_DIR Source directory -o REPORT_FILE, --report_file REPORT_FILE Report filename with directory --no-error Continue on error to prevent build from breaking ``` ### Scanning containers locally (Python version) Scan `latest` tag of the container `shiftleft/scan-slim` ```bash depscan --no-error --cache --src shiftleft/scan-slim -o containertests/depscan-scan.json -t docker ``` Include `license` to the type to perform license audit. ```bash depscan --no-error --cache --src shiftleft/scan-slim -o containertests/depscan-scan.json -t docker,license ``` You can also specify the image using the sha256 digest ```bash depscan --no-error --src redmine@sha256:a5c5f8a64a0d9a436a0a6941bc3fb156be0c89996add834fe33b66ebeed2439e -o containertests/depscan-redmine.json -t docker ``` You can also save container images using docker or podman save command and pass the archive to depscan for scanning. ```bash docker save -o /tmp/scanslim.tar shiftleft/scan-slim:latest # podman save --format oci-archive -o /tmp/scanslim.tar shiftleft/scan-slim:latest depscan --no-error --src /tmp/scanslim.tar -o reports/depscan-scan.json -t docker ``` Refer to the docker tests under GitHub action workflow for this repo for more examples. ### Scanning projects locally (Docker container) `appthreat/dep-scan` or `quay.io/appthreat/dep-scan` container image can be used to perform the scan. To scan with default settings ```bash docker run --rm -v $PWD:/app appthreat/dep-scan scan --src /app --report_file /app/reports/depscan.json ``` To scan with custom environment variables based configuration ```bash docker run --rm \ -e VDB_HOME=/db \ -e NVD_START_YEAR=2010 \ -e GITHUB_PAGE_COUNT=5 \ -e GITHUB_TOKEN=<token> \ -v /tmp:/db \ -v $PWD:/app appthreat/dep-scan scan --src /app --report_file /app/reports/depscan.json ``` In the above example, `/tmp` is mounted as `/db` into the container. This directory is then specified as `VDB_HOME` for caching the vulnerability information. This way the database can be cached and reused to improve performance. ## Supported languages and package format dep-scan uses [cdxgen](https://github.com/AppThreat/cdxgen) command internally to create Software Bill-of-Materials (SBoM) file for the project. This is then used for performing the scans. The following projects and package-dependency format is supported by cdxgen. | Language | Package format | | ------------------ | ----------------------------------------------------------------------------- | | node.js | package-lock.json, pnpm-lock.yaml, yarn.lock, rush.js, bower.json, .min.js | | java | maven (pom.xml [1]), gradle (build.gradle, .kts), scala (sbt), bazel | | php | composer.lock | | python | setup.py, requirements.txt [2], Pipfile.lock, poetry.lock, bdist_wheel, .whl | | go | binary, go.mod, go.sum, Gopkg.lock | | ruby | Gemfile.lock, gemspec | | rust | Cargo.toml, Cargo.lock | | .Net | .csproj, packages.config, project.assets.json [3], packages.lock.json, .nupkg | | dart | pubspec.lock, pubspec.yaml | | haskell | cabal.project.freeze | | elixir | mix.lock | | c/c++ | conan.lock, conanfile.txt | | clojure | Clojure CLI (deps.edn), Leiningen (project.clj) | | docker / oci image | All supported languages excluding OS packages | **NOTE** The docker image for dep-scan currently doesn't bundle suitable java and maven commands required for bom generation. To workaround this limitation, you can - 1. Use python-based execution from a VM containing the correct versions for java, maven and gradle. 2. Generate the bom file by invoking `cdxgen` command locally and subsequently passing this to `dep-scan` via the `--bom` argument. ## Integration with CI environments ### Integration with Azure DevOps Refer to [this example yaml](https://github.com/AppThreat/WebGoat/blob/develop/azure-pipelines.yml#L33) configuration for integrating dep-scan with Azure Pipelines. The build step would perform the scan and display the report inline as shown below: ![Azure DevOps integration](docs/dep-scan-azure.png) ### Integration with GitHub Actions This tool can be used with GitHub Actions using this [action](https://github.com/marketplace/actions/dep-scan). This repo self-tests itself with both sast-scan and dep-scan! Check the GitHub [workflow file](https://github.com/AppThreat/dep-scan/blob/master/.github/workflows/pythonapp.yml) of this repo. ```yaml - name: Self dep-scan uses: AppThreat/dep-scan-action@master env: VDB_HOME: ${{ github.workspace }}/db GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` ## Customisation through environment variables The following environment variables can be used to customise the behaviour. - VDB_HOME - Directory to use for caching database. For docker based execution, this directory should get mounted as a volume from the host - NVD_START_YEAR - Default: 2018. Supports upto 2002 - GITHUB_PAGE_COUNT - Default: 2. Supports upto 20 ## GitHub Security Advisory To download security advisories from GitHub, a personal access token with the following scope is necessary. - read:packages ```bash export GITHUB_TOKEN="<PAT token>" ``` ## Suggest mode Fix version for each vulnerability is retrieved from the sources. Sometimes, there might be known vulnerabilities in the fix version reported. Eg: in the below screenshot the fix versions suggested for jackson-databind might contain known vulnerabilities. ![Normal mode](docs/depscan-normal.png) By passing an argument `--suggest` it is possible to force depscan to recheck the fix suggestions. This way the suggestion becomes more optimal for a given package group. ![Suggest mode](docs/depscan-suggest.png) Notice, how the new suggested version is `2.9.10.5` which is an optimal fix version. Please note that the optimal fix version may not be the appropriate version for your application based on compatibility. ## Package Risk audit `--risk-audit` argument enables package risk audit. Currently, only npm and pypi packages are supported in this mode. A number of risk factors are identified and assigned weights to compute a final risk score. Packages that then exceed a maximum risk score (`config.pkg_max_risk_score`) are presented in a table. Use `--private-ns` to specify the private package namespace that should be checked for dependency confusion type issues where a private package is available on public npm/pypi registry. Example to check if private packages with namespaces @appthreat and @shiftleft are not accidentally made public use the below argument. ``` --private-ns appthreat,shiftleft ``` | Risk category | Default Weight | Reason | | ------------------------------ | -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | pkg_private_on_public_registry | 4 | Private package is available on a public registry | | pkg_min_versions | 2 | Packages with less than 3 versions represent an extreme where they could be either super stable or quite recent. Special heuristics are applied to ignore older stable packages | | mod_create_min_seconds | 1 | Less than 12 hours difference between modified and creation time. This indicates that the upload had a defect that had to be rectified immediately. Sometimes, such a rapid update could also be malicious | | latest_now_min_seconds | 0.5 | Less than 12 hours difference between the latest version and the current time. Depending on the package such a latest version may or may not be desirable | | latest_now_max_seconds | 0.5 | Package versions that are over 6 years old are in use. Such packages might have vulnerable dependencies that are known or yet to be found | | pkg_min_maintainers | 2 | Package has less than 2 maintainers. Many opensource projects have only 1 or 2 maintainers so special heuristics are used to ignore older stable packages | | pkg_min_users | 0.25 | Package has less than 2 npm users | | pkg_install_scripts | 2 | Package runs a custom pre or post installation scripts. This is often malicious and a downside of npm. | | pkg_node_version | 0.5 | Package supports outdated version of node such as 0.8, 0.10, 4 or 6.x. Such projects might have prototype pollution or closure related vulnerabilities | | pkg_scope | 4 or 0.5 | Packages that are used directly in the application (required scope) gets a score with a weight of 4. Optional packages get a score of 0.25 | | deprecated | 1 | Latest version is deprecated | Refer to `pkg_query.py::get_category_score` method for the risk formula. ### Automatic adjustment A parameter called `created_now_quarantine_seconds` is used to identify packages that are safely past the quarantine period (1 year). Certain risks such as `pkg_min_versions` and `pkg_min_maintainers` are suppressed for packages past the quarantine period. This adjustment helps reduce noise since it is unlikely that a malicious package can exist in a registry unnoticed for over a year. ### Configuring weights All parameters can be customized by using environment variables. For eg: export PKG_MIN_VERSIONS=4 to increase and set the minimum versions category to 4. ## License scan dep-scan can scan the dependencies for any license limitations and report them directly on the console log. To enable license scanning set the environment variable `FETCH_LICENSE` to `true`. ``` export FETCH_LICENSE=true ``` The licenses data is sourced from choosealicense.com and is quite limited. If the license of a given package cannot be reliably matched against this list it will get silently ignored to reduce any noise. This behaviour could change in the future once the detection logic gets improved. ![License scan](docs/license-scan.png) ## Alternatives [Dependency Check](https://github.com/jeremylong/DependencyCheck) is considered to be the industry standard for open-source dependency scanning. After personally using this great product for a number of years I decided to write my own from scratch partly as a dedication to this project. By using a streaming database based on msgpack and using json schema, dep-scan is more performant than dependency check in CI environments. Plus with support for GitHub advisory source and grafeas report export and submission, dep-scan is on track to become a next-generation dependency audit tool There are a number of other tools that piggy back on Sonatype [ossindex](https://ossindex.sonatype.org/) API server. For some reason, I always felt uncomfortable letting a commercial company track the usage of various projects across the world. dep-scan is therefore 100% private and guarantees never to perform any tracking!


نیازمندی

مقدار نام
- appthreat-vulnerability-db
- defusedxml
- PyYAML
- rich


زبان مورد نیاز

مقدار نام
>=3.8 Python


نحوه نصب


نصب پکیج whl appthreat-depscan-2.1.9:

    pip install appthreat-depscan-2.1.9.whl


نصب پکیج tar.gz appthreat-depscan-2.1.9:

    pip install appthreat-depscan-2.1.9.tar.gz