diff --git a/modules/chrome_extensions/get_all_cookies/config.yaml b/modules/chrome_extensions/get_all_cookies/config.yaml
index afb1db64e..04cc73ebd 100755
--- a/modules/chrome_extensions/get_all_cookies/config.yaml
+++ b/modules/chrome_extensions/get_all_cookies/config.yaml
@@ -19,7 +19,7 @@ beef:
enable: true
category: "Chrome Extensions"
name: "Get All Cookies"
- description: "Steal cookies even HTTPonly ones (providing the hooked extension has cookies access)
If a URL to steal cookies from is not specified then will steal _all_ cookies (this can be a lot!)"
+ description: "Steal cookies, even HttpOnly cookies, providing the hooked extension has cookies access.
If a URL is not specified then all cookies are returned (this can be a lot!)"
authors: ["mh"]
target:
working: ["C"]
diff --git a/modules/chrome_extensions/get_all_cookies/module.rb b/modules/chrome_extensions/get_all_cookies/module.rb
index 1b1a7ca8e..362e62d4f 100755
--- a/modules/chrome_extensions/get_all_cookies/module.rb
+++ b/modules/chrome_extensions/get_all_cookies/module.rb
@@ -18,7 +18,7 @@ class Get_all_cookies < BeEF::Core::Command
def self.options
return [
- {'name' =>'url', 'ui_label'=>'Domain to steal cookies from e.g. http://facebook.com', 'value' => 'default_all'}
+ {'name' =>'url', 'ui_label'=>'Domain (e.g. http://facebook.com)', 'value' => 'default_all'}
]
end