#1# Copyright (c) 2006-2025 Wade Alcorn - [email protected]2# Browser Exploitation Framework (BeEF) - https://beefproject.com3# See the file 'doc/COPYING' for copying permission4#56# @note Prevent exec from ever being used7def exec(_args)8puts 'For security reasons the exec method is not accepted in the Browser Exploitation Framework code base.'9exit10end1112# @note Prevent system from ever being used13def system(_args)14puts 'For security reasons the system method is not accepted in the Browser Exploitation Framework code base.'15exit16end1718# @note Prevent Kernel.system from ever being used19def Kernel.system(_args)20puts 'For security reasons the Kernel.system method is not accepted in the Browser Exploitation Framework code base.'21exit22end232425