Pro Loot API
pro.loot_download
The pro.loot_download method downloads the file associated with loot record, by unique ID
Request Example
[ "pro.loot_download", "<token>", 99 ]
Response Example
{ "data" => "<BinaryData>" }
pro.loot_list
The pro.loot_download method returns a list of available loot records in a workspace
Request Example
[ "pro.loot_list", "<token>", "Project1" ]
Response Example
{
"900" => {
'workspace' => "Project1",
'host' => "1.2.3.4",
'service' => 80,
'proto' => 'tcp',
'ltype' => 'screenshot',
'ctype' => 'image/jpeg',
'created_at' => <Unix Timestamp Integer>,
'updated_at' => <Unix Timestamp Integer>,
'name' => 'desktop.jpg',
'info' => 'User desktop screenshot',
'path' => '/opt/metasploit/loot/wspace_1_xxxxx.jpg',
'size' => 40945
}
}