Sample

The Sample object contains data about an original file uploaded for analysis.

Structure

Key

Type

Description

id

number

Sample ID.

name

string

File name.

format_name

string

File format. It is identified by Dr.Web vxCube automatically. File format determines the command for file running if the command is not specified explicitly when starting the file analysis.

is_x64

boolean

Determines the bitness of the platform for file running. It is null if the file is not executable.

md5

string

MD5 hash.

sha1

string

SHA1 hash.

sha256

string

SHA256 hash.

size

number

File size in bytes.

upload_date

string

Date and time the file was uploaded.

platforms

array [Platform.code]

List of supported platforms for file running.

Example

{

 "id": 42,

 "name": "sample.exe",

 "format_name": "sys",

 "is_x64": null,

 "md5": "a0b0f87193b79ac1db32f251f2f5e5b2",

 "sha1": "e54639e9d81680d0acc154d42ae7350ed481b848",

 "sha256": "51133e7e4d52b94e3360ac1866b76bf2b2bca056492bcf93de3c37d6b0c07104",

 "size": 1897856,

 "upload_date": "2018-07-31T11:42:36.873274+00:00"

 "platforms": [

   "winxpx86",

   "win7x86",

   "win7x64",

   "win10x64_1903"

 ]

}