Probely Developers

Probely Developers

Probely is a web security platform that provides automated vulnerability scanning and real-time security insights for web applications.
                  {
    "count": 6,
    "length": 10,
    "page": 1,
    "page_total": 1,
    "results": [
        {
            "changed": "2018-01-31T16:32:17.238553Z",
            "changed_by": {
                "email": "[email protected]",
                "id": "jMXUw-BE_2vd",
                "name": "Henrique Cimento"
            },
            "completed": "2018-01-31T16:32:17.238553Z",
            "crawler": {
                "error": [
                    "string"
                ],
                "state": "started",
                "status": {
                    "0": 0,
                    "1": 0
                },
                "warning": [
                    "string"
                ]
            },
            "created": "2018-01-31T16:32:17.238553Z",
            "created_by": {
                "email": "[email protected]",
                "id": "jMXUw-BE_2vd",
                "name": "Henrique Cimento"
            },
            "fingerprinter": {
                "count": 0,
                "error": [
                    "string"
                ],
                "state": "started",
                "warning": [
                    "string"
                ]
            },
            "highs": 0,
            "id": "jMXUw-BE_2vd",
            "lows": 0,
            "mediums": 0,
            "scan_profile": "normal",
            "scanner": {
                "error": [
                    "string"
                ],
                "state": "started",
                "status": {
                    "0": 0,
                    "1": 0
                },
                "warning": [
                    "string"
                ]
            },
            "started": "2018-01-31T16:32:17.238553Z",
            "status": "queued",
            "target": {
                "desc": "Object description",
                "id": "jMXUw-BE_2vd",
                "name": "Object name",
                "stack": [
                    "nginx"
                ],
                "url": "string"
            }
        }
    ]
}
              

Response example. If you want to see more check the documentation.

Probely Web Vulnerability Scanning Suite

Quick-Start

Probely is a Web Vulnerability Scanning suite for Agile Teams. It provides continuous scanning of Web Applications and lets you efficiently manage the lifecycle of vulnerabilities found, in a sleek and intuitive API.

Authentication

To use the API, create an API Key:

  1. Select a target from the drop-down list
  2. Go to "Settings" page
  3. Click "Integrations" tab
  4. Name the API Key (e.g., "example.com_key")
Authorization: JWT eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJBRlNJQlp3elFsMDEiLCJ1c2VybmFtZSI6IkNIZ2tkSUROdzV0NSJ9.90UwiPGS2hlvgOLktFU0LfKuatNKmEP79u17VnqT9M

Scan Target

1. Get target list:

curl -X GET \
          -H "Content-Type: application/json" \
          -H "Authorization: JWT PROBELY_AUTH_TOKEN"

2. Start scan on target ID:

curl -X POST \
          -H "Content-Type: application/json" \
          -H "Authorization: JWT PROBELY_AUTH_TOKEN"

3. Check scan status:

curl -X GET \
          -H "Content-Type: application/json" \
          -H "Authorization: JWT PROBELY_AUTH_TOKEN"

View Findings

Get scan results:

curl -X GET \
          -H "Content-Type: application/json" \
          -H "Authorization: JWT PROBELY_AUTH_TOKEN"

Key Concepts

  • Targets define scan scope
  • Sites specify entry point and authentication details
  • Assets are domains to follow during scans
  • Scans run against targets, creating findings
  • Findings contain vulnerability details and suggestions

Probely provides continuous scanning, customizable profiles, Slack and Jira integrations, and an API for full integration with CI/CD pipelines.