visualappeal / php-ssllabs-api
API for ssllabs.com
Installs: 2 516
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 13
Open Issues: 0
Requires
- php: >=7.0
Requires (Dev)
- phpunit/phpunit: ^7.4
This package is auto-updated.
Last update: 2024-11-11 14:33:21 UTC
README
This PHP library provides basic access to the SSL Labs API.
Installation
composer require visualappeal/php-ssllabs-api
Usage
It's build upon the official API documentation at https://github.com/ssllabs/ssllabs-scan/blob/master/ssllabs-api-docs.md
<?php require_once 'vendor/autoload.php'; //Return API response as JSON string $api = new SslLabs(); //Return API response as JSON object //$api = new SslLabs(true); //get API information var_dump($api->fetchApiInfo()); ?>
Methods
info()
No parameters needed
Returns an Info object (see https://github.com/ssllabs/ssllabs-scan/blob/master/ssllabs-api-docs.md#info).
getStatusCodes()
No parameters needed
Returns a StatusCodes instance (see https://github.com/ssllabs/ssllabs-scan/blob/master/ssllabs-api-docs.md#statuscodes).
analyze()
See https://github.com/ssllabs/ssllabs-scan/blob/master/ssllabs-api-docs.md#invoke-assessment-and-check-progress for parameter description.
Returns a Host object (see https://github.com/ssllabs/ssllabs-scan/blob/master/ssllabs-api-docs.md#host).
Make sure to check the 'status' attribute inside Host object.
analyzeCached()
You can also use fetchHostInformation() with the proper parameters, this is just a helper function.
Returns a Host object (see https://github.com/ssllabs/ssllabs-scan/blob/master/ssllabs-api-docs.md#host).
Also make sure to check the 'status' attribute inside Host object.
getEndpointData()
See https://github.com/ssllabs/ssllabs-scan/blob/master/ssllabs-api-docs.md#retrieve-detailed-endpoint-information for parameter description.
Returns an Endpoint object (see https://github.com/ssllabs/ssllabs-scan/blob/master/ssllabs-api-docs.md#endpoint).
Custom API calls
Use sendApiRequest() method to create custom API calls.
$api->sendApiRequest('apiCallName', array('p1' => 'p1_value', 'p2' => 'p2_value'));
getReturnObjects()
Getter for returnObjects
setReturnObjects()
Setter for returnObjects
Example output (as JSON strings)
Get API information
$api->info();
{ "engineVersion": "1.15.1", "criteriaVersion": "2009i", "clientMaxAssessments": 25, "maxAssessments": 25, "currentAssessments": 0, "messages": [ "This assessment service is provided free of charge by Qualys SSL Labs, subject to our terms and conditions: https://www.ssllabs.com/about/terms.html" ] }
Get host information
$api->analyze('https://www.google.de');
{ "host": "https://www.google.de", "port": 443, "protocol": "HTTP", "isPublic": false, "status": "READY", "startTime": 1427195976527, "testTime": 1427196284525, "engineVersion": "1.15.1", "criteriaVersion": "2009i", "endpoints": [ { "ipAddress": "74.125.239.119", "serverName": "nuq05s01-in-f23.1e100.net", "statusMessage": "Ready", "grade": "B", "hasWarnings": false, "isExceptional": false, "progress": 100, "duration": 77376, "eta": 1610, "delegation": 3 }, { "ipAddress": "74.125.239.120", "serverName": "nuq05s01-in-f24.1e100.net", "statusMessage": "Ready", "grade": "B", "hasWarnings": false, "isExceptional": false, "progress": 100, "duration": 76386, "eta": 1609, "delegation": 3 }, { "ipAddress": "74.125.239.127", "serverName": "nuq05s01-in-f31.1e100.net", "statusMessage": "Ready", "grade": "B", "hasWarnings": false, "isExceptional": false, "progress": 100, "duration": 76937, "eta": 1608, "delegation": 3 }, { "ipAddress": "74.125.239.111", "serverName": "nuq05s01-in-f15.1e100.net", "statusMessage": "Ready", "grade": "B", "hasWarnings": false, "isExceptional": false, "progress": 100, "duration": 77171, "eta": 1606, "delegation": 3 } ] }
Get endpoint information
$api->getEndpointData('https://www.google.de', '74.125.239.111');
(just an except of the entire JSON output)
{ "ipAddress": "74.125.239.111", "serverName": "nuq05s01-in-f15.1e100.net", "statusMessage": "Ready", "grade": "B", "hasWarnings": false, "isExceptional": false, "progress": 100, "duration": 77171, "eta": 1609, "delegation": 3, "details": { "hostStartTime": 1427195976527, "key": {}, "cert": {}, "chain": {}, "protocols": [], "suites": {}, "serverSignature": "gws", "prefixDelegation": true, "nonPrefixDelegation": true, "vulnBeast": false, "renegSupport": 2, "sessionResumption": 1, "compressionMethods": 0, "supportsNpn": true, "npnProtocols": "h2-15 h2-14 spdy/3.1 spdy/3 http/1.1", "sessionTickets": 1, "ocspStapling": false, "sniRequired": false, "httpStatusCode": 200, "supportsRc4": true, "forwardSecrecy": 2, "rc4WithModern": true, "sims": {}, "heartbleed": false, "heartbeat": false, "openSslCcs": 1, "poodleTls": 1, "fallbackScsv": true } }
Terms and Conditions
As this is just a PHP library for SSL Labs API please refer to SSL Labs terms and conditions at https://www.ssllabs.com/about/terms.html