From 63e7f8c349db334f6bbcbcdfa0a13d43b048acf4 Mon Sep 17 00:00:00 2001 From: bcoles Date: Thu, 8 Dec 2011 19:21:56 +1030 Subject: [PATCH] Updated browser min_ver/max_ver for several modules: modules/browser/extract_local_storage/ modules/browser/extract_session_storage/ modules/host/physical_location/ --- .../browser/extract_local_storage/config.yaml | 19 +++++++++++++++++- .../extract_session_storage/config.yaml | 18 ++++++++++++++++- modules/host/physical_location/config.yaml | 20 ++++++++++++++++++- 3 files changed, 54 insertions(+), 3 deletions(-) diff --git a/modules/browser/extract_local_storage/config.yaml b/modules/browser/extract_local_storage/config.yaml index 3f93f935d..256251c90 100644 --- a/modules/browser/extract_local_storage/config.yaml +++ b/modules/browser/extract_local_storage/config.yaml @@ -22,4 +22,21 @@ beef: description: "Extracts data from the HTML5 localStorage object." authors: ["bcoles"] target: - working: ["FF", "S", "C"] + working: + IE: + min_ver: 8 + max_ver: latest + FF: + # It's actually 3.5 but min_ver only supports integers + min_ver: 4 + max_ver: latest + O: + min_ver: 11 + max_ver: latest + C: + min_ver: 4 + max_ver: latest + S: + min_ver: 4 + max_ver: latest + diff --git a/modules/browser/extract_session_storage/config.yaml b/modules/browser/extract_session_storage/config.yaml index 4982ad662..59ca427f2 100644 --- a/modules/browser/extract_session_storage/config.yaml +++ b/modules/browser/extract_session_storage/config.yaml @@ -22,4 +22,20 @@ beef: description: "Extracts data from the HTML5 sessionStorage object." authors: ["bcoles"] target: - working: ["FF", "S", "O", "C", "IE"] + working: + IE: + min_ver: 8 + max_ver: latest + FF: + # It's actually 3.5 but min_ver only supports integers + min_ver: 4 + max_ver: latest + O: + min_ver: 11 + max_ver: latest + C: + min_ver: 4 + max_ver: latest + S: + min_ver: 4 + max_ver: latest diff --git a/modules/host/physical_location/config.yaml b/modules/host/physical_location/config.yaml index 32fec8a55..2111cbbe2 100644 --- a/modules/host/physical_location/config.yaml +++ b/modules/host/physical_location/config.yaml @@ -22,4 +22,22 @@ beef: description: "This module will retrieve the physical location of the hooked browser using the geolocation API." authors: ["antisnatchor"] target: - user_notify: ['ALL'] + user_notify: + IE: + min_ver: 9 + max_ver: latest + FF: + # It's actually 3.5 but min_ver only supports integers + min_ver: 4 + max_ver: latest + O: + # It's actually 10.6 but min_ver only supports integers + min_ver: 11 + max_ver: latest + C: + min_ver: 5 + max_ver: latest + S: + min_ver: 5 + max_ver: latest +