Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/modules/social_engineering/simple_hijacker/templates/confirmbox.js
1884 views
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
7
var answer = confirm("Do you really want to leave us ??")
8
if (answer){
9
alert("Okay :(")
10
send("User chose to leave.");
11
window.location = $j(this).attr('href');
12
}
13
else{
14
alert("Okay enjoy ")
15
send("User chose to stay.");
16
}
17
18