33 lines
928 B
Ruby
33 lines
928 B
Ruby
#
|
|
# Copyright (c) 2006-2014 Wade Alcorn - wade@bindshell.net
|
|
# Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
# See the file 'doc/COPYING' for copying permission
|
|
#
|
|
class Play_sound < BeEF::Core::Command
|
|
|
|
# set and return all options for this module
|
|
def self.options
|
|
|
|
configuration = BeEF::Core::Configuration.instance
|
|
proto = configuration.get("beef.http.https.enable") == true ? "https" : "http"
|
|
|
|
sound_file_url = "#{proto}://#{configuration.get("beef.http.host")}:#{configuration.get("beef.http.port")}/demos/sound.wav"
|
|
|
|
return [{
|
|
'name' => 'sound_file_uri',
|
|
'description' => 'The web accessible URI for the wave sound file.',
|
|
'ui_label' => 'Sound File Path',
|
|
'value' => sound_file_url,
|
|
'width' => '300px'
|
|
}]
|
|
end
|
|
|
|
def post_execute
|
|
content = {}
|
|
content['result'] = @datastore['result']
|
|
|
|
save content
|
|
end
|
|
|
|
end
|