Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/modules/network/detect_soc_nets/module.rb
1866 views
1
#
2
# Copyright (c) 2006-2026 Wade Alcorn - [email protected]
3
# Browser Exploitation Framework (BeEF) - https://beefproject.com
4
# See the file 'doc/COPYING' for copying permission
5
#
6
class Detect_soc_nets < BeEF::Core::Command
7
def self.options
8
[
9
{ 'name' => 'timeout', 'ui_label' => 'Detection Timeout', 'value' => '5000' }
10
]
11
end
12
13
def post_execute
14
content = {}
15
content['GMail'] = @datastore['gmail']
16
content['Facebook'] = @datastore['facebook']
17
content['Twitter'] = @datastore['twitter']
18
save content
19
end
20
end
21
22