Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/modules/browser/detect_extensions/module.rb
1154 views
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
#
6
# More info:
7
# http://blog.kotowicz.net/2012/02/intro-to-chrome-addons-hacking.html
8
# http://jeremiahgrossman.blogspot.fr/2006/08/i-know-what-youve-got-firefox.html
9
#
10
class Detect_extensions < BeEF::Core::Command
11
def post_execute
12
content = {}
13
content['extension'] = @datastore['extension']
14
save content
15
end
16
end
17
18