add references

MS-2855/keylogger-mettle-extension
Tim W 2018-01-30 17:52:01 +08:00
parent 9aaf93ff3b
commit 39c07e2289
2 changed files with 26 additions and 10 deletions

View File

@ -1,3 +1,12 @@
/*
* References:
* @parchedmind
* https://github.com/CylanceVulnResearch/osx_runbin/blob/master/run_bin.c
*
* @nologic
* https://github.com/nologic/shellcc
*/
#include <stdio.h>
#include <string.h>

View File

@ -13,16 +13,23 @@ module MetasploitModule
include Msf::Sessions::MettleConfig
def initialize(info = {})
super(
update_info(
info,
'Name' => 'OSX Meterpreter',
'Description' => 'Inject the mettle server payload (staged)',
'Platform' => 'osx',
'Arch' => ARCH_X64,
'License' => MSF_LICENSE,
'Session' => Msf::Sessions::Meterpreter_x64_OSX,
'Convention' => 'sockedi',
super(update_info(info,
'Name' => 'OSX Meterpreter',
'Description' => 'Inject the mettle server payload (staged)',
'Platform' => 'osx',
'Author' => [
'parchedmind', # osx_runbin
'nologic', # shellcc
'timwr', # metasploit integration
],
'References' => [
[ 'URL', 'https://github.com/CylanceVulnResearch/osx_runbin' ],
[ 'URL', 'https://github.com/nologic/shellcc' ]
],
'Arch' => ARCH_X64,
'License' => MSF_LICENSE,
'Session' => Msf::Sessions::Meterpreter_x64_OSX,
'Convention' => 'sockedi',
)
)
end