Tool integration

NowSecure Integration Guide

Automated mobile app security testing platform for iOS and Android with REST API findings export

Get a Free API Key

Integrate NowSecure with Vulnetix. Use the NowSecure REST API to retrieve automated mobile security assessment findings and upload to Vulnetix for mobile vulnerability tracking.

SaaS platformJSONSARIFPDF

Run NowSecure in CI

Scan on every push and upload the results to Vulnetix:

- name: Submit app to NowSecure
  env:
    NS_TOKEN: ${{ secrets.NS_TOKEN }}
  run: |
    TASK_ID=$(curl -s -X POST "https://api.nowsecure.com/build"       -H "Authorization: Bearer $NS_TOKEN"       -F "binary=@app-release.apk" | jq -r '.task')
    echo "TASK_ID=$TASK_ID" >> $GITHUB_ENV

- name: Retrieve findings
  run: |
    sleep 300  # Allow time for assessment
    curl -s "https://api.nowsecure.com/assessment/$TASK_ID/results"       -H "Authorization: Bearer $NS_TOKEN" | jq '.findings' > nowsecure-findings.json

- name: Upload to Vulnetix
  run: vulnetix upload --file nowsecure-findings.json

Centralise NowSecure results in Vulnetix

Upload NowSecure JSON, SARIF, PDF output to the Vulnetix platform to deduplicate findings, prioritise them with EPSS, CISA KEV and Coalition ESS exploit intelligence, and track remediation across every scanner in a single queue.

NowSecure documentation ↗

Wire NowSecure into your CI/CD pipeline →