We made available to our users an easy to use PHP Class.
Example usage:
Scan an entire folder:
require_once 'APIService.php';
$APIService = new APIService( 'YOUR_API_KEY_HERE' );
foreach ( glob( './*' ) as $item )
$APIService->add_hashes( md5( $item ) );
$APIService->call();
Scan a single file:
require_once 'APIService.php';
$APIService = new APIService( 'YOUR_API_KEY_HERE' );
$APIService->add_hashes( array( 'c4976df35b7d2d2a77a3d012439909bc', 'c4976df35b7d2d2a77a3d012439909bd' ) );
$APIService->call();
The PHP Class is available for download in the User Dashboard.

Posted by
Admin on Friday, January 20th, 2012
We have finished development of MalwareHash.com SDK for x64 OS, more we have signed both DLL files (x86 DLL and x64 DLL) with our certificate. The SDK...
Posted by
Admin on Tuesday, December 6th, 2011
Login to your Control Panel, click the link “Account”, and then click the link “Security”. In this page you can insert your IP...
Posted by
Admin on Monday, December 5th, 2011
Click the link User Sign Up, fill in all of the required fields and type in the correct captcha (needed to fight spam-bots), then click the button “...
Posted by
Admin on Monday, December 5th, 2011
We have recently included a link “Free API Key” in user Dashboard: Every new user that register to the service, can make use of this optio...
Posted by
Admin on Monday, December 5th, 2011
Easily include our API in other applications. Users can download the SDK from their Dashboard: Documentation of the SDK: /////////////////////////////...
Posted by
Admin on Monday, December 5th, 2011
We made available to our users an easy to use PHP Class. Example usage: Scan an entire folder: require_once 'APIService.php'; $APIService = new...