mh

PHP Class v1.0

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.

Image

Comments are closed.

Other News:

MalwareHash SDK x64 + Signed DLLs
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...
How to Secure your MalwareHash Account
Login to your Control Panel, click the link “Account”, and then click the link “Security”. In this page you can insert your IP...
How to Register to MalwareHash API Service
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 “...
Free API keys with 50 queries
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...
Software Development Kit – SDK (Delphi, C/C++)
Easily include our API in other applications. Users can download the SDK from their Dashboard: Documentation of the SDK: /////////////////////////////...
PHP Class v1.0
We made available to our users an easy to use PHP Class. Example usage: Scan an entire folder: require_once 'APIService.php';   $APIService = new...