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 +