17 lines
729 B
Ruby
17 lines
729 B
Ruby
#
|
|
# Copyright (c) 2015 Daniel Reece - @HBRN8
|
|
|
|
class Wordpress_add_admin < BeEF::Core::Command
|
|
def self.options
|
|
[{ 'name' => 'user', 'ui_label' => 'Username:', 'value' => 'beef' },
|
|
{ 'name' => 'pass', 'ui_label' => 'Pwd:', 'value' => [*('a'..'z'), *('0'..'9')].sample(8).join },
|
|
{ 'name' => 'email', 'ui_label' => 'Email:', 'value' => '' },
|
|
{ 'name' => 'domail', 'type' => 'checkbox', 'ui_label' => 'Success mail?:', 'checked' => 'true' },
|
|
{ 'name' => 'url', 'ui_label' => 'Website:', 'value' => 'beefproject.com' },
|
|
{ 'name' => 'fname', 'ui_label' => 'FirstName:', 'value' => 'beef' },
|
|
{ 'name' => 'lname', 'ui_label' => 'LastName:', 'value' => 'project' }]
|
|
end
|
|
|
|
def post_execute; end
|
|
end
|