Renamed / tidied up some of the config. See Issue #82
This commit is contained in:
@@ -24,6 +24,6 @@ beef:
|
||||
target:
|
||||
not_working:
|
||||
ALL:
|
||||
os: ["iPhone"]
|
||||
os: ["iPhone", "Macintosh"]
|
||||
working: ["O", "FF", "S", "IE"]
|
||||
user_notify: ["C"]
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
fingerprint_network:
|
||||
internal_network_fingerprinting:
|
||||
enable: true
|
||||
category: "Network"
|
||||
name: "Fingerprint Network"
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
# - Local IP theft with Java is slow and may fail
|
||||
|
||||
|
||||
class Fingerprint_network < BeEF::Core::Command
|
||||
class Internal_network_fingerprinting < BeEF::Core::Command
|
||||
|
||||
def self.options
|
||||
return [
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
Beep:
|
||||
phonegap_beep:
|
||||
enable: true
|
||||
category: "Phonegap"
|
||||
name: "Beep"
|
||||
@@ -1,7 +1,7 @@
|
||||
# phonegap
|
||||
#
|
||||
|
||||
class Beep < BeEF::Core::Command
|
||||
class Phonegap_beep < BeEF::Core::Command
|
||||
|
||||
def post_execute
|
||||
content = {}
|
||||
@@ -2,7 +2,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
Detect:
|
||||
phonegap_detect:
|
||||
enable: true
|
||||
category: "Phonegap"
|
||||
name: "Detect PhoneGap"
|
||||
@@ -1,7 +1,7 @@
|
||||
# phonegap
|
||||
#
|
||||
|
||||
class Detect < BeEF::Core::Command
|
||||
class Phonegap_detect < BeEF::Core::Command
|
||||
|
||||
def post_execute
|
||||
content = {}
|
||||
@@ -2,7 +2,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
File_upload:
|
||||
phonegap_file_upload:
|
||||
enable: true
|
||||
category: "Phonegap"
|
||||
name: "Upload File"
|
||||
@@ -1,7 +1,7 @@
|
||||
# phonegap
|
||||
#
|
||||
|
||||
class File_upload < BeEF::Core::Command
|
||||
class Phonegap_file_upload < BeEF::Core::Command
|
||||
|
||||
def self.options
|
||||
return [{
|
||||
@@ -2,7 +2,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
Geo_locate:
|
||||
phonegap_geo_locate:
|
||||
enable: true
|
||||
category: "Phonegap"
|
||||
name: "Geolocation"
|
||||
@@ -1,7 +1,7 @@
|
||||
# phonegap
|
||||
#
|
||||
|
||||
class Geo_locate < BeEF::Core::Command
|
||||
class Phonegap_geo_locate < BeEF::Core::Command
|
||||
|
||||
def post_execute
|
||||
content = {}
|
||||
@@ -2,7 +2,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
List_files:
|
||||
phonegap_list_files:
|
||||
enable: true
|
||||
category: "Phonegap"
|
||||
name: "List Files"
|
||||
@@ -1,7 +1,7 @@
|
||||
# phonegap
|
||||
#
|
||||
|
||||
class List_files < BeEF::Core::Command
|
||||
class Phonegap_list_files < BeEF::Core::Command
|
||||
|
||||
def self.options
|
||||
return [{
|
||||
@@ -2,7 +2,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
Persistence:
|
||||
phonegap_persistence:
|
||||
enable: true
|
||||
category: "Phonegap"
|
||||
name: "Persistence"
|
||||
@@ -1,7 +1,7 @@
|
||||
# phonegap persistenece
|
||||
#
|
||||
|
||||
class Persistence < BeEF::Core::Command
|
||||
class Phonegap_persistence < BeEF::Core::Command
|
||||
|
||||
def self.options
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
Start_record_audio:
|
||||
phonegap_start_record_audio:
|
||||
enable: true
|
||||
category: "Phonegap"
|
||||
name: "Start Recording Audio"
|
||||
@@ -1,7 +1,7 @@
|
||||
# phonegap
|
||||
#
|
||||
|
||||
class Start_record_audio < BeEF::Core::Command
|
||||
class Phonegap_start_record_audio < BeEF::Core::Command
|
||||
|
||||
def self.options
|
||||
return [
|
||||
@@ -2,7 +2,7 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
Stop_record_audio:
|
||||
phonegap_stop_record_audio:
|
||||
enable: true
|
||||
category: "Phonegap"
|
||||
name: "Stop Recording Audio"
|
||||
7
modules/phonegap/phonegap_stop_record_audio/module.rb
Normal file
7
modules/phonegap/phonegap_stop_record_audio/module.rb
Normal file
@@ -0,0 +1,7 @@
|
||||
# phonegap
|
||||
#
|
||||
|
||||
class Phonegap_stop_record_audio < BeEF::Core::Command
|
||||
|
||||
|
||||
end
|
||||
@@ -1,7 +0,0 @@
|
||||
# phonegap
|
||||
#
|
||||
|
||||
class Stop_record_audio < BeEF::Core::Command
|
||||
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user