From 5c4888097d3097e25965afee38909ec1d0ec0102 Mon Sep 17 00:00:00 2001 From: "bcoles@gmail.com" Date: Mon, 13 Jun 2011 23:24:39 +0000 Subject: [PATCH] Added Safari to modules/misc/extract_local_storage confirmed browser list git-svn-id: https://beef.googlecode.com/svn/trunk@997 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9 --- modules/misc/extract_local_storage/config.yaml | 2 +- modules/misc/extract_local_storage/module.rb | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/modules/misc/extract_local_storage/config.yaml b/modules/misc/extract_local_storage/config.yaml index b83065761..bb43eb998 100644 --- a/modules/misc/extract_local_storage/config.yaml +++ b/modules/misc/extract_local_storage/config.yaml @@ -7,4 +7,4 @@ beef: description: "Extracts data from the HTML5 localStorage object." authors: ["bcoles"] target: - working: ['FF'] + working: [FF,S] diff --git a/modules/misc/extract_local_storage/module.rb b/modules/misc/extract_local_storage/module.rb index c89362d3a..e76ce2c21 100644 --- a/modules/misc/extract_local_storage/module.rb +++ b/modules/misc/extract_local_storage/module.rb @@ -21,7 +21,12 @@ class Extract_local_storage < BeEF::Core::Command 'verified_status' => VERIFIED_WORKING, 'browser_name' => FF }) - + + set_target({ + 'verified_status' => VERIFIED_WORKING, + 'browser_name' => S + }) + use_template! end