diff --git a/modules/debug/test_cors_request/config.yaml b/modules/debug/test_cors_request/config.yaml index 19e45a183..767060493 100644 --- a/modules/debug/test_cors_request/config.yaml +++ b/modules/debug/test_cors_request/config.yaml @@ -13,3 +13,16 @@ beef: authors: ["bcoles"] target: working: ["ALL"] + not_working: + IE: + min_ver: 6 + max_ver: 7 + O: + min_ver: 1 + max_ver: 11 + C: + min_ver: 1 + max_ver: 2 + S: + min_ver: 1 + max_ver: 3 diff --git a/modules/debug/test_cors_request/module.rb b/modules/debug/test_cors_request/module.rb index 7ab7f3db9..98bb97973 100644 --- a/modules/debug/test_cors_request/module.rb +++ b/modules/debug/test_cors_request/module.rb @@ -14,7 +14,7 @@ class Test_cors_request < BeEF::Core::Command def self.options return [ - {'name' => 'method', 'ui_label' =>'Method', 'type' => 'text', 'width' => '400px', 'value' => 'POST' }, + {'name' => 'method', 'ui_label' =>'Method', 'type' => 'text', 'width' => '400px', 'value' => 'GET' }, {'name' => 'url', 'ui_label' =>'URL', 'type' => 'text', 'width' => '400px', 'value' => 'http://graph.facebook.com/fql?q=SELECT%20url,total_count%20FROM%20link_stat%20WHERE%20url=%27http://beefproject.com/%27' }, {'name' => 'data', 'ui_label' =>'Data', 'type' => 'text', 'width' => '400px', 'value' => 'postdata' }, ]