Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/extensions/etag/extension.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
module BeEF
7
module Extension
8
module ETag
9
extend BeEF::API::Extension
10
11
@short_name = 'ETag'
12
@full_name = 'Server-to-Client ETag-based Covert Timing Channel'
13
@description = 'This extension provides a custom BeEF HTTP server ' \
14
'that implements unidirectional covert timing channel from ' \
15
'BeEF communication server to zombie browser over Etag header.'
16
end
17
end
18
end
19
20
require 'extensions/etag/api'
21
require 'extensions/etag/etag'
22
23