Files
2025-12-26 19:18:05 +10:00

52 lines
1.2 KiB
Ruby

#
# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# Phonegap_keychain
#
class Phonegap_keychain < BeEF::Core::Command
def self.options
[{
'name' => 'servicename',
'description' => 'Service name',
'ui_label' => 'Service name',
'value' => 'ServiceNameTest',
'width' => '300px'
}, {
'name' => 'key',
'description' => 'Key',
'ui_label' => 'Key',
'value' => 'TestKey',
'width' => '300px'
}, {
'name' => 'value',
'description' => 'Value',
'ui_label' => 'Value',
'value' => 'TestValue',
'width' => '100px'
}, {
'name' => 'action',
'type' => 'combobox',
'ui_label' => 'Action Type',
'store_type' => 'arraystore',
'store_fields' => ['action'],
'store_data' => [['Read'], ['CreateUpdate'], ['Delete']],
'valueField' => 'action',
'value' => 'CreateUpdate',
editable: false,
'displayField' => 'action',
'mode' => 'local',
'autoWidth' => true
}]
end
def callback
content = {}
content['Result'] = @datastore['result']
save content
end
end