This is the source repository to build the docker image available at https://hub.docker.com/repository/docker/nowsecure/gitlab-ci to be used within GitLab CI.
This image gives you the ability to perform automatic mobile app security testing for Android and iOS mobile apps through the NowSecure test engine.
Purpose-built for mobile app teams, NowSecure provides fully automated, mobile appsec testing coverage (static+dynamic+behavioral tests) optimized for the dev pipeline. Because NowSecure tests the mobile app binary post-build from Gitlab, it can test software developed in any language and provides complete results including newly developed code, 3rd party code, and compiler/operating system dependencies. With near zero false positives, NowSecure pinpoints real issues in minutes, with developer fix details, and routes tickets automatically into ticketing systems, such as Jira. NowSecure is frequently used to perform security testing in parallel with functional testing in the dev cycle. Requires a license for and connection to the NowSecure software. https://www.nowsecure.com
Generate token as described in https://nowsecurehelp.zendesk.com/hc/en-us/articles/360034149691 (Note: customer sign in is required to access this resource). This token will be specified by environment variable NOWSECURE_TOKEN.
- NOWSECURE_GROUP=default_group- Specifies group for your account
- NOWSECURE_TOKEN=Access_Token- Specifies token from your Platform account
- NOWSECURE_BINARY_FILE=default_binary- Path to Android apk or IOS ipa - this file must be mounted via volume for the access
Note: We recommend using secured environment variables in Gitlab to specify NOWSECURE_GROUP and NOWSECURE_BINARY_FILE values.
Following are optional parameters that can be set from environment variables:
- NOWSECURE_MIN_WAIT=nn (default 30)- Default max wait in minutes for the mobile analysis
- NOWSECURE_MIN_SCORE=nn (default 50)- Minimum score the app must have otherwise it would fail
- NOWSECURE_ARTIFACTS_DIR=/home/gradle/artifacts- Specifies artifacts directory where json files are stored
Here is a sample config that you can save under .gitlab-ci.yml in your mobile project. Please read https://docs.gitlab.com/ee/ci/pipelines/pipeline_architectures.html for more information on Gitlab Pipeline.
nowsecure:
  stage: test
  image: nowsecure/gitlab-ci:latest
  variables:
    NOWSECURE_BINARY_FILE: test.apk
  script:
    - nowsecure.sh
stages:
  - build
  - test
  - deploy
image: alpine
build_a:
  stage: build
  script:
    - echo "Building...."
test_a:
  stage: test
  script:
    - echo "Testing..."
deploy_a:
  stage: deploy
  script:
    - echo "Deploying..."Select Settings option from your Gitlab project and then jump to Variables section to add environment variables for your pipeline, e.g.
The CI/CD will be run when you check-in new changes or you can select CI/CD option from your Gitlab project and then click on Run Pipeline to submit a pipeline, e.g.
Upon completion of CI/CD job, you will see a score of your mobile app. Note: you can configure your build to fail the CI/CD job when score is below a configurable miniumum value, e.g.