1/* 2 * Copyright (c) 2006-2026 Wade Alcorn - [email protected] 3 * Browser Exploitation Framework (BeEF) - https://beefproject.com 4 * See the file 'doc/COPYING' for copying permission 5 */ 6 7var answer = confirm("Do you really want to leave us ??") 8if (answer){ 9 alert("Okay :(") 10 send("User chose to leave."); 11 window.location = $j(this).attr('href'); 12} 13else{ 14 alert("Okay enjoy ") 15 send("User chose to stay."); 16} 17 18