1# 2# Copyright (c) 2006-2025 Wade Alcorn - [email protected] 3# Browser Exploitation Framework (BeEF) - https://beefproject.com 4# See the file 'doc/COPYING' for copying permission 5# 6class Popunder_window < BeEF::Core::Command 7 def self.options 8 [{ 'name' => 'clickjack', 9 'ui_label' => 'Clickjack', 10 'type' => 'checkbox', 11 'checked' => false }] 12 end 13 14 def post_execute 15 save({ 'result' => @datastore['result'] }) 16 end 17end 18 19