Path: blob/master/modules/browser/get_visited_domains/module.rb
1154 views
#1# Copyright (c) 2006-2025 Wade Alcorn - [email protected]2# Browser Exploitation Framework (BeEF) - https://beefproject.com3# See the file 'doc/COPYING' for copying permission4#56class Get_visited_domains < BeEF::Core::Command7def self.options8[{9'name' => 'domains',10'description' => 'Specify additional resources to fetch during visited domains analysis. Paste to the below field full URLs leading to CSS, image, JS or other *static* resources hosted on desired page. Separate domain names with url by using semicolon (;). Next domains separate by comma (,).',11'type' => 'textarea',12'ui_label' => 'Specify custom page to check',13'value' => 'Github ; https://assets-cdn.github.com/favicon.ico,',14'width' => '400px',15'height' => '200px'16}]17end1819def post_execute20content = {}21content['results'] = @datastore['results']22save content23end24end252627