Current File : //root/panel/etc/apps/softaculous/test.php
<?php
$url = 'http://45.113.136.119/index.php?'.
                        'api_key=fhJHtGxt3FkQ5G6S'.
                        '&api_pass=mVCByzzrLN71S5iFo3U6M4oeutqUc77b'.
                        '&act=home'.
                        '&api=serialize';

// Set the curl parameters.
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $time);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

// Turn off the server and peer verification (TrustManager Concept).
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);

// Get response from the server.
$resp = curl_exec($ch);

// Unserialize data
$res = unserialize($resp);

// The Installed scripts list is in the array key 'iscripts'
print_r($res['iscripts']);