Files
metasploit-gs/lib/msf/scripts/meterpreter/services.rb
T
James Lee 34bc92584b Refactor WindowsServices
* Pulls common code up from several methods into #open_sc_manager
* Deprecates the name Windows::WindowsServices in favor of
  Windows::Services. The platform is already clear from the namespace.
* Makes the post/test/services test module actually work

[See #1007]
[See #1012]
2012-11-06 17:30:04 -06:00

16 lines
184 B
Ruby

# -*- coding: binary -*-
require 'msf/core/post/windows/services'
module Msf
module Scripts
module Meterpreter
module Common
include ::Msf::Post::Windows::Services
end
end
end
end