File Intel | Java SDK
The File Intel service enables you to submit a file's hash and get the file's attributes back - giving you insight into the disposition of the file.
Reputation check
reputation(java.lang.String, java.lang.String)Retrieve file reputation from a default provider, using the file's hash.
FileReputationResponse response = client.reputation(
"142b638c6a60b60c7f9928da4fb85a5a8e1422a9ffdc9ee49e17e56ccca9cf6e",
"sha256");
Reputation check - hash, hashType, provider
reputation(java.lang.String, java.lang.String,java.lang.String)Retrieve file reputation from a provider, using the file's hash.
FileReputationResponse response = client.reputation(
"142b638c6a60b60c7f9928da4fb85a5a8e1422a9ffdc9ee49e17e56ccca9cf6e",
"sha256",
"reversinglabs");
Reputation check - hash, hashType, verbose, raw
reputation(java.lang.String, java.lang.String,boolean,boolean)Retrieve file reputation from a default provider, using the file's hash.
FileReputationResponse response = client.reputation(
"142b638c6a60b60c7f9928da4fb85a5a8e1422a9ffdc9ee49e17e56ccca9cf6e",
"sha256",
true,
false);
Reputation check - hash, hashType, provider, verbose, raw
reputation(java.lang.String, java.lang.String,java.lang.String,boolean,boolean)Retrieve file reputation from a provider, using the file's hash.
FileReputationResponse response = client.reputation(
"142b638c6a60b60c7f9928da4fb85a5a8e1422a9ffdc9ee49e17e56ccca9cf6e",
"sha256",
"reversinglabs",
true,
false);