Issue #556 : the RESTful api call to retrieve HBs now returns also the ID of the HB

This commit is contained in:
antisnatchor
2012-06-30 16:00:31 +01:00
parent b784710ca9
commit 3aadf6fa75

View File

@@ -76,11 +76,12 @@ module BeEF
details = BeEF::Core::Models::BrowserDetails
{
'id' => hb.id,
'session' => hb.session,
'name' => details.get(hb.session, 'BrowserName'),
'version' => details.get(hb.session, 'BrowserVersion'),
'os' => details.get(hb.session, 'OsName'),
'platform' => details.get(hb.session, 'SystemPlatform'),
'session' => hb.session,
'ip' => hb.ip,
'domain' => details.get(hb.session, 'HostName'),
'port' => hb.port.to_s,