About this Cloud Hub Solution:
Probely is a Web Vulnerability Scanning suite designed for Agile Teams. It offers continuous scanning of Web Applications and enables efficient management of the vulnerability lifecycle through a sleek and intuitive API.
To use the API, create an API Key:
- Choose a target from the drop-down list
- Navigate to the "Settings" page
- Click on the "Integrations" tab
- Assign a name to the API Key (e.g., "example.com_key")
Authorization: JWT eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJBRlNJQlp3elFsMDEiLCJ1c2VybmFtZSI6IkNIZ2tkSURdzV0NSJ9.90UwiPGS2hlvgOLktFU0LfKuatNKmEP79u17VnqT9MScan
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"
4. Get scan results:
curl -X GET \
-H "Content-Type: application/json" \
-H "Authorization: JWT PROBELY_AUTH_TOKEN"
Key Concepts:
- Targets determine the scope of the scan
- Sites specify the entry point and authentication details for the scan
- Assets are the domains that are followed during the scan
- Scans are executed against targets, resulting in findings
- Findings contain detailed information about vulnerabilities and provide suggestions for remediation
- Probely offers continuous scanning, customizable profiles, integrations with Slack and Jira, and a comprehensive API for seamless integration with CI/CD pipelines.