Files
beef/modules/misc/invisible_iframe/module.rb
2015-12-30 08:11:57 +10:00

19 lines
432 B
Ruby

#
# Copyright (c) 2006-2016 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Invisible_iframe < BeEF::Core::Command
def self.options
return [
{'name' => 'target', 'ui_label' => 'URL', 'value' => 'http://beefproject.com/'}
]
end
def post_execute
save({'result' => @datastore['result']})
end
end