# # Copyright (c) 2006-2015 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # module BeEF module Core module Constants module CommandModule # @note Constants to define the execution probability of a command module (this is browser dependant) VERIFIED_WORKING = 0 VERIFIED_UNKNOWN = 1 VERIFIED_USER_NOTIFY = 2 VERIFIED_NOT_WORKING = 3 end end end end