Chromium Code Reviews| Index: chrome/browser/chrome_security_exploit_browsertest.cc |
| diff --git a/chrome/browser/chrome_security_exploit_browsertest.cc b/chrome/browser/chrome_security_exploit_browsertest.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..01fd45802d78e3c799fd90b174ab6bfd9cf46894 |
| --- /dev/null |
| +++ b/chrome/browser/chrome_security_exploit_browsertest.cc |
| @@ -0,0 +1,73 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "base/command_line.h" |
| +#include "base/stringprintf.h" |
| +#include "base/utf_string_conversions.h" |
| +#include "chrome/browser/ui/browser.h" |
| +#include "chrome/browser/ui/browser_commands.h" |
| +#include "chrome/browser/ui/singleton_tabs.h" |
| +#include "chrome/browser/ui/tabs/tab_strip_model.h" |
| +#include "chrome/test/base/in_process_browser_test.h" |
| +#include "chrome/test/base/ui_test_utils.h" |
| +#include "content/public/browser/notification_observer.h" |
| +#include "content/public/browser/notification_service.h" |
| +#include "content/public/browser/notification_types.h" |
| +#include "content/public/browser/resource_request_details.h" |
| +#include "content/public/browser/web_contents_observer.h" |
| +#include "content/public/common/content_switches.h" |
| +#include "content/public/test/browser_test_utils.h" |
| +#include "webkit/glue/glue_serialize.h" |
|
jochen (gone - plz use gerrit)
2013/04/02 15:14:25
not needed?
nasko
2013/04/02 18:25:16
Done.
|
| + |
| +namespace content { |
|
jochen (gone - plz use gerrit)
2013/04/02 15:14:25
no namespace content in chrome/
nasko
2013/04/02 18:25:16
Done.
|
| + |
| +// The goal of these tests is to "simulate" exploited renderer processes, which |
| +// can send arbitrary IPC messages and confuse browser process internal state, |
| +// leading to security bugs. We are trying to verify that the browser doesn't |
| +// perform any dangerous operations in such cases. |
| +// This is similar to the security_exploit_browsertest.cc tests, but also |
| +// includes chrome/ layer concepts such as extensions. |
| +class ChromeSecurityExploitBrowserTest : public InProcessBrowserTest { |
| + public: |
| + ChromeSecurityExploitBrowserTest() {} |
|
jochen (gone - plz use gerrit)
2013/04/02 15:14:25
nit. virtual destructor
nasko
2013/04/02 18:25:16
Done.
|
| + |
| + virtual void SetUpCommandLine(CommandLine* command_line) { |
| + ASSERT_TRUE(test_server()->Start()); |
| + net::TestServer https_server( |
| + net::TestServer::TYPE_HTTPS, |
| + net::TestServer::kLocalhost, |
| + base::FilePath(FILE_PATH_LITERAL("chrome/test/data"))); |
| + ASSERT_TRUE(https_server.Start()); |
| + |
| + // Add a host resolver rule to map all outgoing requests to the test server. |
| + // This allows us to use "real" hostnames in URLs, which we can use to |
| + // create arbitrary SiteInstances. |
| + command_line->AppendSwitchASCII( |
| + switches::kHostResolverRules, |
| + "MAP * " + test_server()->host_port_pair().ToString() + |
| + ",EXCLUDE localhost"); |
| + |
| + // Since we assume exploited renderer process, it can bypass the same origin |
| + // policy at will. Simulate that by passing the disable-web-security flag. |
| + command_line->AppendSwitch(switches::kDisableWebSecurity); |
| + } |
| +}; |
|
jochen (gone - plz use gerrit)
2013/04/02 15:14:25
nit. disallow copy/assign
nasko
2013/04/02 18:25:16
Done.
|
| + |
| +IN_PROC_BROWSER_TEST_F(ChromeSecurityExploitBrowserTest, |
| + ChromeExtensionResources) { |
| + // Load a page that requests a chrome-extension:// image through XHR. We |
| + // expect this load to fail, as it is an illegal request. |
| + GURL foo("http://foo.com/files/chrome_extension_resource.html"); |
| + |
| + content::DOMMessageQueue msg_queue; |
| + |
| + ui_test_utils::NavigateToURL(browser(), foo); |
| + |
| + std::string status; |
| + std::string expected_status("0"); |
| + EXPECT_TRUE(msg_queue.WaitForMessage(&status)); |
| + EXPECT_STREQ(status.c_str(), expected_status.c_str()); |
| +} |
| + |
| +} |