module BeEF
module Extension
module AdminUI
module Controllers
class Panel < BeEF::Extension::AdminUI::HttpController
def initialize
super({
'paths' => {
'/' => method(:index)
}
})
end
def index
@headers['X-Frame-Options'] = 'sameorigin'
end
end
end
end
end
end