Path: blob/master/modules/browser/play_sound/command.js
1155 views
//1// Copyright (c) 2006-2025Wade Alcorn - [email protected]2// Browser Exploitation Framework (BeEF) - https://beefproject.com3// See the file 'doc/COPYING' for copying permission4//56beef.execute(function() {7var url = "<%== @sound_file_uri %>";8try {9var sound = new Audio(url);10sound.play();11beef.debug("[Play Sound] Played sound successfully: " + url);12beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=Sound Played", beef.are.status_success());13} catch (e) {14beef.debug("[Play Sound] HTML5 audio unsupported. Could not play: " + url);15beef.net.send("<%= @command_url %>", <%= @command_id %>, "fail=audio not supported", beef.are.status_error());16}17});181920