Renamed / tidied up some of the config. See Issue #82

This commit is contained in:
Christian Frichot
2012-02-18 10:06:47 +08:00
parent fd15c108a2
commit 791b34863e
28 changed files with 25 additions and 25 deletions

View File

@@ -24,6 +24,6 @@ beef:
target:
not_working:
ALL:
os: ["iPhone"]
os: ["iPhone", "Macintosh"]
working: ["O", "FF", "S", "IE"]
user_notify: ["C"]

View File

@@ -15,7 +15,7 @@
#
beef:
module:
fingerprint_network:
internal_network_fingerprinting:
enable: true
category: "Network"
name: "Fingerprint Network"

View File

@@ -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 [

View File

@@ -2,7 +2,7 @@
#
beef:
module:
Beep:
phonegap_beep:
enable: true
category: "Phonegap"
name: "Beep"

View File

@@ -1,7 +1,7 @@
# phonegap
#
class Beep < BeEF::Core::Command
class Phonegap_beep < BeEF::Core::Command
def post_execute
content = {}

View File

@@ -2,7 +2,7 @@
#
beef:
module:
Detect:
phonegap_detect:
enable: true
category: "Phonegap"
name: "Detect PhoneGap"

View File

@@ -1,7 +1,7 @@
# phonegap
#
class Detect < BeEF::Core::Command
class Phonegap_detect < BeEF::Core::Command
def post_execute
content = {}

View File

@@ -2,7 +2,7 @@
#
beef:
module:
File_upload:
phonegap_file_upload:
enable: true
category: "Phonegap"
name: "Upload File"

View File

@@ -1,7 +1,7 @@
# phonegap
#
class File_upload < BeEF::Core::Command
class Phonegap_file_upload < BeEF::Core::Command
def self.options
return [{

View File

@@ -2,7 +2,7 @@
#
beef:
module:
Geo_locate:
phonegap_geo_locate:
enable: true
category: "Phonegap"
name: "Geolocation"

View File

@@ -1,7 +1,7 @@
# phonegap
#
class Geo_locate < BeEF::Core::Command
class Phonegap_geo_locate < BeEF::Core::Command
def post_execute
content = {}

View File

@@ -2,7 +2,7 @@
#
beef:
module:
List_files:
phonegap_list_files:
enable: true
category: "Phonegap"
name: "List Files"

View File

@@ -1,7 +1,7 @@
# phonegap
#
class List_files < BeEF::Core::Command
class Phonegap_list_files < BeEF::Core::Command
def self.options
return [{

View File

@@ -2,7 +2,7 @@
#
beef:
module:
Persistence:
phonegap_persistence:
enable: true
category: "Phonegap"
name: "Persistence"

View File

@@ -1,7 +1,7 @@
# phonegap persistenece
#
class Persistence < BeEF::Core::Command
class Phonegap_persistence < BeEF::Core::Command
def self.options

View File

@@ -2,7 +2,7 @@
#
beef:
module:
Start_record_audio:
phonegap_start_record_audio:
enable: true
category: "Phonegap"
name: "Start Recording Audio"

View File

@@ -1,7 +1,7 @@
# phonegap
#
class Start_record_audio < BeEF::Core::Command
class Phonegap_start_record_audio < BeEF::Core::Command
def self.options
return [

View File

@@ -2,7 +2,7 @@
#
beef:
module:
Stop_record_audio:
phonegap_stop_record_audio:
enable: true
category: "Phonegap"
name: "Stop Recording Audio"

View File

@@ -0,0 +1,7 @@
# phonegap
#
class Phonegap_stop_record_audio < BeEF::Core::Command
end

View File

@@ -1,7 +0,0 @@
# phonegap
#
class Stop_record_audio < BeEF::Core::Command
end