From 30b0ec5f6e876bd34f8c034afd8cc713da571d44 Mon Sep 17 00:00:00 2001 From: Brendan Coles Date: Sat, 10 Mar 2018 06:24:00 +0000 Subject: [PATCH] Water is wet --- modules/phonegap/phonegap_beep/config.yaml | 2 +- modules/phonegap/phonegap_check_connection/config.yaml | 2 +- modules/phonegap/phonegap_detect/command.js | 6 ++---- modules/phonegap/phonegap_file_upload/config.yaml | 2 +- modules/phonegap/phonegap_geo_locate/config.yaml | 2 +- modules/phonegap/phonegap_globalization_status/config.yaml | 2 +- modules/phonegap/phonegap_keychain/config.yaml | 2 +- modules/phonegap/phonegap_list_contacts/config.yaml | 2 +- modules/phonegap/phonegap_list_files/config.yaml | 2 +- modules/phonegap/phonegap_persist_resume/config.yaml | 2 +- modules/phonegap/phonegap_persistence/config.yaml | 2 +- modules/phonegap/phonegap_plugin_detection/config.yaml | 2 +- modules/phonegap/phonegap_prompt_user/config.yaml | 2 +- modules/phonegap/phonegap_start_record_audio/config.yaml | 2 +- modules/phonegap/phonegap_stop_record_audio/config.yaml | 2 +- 15 files changed, 16 insertions(+), 18 deletions(-) diff --git a/modules/phonegap/phonegap_beep/config.yaml b/modules/phonegap/phonegap_beep/config.yaml index e4ff70612..9a5c6bf3d 100644 --- a/modules/phonegap/phonegap_beep/config.yaml +++ b/modules/phonegap/phonegap_beep/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "Beep" - description: "Make the phone beep" + description: "Make the phone beep. This module requires the PhoneGap API." authors: ["mh"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_check_connection/config.yaml b/modules/phonegap/phonegap_check_connection/config.yaml index 9b4343c73..0b3d6ad63 100644 --- a/modules/phonegap/phonegap_check_connection/config.yaml +++ b/modules/phonegap/phonegap_check_connection/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "Check Connection" - description: "Find out the network connection type e.g. Wifi, 3G." + description: "Find out the network connection type e.g. Wifi, 3G. This module requires the PhoneGap API." authors: ["mh"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_detect/command.js b/modules/phonegap/phonegap_detect/command.js index 18052d1ab..c6ddeade2 100644 --- a/modules/phonegap/phonegap_detect/command.js +++ b/modules/phonegap/phonegap_detect/command.js @@ -19,10 +19,8 @@ beef.execute(function() { + " uuid: " + device.uuid + " version: " + device.version + " model: " + device.model; + beef.net.send("<%= @command_url %>", <%= @command_id %>, "phonegap=" + phonegap_details, beef.are.status_success()); } catch(e) { - phonegap_details = "unable to detect phonegap"; + beef.net.send("<%= @command_url %>", <%= @command_id %>, "fail=unable to detect phonegap", beef.are.status_error()); } - - beef.net.send("<%= @command_url %>", <%= @command_id %>, "phonegap="+phonegap_details); - }); diff --git a/modules/phonegap/phonegap_file_upload/config.yaml b/modules/phonegap/phonegap_file_upload/config.yaml index 11bd626f9..65fc9a837 100644 --- a/modules/phonegap/phonegap_file_upload/config.yaml +++ b/modules/phonegap/phonegap_file_upload/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "Upload File" - description: "Upload files from device to a server of your choice." + description: "Upload files from device to a server of your choice. This module requires the PhoneGap API." authors: ["mh"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_geo_locate/config.yaml b/modules/phonegap/phonegap_geo_locate/config.yaml index b2eca179d..5b77e3652 100644 --- a/modules/phonegap/phonegap_geo_locate/config.yaml +++ b/modules/phonegap/phonegap_geo_locate/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "Geolocation" - description: "Geo locate your victim." + description: "Geo locate your victim. This module requires the PhoneGap API." authors: ["mh"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_globalization_status/config.yaml b/modules/phonegap/phonegap_globalization_status/config.yaml index 47924941d..600693fc8 100644 --- a/modules/phonegap/phonegap_globalization_status/config.yaml +++ b/modules/phonegap/phonegap_globalization_status/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "Globalization Status" - description: "Examine device local settings" + description: "Examine device local settings. This module requires the PhoneGap API." authors: ["staregate"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_keychain/config.yaml b/modules/phonegap/phonegap_keychain/config.yaml index 7ed9ff7bd..59662532c 100644 --- a/modules/phonegap/phonegap_keychain/config.yaml +++ b/modules/phonegap/phonegap_keychain/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "Keychain" - description: "Read/CreateUpdate/Delete Keychain Elements" + description: "Read/CreateUpdate/Delete Keychain Elements. This module requires the PhoneGap API." authors: ["staregate"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_list_contacts/config.yaml b/modules/phonegap/phonegap_list_contacts/config.yaml index 9718bffed..100f3b8d6 100644 --- a/modules/phonegap/phonegap_list_contacts/config.yaml +++ b/modules/phonegap/phonegap_list_contacts/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "List Contacts" - description: "Examine device contacts." + description: "Examine device contacts. This module requires the PhoneGap API." authors: ["staregate"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_list_files/config.yaml b/modules/phonegap/phonegap_list_files/config.yaml index e7bb6d023..b9194bde0 100644 --- a/modules/phonegap/phonegap_list_files/config.yaml +++ b/modules/phonegap/phonegap_list_files/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "List Files" - description: "Examine device file system." + description: "Examine device file system. This module requires the PhoneGap API." authors: ["mh"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_persist_resume/config.yaml b/modules/phonegap/phonegap_persist_resume/config.yaml index 36c59eeff..520b24275 100644 --- a/modules/phonegap/phonegap_persist_resume/config.yaml +++ b/modules/phonegap/phonegap_persist_resume/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "Persist resume" - description: "Persist over applications sleep/wake events" + description: "Persist over applications sleep/wake events. This module requires the PhoneGap API." authors: ["mh"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_persistence/config.yaml b/modules/phonegap/phonegap_persistence/config.yaml index dee173686..718868503 100644 --- a/modules/phonegap/phonegap_persistence/config.yaml +++ b/modules/phonegap/phonegap_persistence/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "Persistence" - description: "Insert the BeEF hook into PhoneGap's index.html (iPhone only)" + description: "Insert the BeEF hook into PhoneGap's index.html (iPhone only). This module requires the PhoneGap API." authors: ["mh"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_plugin_detection/config.yaml b/modules/phonegap/phonegap_plugin_detection/config.yaml index 4dd5dba62..b9694fbbc 100644 --- a/modules/phonegap/phonegap_plugin_detection/config.yaml +++ b/modules/phonegap/phonegap_plugin_detection/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "List Plugins" - description: "Attempts to guess installed plugins." + description: "Attempts to guess installed plugins. This module requires the PhoneGap API." authors: ["staregate"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_prompt_user/config.yaml b/modules/phonegap/phonegap_prompt_user/config.yaml index e7f97d827..8f8fa06bb 100644 --- a/modules/phonegap/phonegap_prompt_user/config.yaml +++ b/modules/phonegap/phonegap_prompt_user/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "Prompt User" - description: "Ask device user a question" + description: "Ask device user a question. This module requires the PhoneGap API." authors: ["staregate"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_start_record_audio/config.yaml b/modules/phonegap/phonegap_start_record_audio/config.yaml index 3dd6673c6..9b860e938 100644 --- a/modules/phonegap/phonegap_start_record_audio/config.yaml +++ b/modules/phonegap/phonegap_start_record_audio/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "Start Recording Audio" - description: "Start recording audio." + description: "Start recording audio. This module requires the PhoneGap API." authors: ["mh"] target: working: ["All"] diff --git a/modules/phonegap/phonegap_stop_record_audio/config.yaml b/modules/phonegap/phonegap_stop_record_audio/config.yaml index 63296f970..dc0443790 100644 --- a/modules/phonegap/phonegap_stop_record_audio/config.yaml +++ b/modules/phonegap/phonegap_stop_record_audio/config.yaml @@ -11,7 +11,7 @@ beef: enable: true category: "Phonegap" name: "Stop Recording Audio" - description: "Stop recording audio." + description: "Stop recording audio. This module requires the PhoneGap API." authors: ["mh"] target: working: ["All"]