Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/core/main/constants/commandmodule.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
7
module BeEF
8
module Core
9
module Constants
10
module CommandModule
11
# @note Constants to define the execution probability of a command module (this is browser dependant)
12
VERIFIED_WORKING = 0
13
VERIFIED_UNKNOWN = 1
14
VERIFIED_USER_NOTIFY = 2
15
VERIFIED_NOT_WORKING = 3
16
end
17
end
18
end
19
end
20
21