Additional Edge fingerprinting fixes. Bumped min XP FF ver.

This commit is contained in:
Jack Walker
2020-04-27 09:58:59 +10:00
parent d44b6e6729
commit 7d709c7973
3 changed files with 7 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ env:
# - CONFIG_FILE=osx/catalina/catalina_firefox_11.config.yml
# - CONFIG_FILE=osx/catalina/catalina_firefox_68esr.config.yml
# - CONFIG_FILE=osx/catalina/catalina_firefox_75.config.yml
- CONFIG_FILE=osx/catalina/catalina_safari_13.config.yml
# - CONFIG_FILE=osx/catalina/catalina_safari_13.config.yml
# - CONFIG_FILE=osx/elcapitan/elcapitan_chrome_14.config.yml
# - CONFIG_FILE=osx/elcapitan/elcapitan_chrome_81.config.yml
# - CONFIG_FILE=osx/elcapitan/elcapitan_firefox_6.config.yml
@@ -37,7 +37,7 @@ env:
# - CONFIG_FILE=windows/win10/win10_firefox_32.config.yml
# - CONFIG_FILE=windows/win10/win10_firefox_68esr.config.yml
# - CONFIG_FILE=windows/win10/win10_firefox_75.config.yml
# - CONFIG_FILE=windows/win10/win10_edge_81.config.yml
- CONFIG_FILE=windows/win10/win10_edge_81.config.yml
# - CONFIG_FILE=windows/win10/win10_ie_11.config.yml
# - CONFIG_FILE=windows/win8/win8_chrome_22.config.yml
# - CONFIG_FILE=windows/win8/win8_chrome_81.config.yml
@@ -48,8 +48,8 @@ env:
# - CONFIG_FILE=windows/xp/xp_chrome_14.config.yml
# - CONFIG_FILE=windows/xp/xp_chrome_28.config.yml
# - CONFIG_FILE=windows/xp/xp_chrome_43.config.yml
- CONFIG_FILE=windows/xp/xp_firefox_10.config.yml
- CONFIG_FILE=windows/xp/xp_firefox_25.config.yml
- CONFIG_FILE=windows/xp/xp_firefox_11.config.yml
# - CONFIG_FILE=windows/xp/xp_firefox_25.config.yml
# - CONFIG_FILE=windows/xp/xp_firefox_47.config.yml
# - CONFIG_FILE=windows/xp/xp_ie_7.config.yml
# jobs:

View File

@@ -127,7 +127,7 @@ beef.browser = {
* @example: beef.browser.isEdge()
*/
isEdge: function () {
return !beef.browser.isIE() && !!window.StyleMedia && (window.navigator.userAgent.match(/Edg\/\d+\.\d/) || window.navigator.userAgent.match(/Edge\/\d+\.\d/));
return !beef.browser.isIE() && !!window.styleMedia && (/Edg\/\d+\.\d/.test(window.navigator.userAgent) || /Edge\/\d+\.\d/.test(window.navigator.userAgent));
},
/**

View File

@@ -1,7 +1,7 @@
server: "hub-cloud.browserstack.com"
common_caps:
"build": "Windows XP Firefox 10"
"build": "Windows XP Firefox 11"
"project": "BeEF"
"browserstack.local": true
"browserstack.video": false
@@ -9,6 +9,6 @@ common_caps:
browser_caps:
-
"browser": "firefox"
"browser_version": "10.0"
"browser_version": "11.0"
"os": "windows"
"os_version": "xp"