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.